/* ╭──────────────────────────────────────────────────────────────╮
   │  Agnes de Bohemia — microsite                                │
   │  Editorial minimalism. Type-led. Glass-roof feeling.         │
   ╰──────────────────────────────────────────────────────────────╯ */

:root {
  --bg:        #f4f1ec;   /* warm cream */
  --bg-deep:   #ece7df;   /* slightly deeper */
  --ink:       #14181c;   /* near-black */
  --ink-soft:  #4a4f55;
  --mute:      #8a847b;
  --line:      #d8d2c7;
  --accent:    #6f8a96;   /* muted river teal */
  --accent-2:  #b89167;   /* champagne */
  --white:     #ffffff;
  --shadow:    0 30px 80px -30px rgba(20,24,28,.35);

  --serif:     "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:      "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --maxw:      1440px;
  --gutter:    clamp(20px, 5vw, 80px);
  --section-y: clamp(80px, 14vh, 180px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }

::selection { background: var(--ink); color: var(--bg); }

/* ─────────── scroll progress ─────────── */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 200; background: transparent; pointer-events: none;
}
.progress span {
  display: block; height: 100%; width: 0%;
  background: var(--ink);
  transition: width .12s linear;
}

/* ─────────── header ─────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px var(--gutter);
  color: var(--white);
  transition: background .35s ease, color .35s ease, padding .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  background: rgba(244,241,236,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(20,24,28,.06);
}
.brand {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .01em;
}
.brand-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  border: 1px solid currentColor;
  width: 36px; height: 36px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  position: relative; top: 2px;
}
.brand-name {
  font-size: 17px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.brand-name em { font-style: italic; text-transform: lowercase; font-weight: 300; letter-spacing: 0; padding: 0 2px; }

.nav {
  display: flex; justify-content: center; gap: 38px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500;
}
.nav a {
  position: relative; padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: currentColor;
  transition: right .35s cubic-bezier(.2,.7,.2,1);
}
.nav a:hover::after { right: 0; }

.header-right {
  display: flex; align-items: center; gap: 22px;
}
.lang {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: .14em; font-weight: 500;
}
.lang button { opacity: .55; transition: opacity .25s; }
.lang button:hover { opacity: 1; }
.lang button.is-active { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.lang span { opacity: .5; }

.cta-pill {
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500;
  transition: background .3s, color .3s;
}
.cta-pill:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.site-header.is-scrolled .cta-pill:hover { background: var(--ink); color: var(--bg); }

.burger {
  display: none;
  width: 32px; height: 28px;
  position: relative;
}
.burger span {
  position: absolute; left: 0; right: 0; height: 1px; background: currentColor;
  transition: transform .3s, top .3s, opacity .3s;
}
.burger span:nth-child(1) { top: 8px; }
.burger span:nth-child(2) { top: 14px; }
.burger span:nth-child(3) { top: 20px; }
.is-menu-open .burger span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.is-menu-open .burger span:nth-child(2) { opacity: 0; }
.is-menu-open .burger span:nth-child(3) { top: 14px; transform: rotate(-45deg); }

/* ─────────── hero ─────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  padding: 0 var(--gutter) clamp(60px, 8vh, 110px);
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: heroIn 2.4s cubic-bezier(.2,.7,.2,1) forwards;
  filter: brightness(.82) contrast(1.05);
}
@keyframes heroIn { to { transform: scale(1); } }
.hero-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.05) 35%, rgba(0,0,0,.0) 55%, rgba(0,0,0,.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px;
}
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 22px;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp 1s .4s forwards;
}
.eyebrow .line { width: 38px; height: 1px; background: currentColor; opacity: .7; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 13vw, 220px);
  line-height: .92;
  letter-spacing: -.02em;
  margin: 0 0 28px;
  font-variation-settings: "opsz" 144;
}
.hero-title .word {
  display: inline-block;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1.1s forwards;
}
.hero-title .word:nth-child(1) { animation-delay: .55s; }
.hero-title .word:nth-child(2) { animation-delay: .7s;  font-style: italic; font-weight: 400; }
.hero-title .word:nth-child(3) { animation-delay: .85s; }
.hero-title .word-it em { font-style: italic; font-weight: 400; }

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.4;
  margin: 0 0 36px;
  max-width: 38ch;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp 1.1s 1s forwards;
}

.hero-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 22px;
  opacity: 0; transform: translateY(10px);
  animation: fadeUp 1.1s 1.15s forwards;
}
.meta-item {
  display: inline-flex; flex-direction: column;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 500;
}
.meta-item strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
  margin-bottom: 4px;
}
.meta-divider {
  width: 1px; height: 36px; background: currentColor; opacity: .35;
}

.scroll-cue {
  position: absolute; bottom: clamp(30px, 5vh, 50px); right: var(--gutter);
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500; color: var(--white); z-index: 2;
  opacity: 0;
  animation: fadeUp 1s 1.5s forwards;
}
.scroll-line {
  width: 48px; height: 1px; background: currentColor;
  position: relative; overflow: hidden;
}
.scroll-line::before {
  content: ""; position: absolute; left: -50%; top: 0; width: 50%; height: 100%;
  background: var(--bg);
  animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue {
  0%   { left: -50%; }
  60%  { left: 100%; }
  100% { left: 100%; }
}

/* ─────────── about ─────────── */
.about {
  padding: var(--section-y) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mute);
  margin: 0 0 22px;
}
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 0;
  font-variation-settings: "opsz" 64;
}
.about-right p {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 1.4em;
  max-width: 56ch;
}
.about-right p:last-child { margin-bottom: 0; }

.facts {
  list-style: none; margin: clamp(60px, 10vw, 120px) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.facts li {
  padding: 30px 0 0;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--line);
  padding-right: 24px;
}
.facts li:last-child { border-right: 0; }
.fact-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  margin-bottom: 14px;
}
.fact-label {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute);
}

/* ─────────── marquee ─────────── */
.marquee {
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: clamp(60px, 8vw, 120px) 0 0;
  background: var(--bg-deep);
}
.marquee-track {
  display: flex; align-items: center; gap: 36px;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 6vw, 88px);
  color: var(--ink);
  animation: scroll 50s linear infinite;
  will-change: transform;
}
.marquee-track span:nth-child(even) { font-style: normal; opacity: .25; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────── big image ─────────── */
.big-image {
  padding: clamp(60px, 10vw, 140px) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.big-image figure {
  margin: 0; position: relative;
  overflow: hidden;
}
.big-image img {
  width: 100%; height: clamp(360px, 70vh, 760px); object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.8s cubic-bezier(.2,.7,.2,1);
}
.big-image:hover img { transform: scale(1); }
.big-image figcaption {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--mute);
  text-align: right;
}

/* ─────────── gallery ─────────── */
.gallery {
  padding: var(--section-y) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head {
  display: grid; grid-template-columns: 1fr 2fr;
  align-items: end; gap: clamp(20px, 4vw, 60px);
  margin-bottom: clamp(40px, 6vw, 80px);
}
.masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
}
.m-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-deep);
  opacity: 0; transform: translateY(20px);
}
.m-item.is-in { animation: fadeUp .9s forwards; }
.m-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .5s;
}
.m-item:hover img { transform: scale(1.05); filter: brightness(1.05); }

/* span patterns — pseudo-masonry built from grid cells */
.m-item.size-a { grid-column: span 7; aspect-ratio: 4/3; }
.m-item.size-b { grid-column: span 5; aspect-ratio: 4/5; }
.m-item.size-c { grid-column: span 4; aspect-ratio: 3/4; }
.m-item.size-d { grid-column: span 8; aspect-ratio: 16/9; }
.m-item.size-e { grid-column: span 6; aspect-ratio: 5/4; }
.m-item.size-f { grid-column: span 6; aspect-ratio: 4/3; }
.m-item.size-g { grid-column: span 5; aspect-ratio: 3/4; }
.m-item.size-h { grid-column: span 7; aspect-ratio: 16/10; }

/* ─────────── services ─────────── */
.services {
  padding: var(--section-y) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.services .display { max-width: 18ch; margin-bottom: clamp(50px, 7vw, 90px); }
.service-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-list li {
  padding: 36px 24px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
  border-right: 1px solid var(--line);
  font-size: 13px; letter-spacing: .04em;
  color: var(--ink);
  min-height: 200px;
  justify-content: space-between;
}
.service-list li:last-child { border-right: 0; }
.service-list svg {
  width: 28px; height: 28px;
  color: var(--accent);
}

/* ─────────── experiences ─────────── */
.experiences {
  padding: var(--section-y) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.exp-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bg-deep);
  overflow: hidden;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.exp-card:hover { transform: translateY(-6px); }
.exp-img { aspect-ratio: 4/3; overflow: hidden; }
.exp-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.exp-card:hover .exp-img img { transform: scale(1.06); }
.exp-body { padding: 32px 30px 36px; }
.exp-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 16px;
}
.exp-body p {
  font-size: 15px; color: var(--ink-soft); line-height: 1.65; margin: 0 0 20px;
}
.exp-tag {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mute);
}

/* ─────────── sisters ─────────── */
.sisters {
  padding: var(--section-y) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.sisters .display { max-width: 18ch; margin-bottom: clamp(40px, 6vw, 60px); }
.sister-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.sister-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  transition: background .4s, color .4s, padding .4s;
}
.sister-card:last-child { border-right: 0; }
.sister-card:not(.sister-current):hover {
  background: var(--ink); color: var(--bg);
  padding-left: 32px;
}
.sister-arrow { font-size: 22px; transition: transform .4s; }
.sister-card:hover .sister-arrow { transform: translate(4px, -4px); }
.sister-current { color: var(--mute); cursor: default; font-style: italic; }
.sister-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2);
}

/* ─────────── contact ─────────── */
.contact {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(100px, 14vh, 180px) var(--gutter);
  margin-top: clamp(60px, 10vw, 120px);
}
.contact-inner {
  max-width: var(--maxw); margin: 0 auto;
}
.contact .section-eyebrow { color: rgba(255,255,255,.55); }
.contact-title {
  max-width: 18ch;
  margin-bottom: clamp(50px, 7vw, 80px);
}
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: clamp(50px, 7vw, 80px);
}
.contact-label {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 12px;
}
.contact-value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.3;
  display: inline-block;
  transition: opacity .3s;
}
a.contact-value:hover { opacity: .65; }

.big-cta {
  display: inline-flex; align-items: center; gap: 28px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 40px);
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 14px;
  transition: gap .35s ease, border-color .35s;
}
.big-cta:hover { gap: 44px; border-color: rgba(255,255,255,1); }
.big-cta-arrow { font-style: italic; }

/* ─────────── footer ─────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 28px var(--gutter) 36px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,.08);
}
.foot-row {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 6px 0;
}
.foot-brand {
  font-family: var(--serif); font-weight: 400; font-size: 16px;
  letter-spacing: .04em; text-transform: none;
  color: var(--white);
}
.foot-brand em { font-style: italic; font-weight: 300; padding: 0 2px; }
.foot-social { display: flex; gap: 26px; }
.foot-social a { transition: color .25s; }
.foot-social a:hover { color: var(--white); }
.foot-meta { color: rgba(255,255,255,.45); }

/* ─────────── lightbox ─────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,18,22,.96);
  display: none;
  align-items: center; justify-content: center;
  padding: 5vh 5vw;
}
.lightbox.is-open { display: flex; }
.lb-img {
  max-width: 100%; max-height: 90vh; object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: #fff;
  font-size: 36px; line-height: 1;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transition: background .25s, border-color .25s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
}
.lb-close { top: 24px; right: 24px; }
.lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.75);
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
}

/* ─────────── reveal on scroll ─────────── */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="up-soft"] { transform: translateY(16px); }

/* ─────────── responsive ─────────── */
@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: block; }
  .header-right .cta-pill { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .facts li:nth-child(2) { border-right: 0; }
  .facts li:nth-child(3), .facts li:nth-child(4) { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 30px; }
  .section-head { grid-template-columns: 1fr; }

  .service-list { grid-template-columns: repeat(2, 1fr); }
  .service-list li:nth-child(2) { border-right: 0; }
  .service-list li { border-bottom: 1px solid var(--line); }
  .service-list li:nth-last-child(-n+2) { border-bottom: 0; }

  .exp-grid { grid-template-columns: 1fr; }
  .sister-grid { grid-template-columns: 1fr; }
  .sister-card { border-right: 0; }

  .contact-grid { grid-template-columns: 1fr; }

  /* simplify masonry to 2 cols */
  .masonry { grid-template-columns: repeat(6, 1fr); }
  .m-item.size-a, .m-item.size-d, .m-item.size-e, .m-item.size-f, .m-item.size-h { grid-column: span 6; aspect-ratio: 4/3; }
  .m-item.size-b, .m-item.size-c, .m-item.size-g { grid-column: span 3; aspect-ratio: 3/4; }
}

@media (max-width: 640px) {
  .brand-name { font-size: 14px; }
  .brand-mark { width: 32px; height: 32px; font-size: 22px; }
  .hero { padding-bottom: 90px; }
  .hero-meta { gap: 14px; }
  .meta-divider { display: none; }
  .meta-item { flex: 1 1 30%; }
  .facts { grid-template-columns: 1fr; }
  .facts li { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 24px; margin-top: 0; }
  .facts li:last-child { border-bottom: 0; }
  .service-list { grid-template-columns: 1fr; }
  .service-list li { border-right: 0; border-bottom: 1px solid var(--line); min-height: 0; flex-direction: row; align-items: center; }
  .service-list li:last-child { border-bottom: 0; }
  .masonry { grid-template-columns: 1fr; }
  .m-item.size-a, .m-item.size-b, .m-item.size-c, .m-item.size-d, .m-item.size-e, .m-item.size-f, .m-item.size-g, .m-item.size-h { grid-column: span 1; aspect-ratio: 4/3; }
  .scroll-cue { display: none; }
}

/* ─────────── mobile menu ─────────── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink); color: var(--bg);
  z-index: 90;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: var(--gutter);
  gap: 22px;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.7,.05,.3,1);
}
.is-menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(36px, 9vw, 60px);
  font-weight: 300;
}

/* ─────────── reduced motion ─────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .marquee-track { animation: none; }
}
