:root {
  --paper: #f5f1ea;
  --paper-rgb: 245, 241, 234;
  --paper-deep: #e6dccd;
  --limewash: #d8cec0;
  --stone: #c8b89f;
  --ink: #17130e;
  --muted: #6f6557;
  --olive: #67705a;
  --blue: #49647a;
  --sun: #c94f2c;
  --line: rgba(23, 19, 14, 0.16);
  --shadow: 0 20px 45px rgba(23, 19, 14, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.23) 0 1px, transparent 2px),
    radial-gradient(circle at 77% 63%, rgba(75, 58, 43, 0.10) 0 1px, transparent 2px),
    linear-gradient(115deg, rgba(255, 255, 255, 0.24), transparent 34%, rgba(78, 60, 42, 0.08)),
    var(--limewash);
  background-attachment: fixed;
  background-size: 42px 42px, 58px 58px, 100% 100%;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(var(--paper-rgb), 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 22px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.site-header-solid {
  background: rgba(var(--paper-rgb), 0.88);
  color: var(--ink);
  position: sticky;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: 0;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a,
.nav-parent {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.nav-group:hover .nav-parent {
  border-color: currentColor;
}

.nav-group {
  align-items: baseline;
  display: flex;
  gap: 10px;
}

.nav-sub {
  display: flex;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.78;
}

.nav-sub a::before {
  content: "/";
  margin-right: 10px;
  opacity: 0.55;
}

.home-link {
  display: none;
}

.hero {
  min-height: 88svh;
  overflow: hidden;
  position: relative;
}

.hero::after {
  background: rgba(0, 0, 0, 0.32);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero picture,
.hero img {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  color: #fffaf1;
  max-width: 760px;
  padding: 30svh clamp(20px, 7vw, 96px) 16svh;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--sun);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd38c;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(62px, 11vw, 148px);
}

h2 {
  font-size: clamp(38px, 6vw, 76px);
}

.hero-copy p:not(.eyebrow) {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.08;
  margin: 10px 0 0;
}

.hero-actions,
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button,
.filter-button {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
}

.button-primary {
  background: #fffaf1;
  color: var(--ink);
}

.button-secondary {
  color: #fffaf1;
}

.section {
  padding: clamp(66px, 9vw, 130px) clamp(20px, 5vw, 76px);
}

.surface-section {
  background: rgba(var(--paper-rgb), 0.42);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(130px, 0.35fr) minmax(260px, 0.65fr);
  margin-bottom: 46px;
}

.art-grid,
.museum-grid {
  display: grid;
  gap: clamp(22px, 3vw, 42px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-series-heading {
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  margin-top: clamp(18px, 4vw, 54px);
  padding-top: clamp(20px, 3vw, 34px);
}

.work-series-heading:first-child {
  margin-top: 0;
}

.work-series-heading h3 {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0;
  max-width: 980px;
}

.art-grid-featured {
  align-items: end;
}

.art-card a,
.work-open {
  display: grid;
  gap: 14px;
}

.art-card img,
.work-open img {
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
  border-radius: 2px;
  box-shadow: var(--shadow);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.painting-grid {
  align-items: start;
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.painting-card {
  display: grid;
  gap: 15px;
}

.painting-card img {
  aspect-ratio: 4 / 5;
  background: rgba(var(--paper-rgb), 0.58);
  box-shadow: var(--shadow);
  object-fit: contain;
  width: 100%;
}

.painting-card-wide {
  grid-column: span 2;
}

.painting-card-wide img {
  aspect-ratio: 5 / 4;
}

.painting-card h3 {
  font-size: clamp(30px, 3.2vw, 48px);
}

.work-caption-quiet {
  min-height: 22px;
}

.work-caption-quiet .eyebrow {
  margin: 0;
}

.painting-card p {
  color: var(--muted);
  margin: 8px 0 0;
}

.art-card-wide img {
  aspect-ratio: 3 / 4;
}

.art-card strong,
.work-open strong,
.work-placeholder strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.1;
}

.art-card small,
.work-open small,
.work-placeholder small {
  color: var(--muted);
  display: block;
  font-size: 14px;
  margin-top: 4px;
}

.split-section,
.contact-section {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(260px, 0.48fr) minmax(280px, 0.52fr);
}

.studio-image-section {
  align-items: end;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(260px, 0.42fr) minmax(320px, 0.58fr);
}

.studio-image-section img {
  aspect-ratio: 4 / 3;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.studio-image-copy {
  max-width: 540px;
}

.copy-block,
.discipline-section p,
.page-intro p,
.bio-band p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  max-width: 760px;
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--blue);
  display: inline-flex;
  font-weight: 700;
  margin-top: 20px;
}

.bio-band {
  background: rgba(238, 230, 217, 0.64);
}

.bio-band h2 span {
  color: var(--olive);
  font-size: 0.55em;
}

details {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  max-width: 760px;
  padding-top: 18px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.contact-section address {
  display: grid;
  font-style: normal;
  gap: 14px;
  font-size: clamp(22px, 3vw, 34px);
}

.contact-section a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 76px);
}

.footer-signature {
  color: var(--ink);
  display: block;
  width: min(250px, 58vw);
}

.footer-signature img {
  height: auto;
  width: 100%;
}

.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a {
  border-bottom: 1px solid transparent;
  color: var(--muted);
}

.footer-links a:hover {
  border-color: currentColor;
  color: var(--ink);
}

.page-main {
  padding-top: 0;
}

.page-intro {
  padding: clamp(70px, 10vw, 135px) clamp(20px, 5vw, 76px) clamp(46px, 7vw, 88px);
}

.page-intro h1 {
  max-width: 1000px;
}

.section-nav {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  max-width: 760px;
  padding-top: 18px;
}

.section-nav a {
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  min-height: 42px;
  padding: 9px 16px;
}

.section-nav a:hover {
  background: var(--ink);
  color: #fffaf1;
}

.works-section {
  padding-top: 0;
}

.works-toolbar {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 38px;
}

.works-toolbar h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.filter-button {
  background: transparent;
  color: var(--ink);
}

.filter-button.is-active {
  background: var(--ink);
  color: #fffaf1;
}

.work-open {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
  width: 100%;
}

.work-item.is-hidden {
  display: none;
}

.work-item[data-kind="escultura"] .work-open img {
  aspect-ratio: 4 / 5;
  background: rgba(28, 24, 19, 0.92);
  object-fit: contain;
  padding: clamp(12px, 2vw, 22px);
}

.work-placeholder {
  align-items: end;
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex;
  padding: 24px;
}

.work-placeholder a {
  display: block;
}

.bridge-grid {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bridge-entry {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.bridge-entry a {
  display: grid;
  gap: 22px;
}

.bridge-entry img {
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.bridge-entry h2 {
  font-size: clamp(44px, 7vw, 90px);
}

.bridge-entry p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  margin: 0;
  max-width: 620px;
}

.quiet-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  max-width: 760px;
  padding: 22px 0 0;
}

.quiet-list span,
.quiet-list a {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding-bottom: 10px;
}

.review-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.review-item {
  display: grid;
  gap: 14px;
}

.review-item img {
  aspect-ratio: 4 / 5;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
  object-fit: contain;
  width: 100%;
}

.review-item strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.1;
}

.review-item small {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 4px;
}

.discipline-section {
  border-top: 1px solid var(--line);
  padding-top: clamp(56px, 8vw, 96px);
}

.sculpture-intro {
  background: rgba(238, 230, 217, 0.64);
}

.curated-section {
  padding-top: clamp(54px, 8vw, 104px);
}

.curated-grid {
  align-items: start;
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sculpture-card {
  display: grid;
  gap: 16px;
}

.sculpture-card-lead {
  grid-column: span 2;
}

.sculpture-zoom {
  aspect-ratio: 4 / 5;
  background: rgba(28, 24, 19, 0.92);
  border: 0;
  border-radius: 2px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  display: grid;
  overflow: hidden;
  padding: clamp(16px, 2.4vw, 30px);
  position: relative;
  width: 100%;
}

.sculpture-zoom::after {
  align-items: center;
  background: rgba(245, 241, 234, 0.92);
  border-radius: 999px;
  bottom: 14px;
  color: var(--ink);
  content: "+";
  display: flex;
  font-size: 24px;
  font-weight: 600;
  height: 38px;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  position: absolute;
  right: 14px;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
  width: 38px;
}

.sculpture-zoom:hover::after,
.sculpture-zoom:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.sculpture-zoom:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.sculpture-card img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.sculpture-card > img {
  aspect-ratio: 4 / 5;
  background: rgba(28, 24, 19, 0.92);
  box-shadow: var(--shadow);
  padding: clamp(16px, 2.4vw, 30px);
}

.sculpture-card h3 {
  font-size: clamp(30px, 3.2vw, 48px);
}

.sculpture-card p {
  color: var(--muted);
  margin: 10px 0 0;
}

.sculpture-card dl {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-top: 12px;
}

.sculpture-card dl div {
  display: grid;
  gap: 10px;
  grid-template-columns: 92px 1fr;
}

.sculpture-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.sculpture-card dd {
  margin: 0;
}

.candidate-section {
  background: rgba(233, 221, 202, 0.68);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(260px, 0.48fr) minmax(280px, 0.52fr);
}

.work-modal {
  background: var(--paper);
  border: 0;
  box-shadow: var(--shadow);
  color: var(--ink);
  gap: clamp(22px, 4vw, 54px);
  grid-template-columns: minmax(260px, 0.54fr) minmax(250px, 0.46fr);
  max-width: min(1080px, calc(100vw - 32px));
  padding: clamp(18px, 4vw, 42px);
}

.work-modal[open] {
  display: grid;
}

.work-modal::backdrop {
  background: rgba(20, 16, 12, 0.58);
}

.work-modal img {
  background: rgba(28, 24, 19, 0.94);
  max-height: 78vh;
  object-fit: contain;
  padding: clamp(12px, 2vw, 24px);
  width: 100%;
}

.image-lightbox {
  background: rgba(17, 13, 10, 0.98);
  border: 0;
  color: #fffaf1;
  height: min(92vh, 980px);
  max-width: min(94vw, 1280px);
  padding: clamp(14px, 2vw, 26px);
  width: min(94vw, 1280px);
}

.image-lightbox[open] {
  display: grid;
  gap: 16px;
  grid-template-rows: minmax(0, 1fr) auto;
}

.image-lightbox::backdrop {
  background: rgba(12, 10, 8, 0.76);
}

.image-lightbox img {
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  object-fit: contain;
}

.lightbox-caption {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.lightbox-caption strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.lightbox-caption span {
  color: rgba(255, 250, 241, 0.72);
  font-size: 13px;
}

.lightbox-close {
  align-items: center;
  background: #fffaf1;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 28px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.work-modal h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.work-modal dl {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin: 24px 0;
}

.work-modal dl div {
  display: grid;
  gap: 12px;
  grid-template-columns: 120px 1fr;
  padding: 10px 0;
}

.work-modal dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.work-modal dd {
  margin: 0;
}

.modal-close {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  color: #fffaf1;
  cursor: pointer;
  display: inline-flex;
  font-size: 28px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
    position: absolute;
  }

  .site-header-solid {
    position: relative;
  }

  .main-nav {
    justify-content: flex-end;
    max-width: 410px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-copy {
    padding-top: 34svh;
  }

  .section-heading,
  .split-section,
  .studio-image-section,
  .contact-section,
  .bridge-grid,
  .work-modal[open] {
    grid-template-columns: 1fr;
  }

  .art-grid,
  .museum-grid,
  .painting-grid,
  .curated-grid {
    grid-template-columns: 1fr;
  }

  .painting-card-wide {
    grid-column: span 1;
  }

  .painting-card-wide img {
    aspect-ratio: 4 / 5;
  }

  .sculpture-card-lead {
    grid-column: span 1;
  }

  .candidate-section {
    grid-template-columns: 1fr;
  }

  .works-toolbar,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-modal img {
    max-height: 54vh;
  }

  .image-lightbox {
    height: 88vh;
  }

  .lightbox-caption {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    color: var(--ink);
    flex-direction: column;
  }

  .site-header-solid {
    color: var(--ink);
  }

  .main-nav {
    font-size: 13px;
    gap: 10px;
    justify-content: flex-start;
  }

  .nav-group {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .nav-sub {
    gap: 8px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 30px;
  }

  .button,
  .filter-button {
    min-height: 42px;
    padding: 10px 14px;
  }
}


/* Brand logo, language switcher and bio portrait additions */
.brand {
  align-items: center;
  display: inline-flex;
  line-height: 0;
  max-width: min(220px, 42vw);
}

.brand img {
  display: block;
  filter: invert(1) sepia(0.18) saturate(0.7) brightness(0.42);
  height: auto;
  width: clamp(132px, 18vw, 210px);
}

.site-header .main-nav {
  align-items: center;
}

.language-switcher {
  align-items: center;
  border-left: 1px solid var(--line);
  display: inline-flex;
  gap: 8px;
  margin-left: 4px;
  padding-left: 16px;
}

.language-switcher a {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding-bottom: 4px;
}

.language-switcher a[aria-current="true"] {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.bio-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(220px, 0.36fr) minmax(280px, 0.64fr);
}

.bio-portrait {
  margin: 0;
}

.bio-portrait img {
  box-shadow: var(--shadow);
  display: block;
  filter: grayscale(1);
  height: auto;
  max-width: 420px;
  object-fit: cover;
  width: 100%;
}

.bio-text h1,
.bio-text p,
.bio-text details {
  max-width: 780px;
}

.footer-signature img {
  filter: invert(1) sepia(0.18) saturate(0.7) brightness(0.42);
}

@media (max-width: 860px) {
  .bio-layout {
    grid-template-columns: 1fr;
  }

  .bio-portrait img {
    max-width: 320px;
  }

  .language-switcher {
    border-left: 0;
    margin-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 154px;
  }
}


/* Final consistency pass: logo, language switcher, bio portrait, legal footer and cookies */
.brand {
  align-items: center;
  display: inline-flex;
  line-height: 0;
  max-width: min(240px, 42vw);
}
.brand img {
  filter: none !important;
  height: auto;
  width: clamp(148px, 18vw, 230px);
}
.site-header {
  min-height: 92px;
}
.main-nav {
  gap: clamp(16px, 2vw, 30px);
}
.language-switcher {
  align-items: center;
  border-left: 1px solid var(--line);
  display: inline-flex;
  gap: 10px;
  margin-left: 8px;
  padding-left: 18px;
  white-space: nowrap;
}
.lang-globe {
  font-size: 15px;
  line-height: 1;
  margin-right: 2px;
}
.language-switcher a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  min-width: 36px;
  padding: 4px 8px;
  text-align: center;
}
.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  border-color: currentColor;
  color: var(--ink);
}
.bio-layout {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(280px, 0.58fr) minmax(240px, 0.42fr);
}
.bio-portrait {
  justify-self: end;
  margin: 0;
  width: min(420px, 100%);
}
.bio-portrait img {
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
  display: block;
  filter: grayscale(1);
  height: auto;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}
.footer-signature {
  width: min(220px, 48vw);
}
.footer-signature img {
  filter: none !important;
  width: 100%;
}
.footer-links {
  gap: 12px 18px;
}
.legal-page h2 {
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
  margin-top: 28px;
}
.legal-page p {
  max-width: 760px;
}
.cookie-banner {
  align-items: center;
  background: rgba(23, 19, 14, 0.94);
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 12px;
  bottom: 18px;
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  color: #fffaf1;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 18px;
  max-width: 760px;
  padding: 16px 18px;
  position: fixed;
  right: 18px;
  z-index: 30;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p {
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}
.cookie-actions {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}
.cookie-actions a {
  border-bottom: 1px solid currentColor;
  color: #fffaf1;
  font-size: 13px;
}
.cookie-actions button {
  background: #fffaf1;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
}
@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .main-nav {
    align-items: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 860px) {
  .bio-layout {
    grid-template-columns: 1fr;
  }
  .bio-portrait {
    justify-self: start;
    max-width: 330px;
  }
  .language-switcher {
    border-left: 0;
    margin-left: 0;
    padding-left: 0;
  }
}
@media (max-width: 560px) {
  .brand img { width: 156px; }
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }
}


/* Final home simplification */
.hero-minimal {
  min-height: calc(100vh - 96px);
}
.home-access {
  padding-top: clamp(54px, 8vw, 96px);
  padding-bottom: clamp(54px, 8vw, 96px);
}
.compact-heading {
  max-width: 860px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(23,19,14,.18);
  border-bottom: 1px solid rgba(23,19,14,.18);
}
.access-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 170px;
  padding: clamp(24px, 3.5vw, 42px);
  border-right: 1px solid rgba(23,19,14,.18);
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,.08);
  transition: background .2s ease, transform .2s ease;
}
.access-card:last-child { border-right: 0; }
.access-card span {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: .95;
}
.access-card small {
  max-width: 280px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.45;
}
.access-card:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-2px);
}
@media (max-width: 780px) {
  .access-grid { grid-template-columns: 1fr; }
  .access-card { border-right: 0; border-bottom: 1px solid rgba(23,19,14,.18); min-height: 130px; }
  .access-card:last-child { border-bottom: 0; }
}
