/* Aurea — category landing. Self-contained; scoped under .aurea-landing so it can't
   disturb the cloned experience pages. Fonts (Aurea Capitalis / Aurea Type) come from
   eclettica-staging.webflow.css, which stays linked.
   Palette pulled from aureagoldanddiamonds.com (cream/champagne, not the Bvlgari dark theme). */

:root {
  --bg: #f7f7f5;
  --bg-soft: #f3eee4;
  --text: #262521;
  --text-muted: #6f6a5f;
  --gold: #c6a15b;
  --gold-soft: #d8bd86;
  --hair: #00000017;
}

.aurea-landing {
  background: var(--bg);
  color: var(--text);
  font-family: "Aurea Type", Arial, sans-serif;
  min-height: 100vh;
  /* clip, not hidden: hidden makes this a scroll container and breaks the sticky story pin. */
  overflow-x: hidden;
  overflow-x: clip;
}
.aurea-landing *,
.aurea-landing *::before,
.aurea-landing *::after { box-sizing: border-box; }

.aurea-serif { font-family: "Aurea Capitalis", Georgia, serif; }

/* ---------- Loader overlay ---------- */
.aurea-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}
.aurea-loader__mark {
  width: clamp(180px, 40vw, 420px);
  height: auto;
}
.aurea-loader__bar {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: min(240px, 60vw);
  height: 1px;
  background: var(--hair);
  overflow: hidden;
}
.aurea-loader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}


/* ---------- Hero ---------- */
.aurea-hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  gap: 1.5rem;
  position: relative;
  isolation: isolate;
}
/* Landing hero: the film runs full bleed and the copy sits in the lower-left, out of
   the way of the pieces, which the footage keeps centre-right. The scrim below is what
   makes that safe: the footage is cream on cream, so dark copy has no contrast of its
   own and needs its own ground. */
.aurea-hero--film {
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: 6rem clamp(1.5rem, 6vw, 5.5rem) clamp(3rem, 8vh, 5.5rem);
  background: var(--bg);
}
.aurea-hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
}
.aurea-hero--film::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(to top, var(--bg) 0%, #f7f7f5a6 12%, #f7f7f500 40%),
    linear-gradient(to right, #f7f7f5b3 0%, #f7f7f540 28%, #f7f7f500 50%);
}
/* The scrim is kept light so the film reads; a soft cream halo gives the dark copy back
   the contrast the scrim no longer supplies. */
/* Brand gold is ~2:1 on the cream footage; a deeper antique gold keeps the label legible
   without a shadow. */
.aurea-hero--film .aurea-hero__eyebrow {
  color: #7d5f24;
  font-size: 0.8rem;
  font-weight: 600;
}
.aurea-hero--film .aurea-hero__tagline {
  text-shadow: 0 0 18px #f7f7f5cc, 0 0 4px #f7f7f599;
}
.aurea-hero__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  /* Sized so "DIAMOND JEWELLERY" holds one line at every desktop width: the caps serif
     runs about 1.2em per character, so the box has to grow with the type, not with the page. */
  max-width: min(46rem, 56vw);
}
.aurea-hero--film .aurea-hero__title {
  font-size: clamp(1.25rem, 2.6vw, 2.2rem);
  line-height: 1.14;
  letter-spacing: 0.045em;
}
/* Subtext, not a second display line. Aurea Capitalis is caps-only, so keeping the serif
   here would put caps under caps; the sans gives the headline something to read against. */
.aurea-hero--film .aurea-hero__tagline {
  font-family: inherit;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.65;
  max-width: 44ch;
  margin: 0;
}
/* The ghost button's hairline border disappears over footage; give it a ground of its own.
   Opaque rather than blurred: a backdrop-filter over a playing video re-blurs every frame. */
.aurea-hero--film .aurea-btn--ghost {
  background: #fffffff2;
  border-color: #26252140;
}
.aurea-hero--film .aurea-btn--ghost:hover { background: #fff; }

@media (max-width: 700px) {
  /* Portrait crops the frame tight, so the scrim comes straight up from the bottom
     instead of in from the left. */
  .aurea-hero--film::after {
    background: linear-gradient(to top, var(--bg) 0%, #f7f7f5c7 22%, #f7f7f526 50%, #f7f7f500 66%);
  }
  .aurea-hero__video { object-position: 58% 42%; }
  .aurea-hero__copy { max-width: none; gap: 1rem; }
}
.aurea-hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.aurea-hero__tagline {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 34ch;
  margin: 0.25rem 0 0;
}
.aurea-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 0.75rem;
}
.aurea-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.aurea-btn--primary {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.aurea-btn--primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); transform: translateY(-2px); }
.aurea-btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--hair);
}
.aurea-btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---------- Section heading ---------- */
.aurea-section-head {
  text-align: center;
  padding: 4.5rem 1.5rem 1.5rem;
}
.aurea-section-head__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9rem;
}
.aurea-section-head__title {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: 0.08em;
  margin: 0;
  color: var(--text);
}

/* ---------- Category grid ---------- */
.aurea-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--hair);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.aurea-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 60vh;
  overflow: hidden;
  text-decoration: none;
  background: var(--bg-soft);
}
.aurea-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.aurea-card__overlay {
  position: absolute;
  inset: 0;
  /* Independent of theme: dims the product photo so the white caption stays legible. */
  background: linear-gradient(180deg, #00000033 0%, #00000000 35%, #0000009e 100%);
  transition: background 0.5s ease;
}
.aurea-card__body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.25rem 2.5rem;
}
.aurea-card__name {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.15;
  letter-spacing: 0.14em;
  color: #fff;
  margin: 0;
}
.aurea-card__cta {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.aurea-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s ease;
  z-index: 3;
  pointer-events: none;
}
.aurea-card:hover .aurea-card__img { transform: scale(1.12); }
.aurea-card:hover .aurea-card__cta { opacity: 1; transform: translateY(0); }
.aurea-card:hover::after { border-color: var(--gold); }
.aurea-card:focus-visible::after { border-color: var(--gold); }

/* Mobile-only: cards stack via native `position: sticky` instead of sitting in a grid —
   each one pins full-screen and the next covers it as you scroll. The progress track is a
   zero-height sticky sibling (see comment below) so it centres on screen for the section's
   whole scroll range with no JS needed to show/hide it; JS only drives the fill (see draw()). */
.aurea-grid__progress { display: none; }
@media (max-width: 600px) {
  .aurea-grid { display: block; border: 0; background: none; }
  .aurea-grid .aurea-card { position: sticky; top: 0; min-height: 100vh; }
  .aurea-grid__progress {
    display: block;
    position: sticky;
    top: 50vh;
    height: 0;
    overflow: visible;
    z-index: 4;
  }
  .aurea-grid__progress span {
    position: absolute;
    right: 14px;
    top: -60px;
    width: 3px;
    height: 120px;
    background: #ffffff40;
  }
  .aurea-grid__progress span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleY(var(--fill, 0));
    transform-origin: top;
  }
}

/* ---------- Brand story bands ---------- */
/* The story images are ultra-wide (2560x1000) atelier shots, so they run full-bleed at
   their own proportions rather than being cropped into a side column. */
.aurea-story { padding: clamp(3.5rem, 8vw, 6rem) 0 0; }
.aurea-story--soft { background: var(--bg-soft); padding: 0 0 clamp(3.5rem, 8vw, 6rem); }
.aurea-story__body {
  max-width: 62ch;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem) clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
.aurea-story--about .aurea-story__body { max-width: 78ch; }
.aurea-story--soft .aurea-story__body { padding-bottom: 0; padding-top: clamp(2.5rem, 5vw, 3.5rem); }
.aurea-story__title {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin: 0 0 1.25rem;
}
.aurea-story__text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 1.25rem;
}
.aurea-story .aurea-btn { margin-top: 0.5rem; }
.aurea-story__band {
  overflow: hidden;
  height: clamp(200px, 26vw, 420px);
}
.aurea-story__banner {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Over-scaled so the JS parallax drift never exposes an edge. */
  transform: scale(1.14);
  will-change: transform;
}

/* Heritage (premium, dark feature) and Vermeil (everyday, light strip) are deliberately different
   in scale and tone so the two price tiers never read as equals. */
.aurea-heritage { display: grid; grid-template-columns: 1fr; background: #1d1c19; color: #f3eee4; }
.aurea-heritage__media { overflow: hidden; height: clamp(280px, 60vw, 420px); }
.aurea-heritage__img { display: block; width: 100%; height: 100%; object-fit: cover; transform: scale(1.14); will-change: transform; }
.aurea-heritage__body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem); }
.aurea-heritage__tag { margin: 0; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-soft); }
.aurea-heritage .aurea-rule { margin: 1rem 0 1.5rem; }
.aurea-heritage__title { font-family: "Aurea Capitalis", Georgia, serif; font-weight: 400; font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.15; letter-spacing: 0.06em; margin: 0 0 1.25rem; }
.aurea-heritage__text { max-width: 46ch; margin: 0 0 2rem; font-size: 1rem; line-height: 1.8; color: #cfc8b8; }
@media (min-width: 900px) {
  .aurea-heritage { grid-template-columns: 7fr 5fr; min-height: min(78vh, 640px); }
  .aurea-heritage__media { height: auto; }
}

.aurea-everyday { display: grid; grid-template-columns: 1fr; gap: 1.75rem; align-items: center; background: var(--bg-soft); padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 6vw, 5rem); }
.aurea-everyday__media { display: block; overflow: hidden; aspect-ratio: 16 / 10; }
.aurea-everyday__img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.aurea-everyday__media:hover .aurea-everyday__img { transform: scale(1.04); }
.aurea-everyday__title { font-family: "Aurea Capitalis", Georgia, serif; font-weight: 400; font-size: clamp(1.4rem, 2.6vw, 1.9rem); letter-spacing: 0.05em; margin: 0.5rem 0 1rem; }
.aurea-everyday__body .aurea-story__text { max-width: 52ch; }
@media (min-width: 800px) {
  .aurea-everyday { grid-template-columns: minmax(220px, 1fr) 2fr; gap: clamp(2rem, 5vw, 4.5rem); padding-inline: max(5rem, calc((100% - 1100px) / 2)); }
  .aurea-everyday__media { aspect-ratio: 1; }
}
@media (prefers-reduced-motion: reduce) { .aurea-everyday__img { transition: none; } }

/* Our House: white panel left, jewellery/ribbon artwork right (image already
   carries the gold/olive gradient + strip art direction, so this section stays
   plain white and just switches to a two-column layout on wider screens). */
.aurea-story--house .aurea-story__band {
  position: relative;
}
.aurea-story--house .aurea-story__band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Stacked (mobile): text sits above the image, so fade its top edge into white. */
  background: linear-gradient(to bottom, #fff 0%, transparent 20%);
}
@media (min-width: 900px) {
  .aurea-story--house .aurea-story__band::after {
    /* Side-by-side: text sits to the left, so fade the image's left edge instead. */
    background: linear-gradient(to right, #fff 0%, transparent 20%);
  }
}
@media (min-width: 900px) {
  .aurea-story--house {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: #fff;
    padding: 0;
  }
  .aurea-story--house .aurea-story__body {
    max-width: none;
    margin: 0;
    text-align: left;
    padding: clamp(2.5rem, 6vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .aurea-story--house .aurea-story__body .aurea-rule { margin-left: 0; }
  /* Text flows into two columns so it fills the white half instead of a narrow strip. */
  .aurea-story--house .aurea-story__cols { columns: 2 24ch; column-gap: clamp(2rem, 4vw, 3.5rem); }
  .aurea-story--house .aurea-story__text { line-height: 1.95; margin-bottom: 1.5rem; break-inside: avoid; }
  .aurea-story--house .aurea-story__band {
    height: auto;
    min-height: clamp(420px, 44vw, 640px);
  }
}

/* ---------- Values ---------- */
.aurea-values {
  padding: 0 clamp(1.5rem, 6vw, 5rem) clamp(4rem, 9vw, 7rem);
  border-bottom: 1px solid var(--hair);
}
.aurea-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem);
  max-width: 1100px;
  margin: 0 auto;
}
/* Two across on desktop: four narrow columns collide the wide serif titles. */
.aurea-values__grid--narrow { grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); }
.aurea-value { border-top: 1px solid var(--hair); padding-top: 1.5rem; }
.aurea-value__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 1.25rem;
}
.aurea-value__num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.aurea-value__title {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
}
.aurea-value__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

/* ---------- Conversion strip ---------- */
.aurea-convert {
  text-align: center;
  padding: 6rem 1.5rem;
  background:
    radial-gradient(120% 100% at 50% 0%, var(--bg-soft) 0%, var(--bg) 60%);
  border-bottom: 1px solid var(--hair);
}
.aurea-convert__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
}
.aurea-convert__title {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: var(--text);
  max-width: 20ch;
  margin: 0 auto 1.25rem;
}
.aurea-convert__text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 46ch;
  margin: 0 auto 2rem;
}

/* ---------- Certifications ---------- */
.aurea-certs {
  text-align: center;
  padding: 4rem 1.5rem;
  border-bottom: 1px solid var(--hair);
}
.aurea-certs__row {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
/* Continuous left-to-right marquee: the track holds the list twice, so sliding
   from -50% to 0 lands exactly where it started. */
.aurea-certs__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: aurea-certs-marquee 30s linear infinite;
}
.aurea-certs__row:hover .aurea-certs__track { animation-play-state: paused; }
@keyframes aurea-certs-marquee {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .aurea-certs__track { animation: none; }
}
.aurea-certs__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-right: 3rem; /* margin, not gap, so both halves are the same width */
}

/* ---------- Footer ---------- */
.aurea-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 1.75rem;
  background: var(--bg-soft);
}
.aurea-footer__mark {
  height: 24px;
  width: auto;
}
.aurea-footer__links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.aurea-footer__links a {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease;
}
.aurea-footer__links a:hover { color: var(--gold); }

/* ---------- Gold hairline (shared section accent) ---------- */
.aurea-rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.is-in .aurea-rule { transform: scaleX(1); }

/* ---------- Scroll reveals ---------- */
/* Only hidden once JS has claimed the page — no script, no blank sections. */
.aurea-landing[data-scroll-anim="on"] .aurea-reveal { opacity: 0; transform: translateY(30px); }
.aurea-reveal { transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
/* Scoped to the same [data-scroll-anim] ancestor as the hiding rule above: a bare
   `.aurea-reveal.is-in` loses the cascade to it and nothing would ever reveal. */
.aurea-landing[data-scroll-anim="on"] .aurea-reveal.is-in { opacity: 1; transform: none; }

/* Text blocks settle line by line; opt-in so it can't touch cards or media wrappers. */
.aurea-landing[data-scroll-anim="on"] .aurea-stagger > * { opacity: 0; transform: translateY(18px); }
.aurea-stagger > * { transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
.aurea-landing[data-scroll-anim="on"] .aurea-stagger.is-in > * { opacity: 1; transform: none; }
.aurea-stagger.is-in > *:nth-child(1) { transition-delay: 0.08s; }
.aurea-stagger.is-in > *:nth-child(2) { transition-delay: 0.16s; }
.aurea-stagger.is-in > *:nth-child(3) { transition-delay: 0.24s; }
.aurea-stagger.is-in > *:nth-child(4) { transition-delay: 0.32s; }
.aurea-stagger.is-in > *:nth-child(5) { transition-delay: 0.4s; }
/* The rule is a child of a stagger block, so it needs its scaleX back on top of that. */
.aurea-landing[data-scroll-anim="on"] .aurea-stagger.is-in > .aurea-rule { transform: scaleX(1); }

/* Grid tiles cascade left-to-right instead of arriving together. */
.aurea-grid .aurea-reveal:nth-child(2) { transition-delay: 0.1s; }
.aurea-grid .aurea-reveal:nth-child(3) { transition-delay: 0.2s; }
.aurea-grid .aurea-reveal:nth-child(4) { transition-delay: 0.3s; }

/* Values: the hairline above each pillar draws in with the copy. */
.aurea-value { position: relative; }
.aurea-value::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.aurea-value.is-in::before { transform: scaleX(1); }

/* Titles settle out of wide tracking — the house's quiet luxury tell. */
.aurea-landing[data-scroll-anim="on"] .aurea-story__title,
.aurea-landing[data-scroll-anim="on"] .aurea-section-head__title,
.aurea-landing[data-scroll-anim="on"] .aurea-convert__title { letter-spacing: 0.22em; }
.aurea-story__title,
.aurea-section-head__title,
.aurea-convert__title { transition: letter-spacing 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s; }
.is-in .aurea-story__title, .is-in.aurea-story__title { letter-spacing: 0.04em; }
/* A split headline carries its motion per character, so it opts out of both the block
   stagger and the tracking settle. */
.aurea-landing[data-scroll-anim="on"] .aurea-story__title.is-split { letter-spacing: 0.04em; opacity: 1; transform: none; }
.aurea-char { display: inline-block; will-change: transform, opacity; }
/* SplitText wraps each word in its own unclassed inline-block div around the char
   spans — without nowrap here, a long word can still break between its own chars. */
.aurea-story__title.is-split > div { white-space: nowrap; }
/* Same [data-scroll-anim] scope as the wide-tracking rule, or it loses the cascade. */
.aurea-landing[data-scroll-anim="on"] .is-in .aurea-section-head__title { letter-spacing: 0.08em; }
.aurea-landing[data-scroll-anim="on"] .is-in .aurea-convert__title { letter-spacing: 0.04em; }

/* ---------- Scroll progress ---------- */
.aurea-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  z-index: 60;
  pointer-events: none;
}
.aurea-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
}


/* ---------- Marquee ---------- */
.aurea-marquee {
  overflow: hidden;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: var(--bg-soft);
  padding: 1.1rem 0;
}
.aurea-marquee__track {
  display: flex;
  width: max-content;
  animation: aurea-marquee 38s linear infinite;
}
.aurea-marquee:hover .aurea-marquee__track { animation-play-state: paused; }
.aurea-marquee__group { display: flex; }
.aurea-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.aurea-marquee__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
/* The track holds two identical groups, so resetting at -50% is seamless. */
@keyframes aurea-marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Stats ---------- */
.aurea-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
}
.aurea-stat__figure {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: "Aurea Capitalis", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
  color: var(--gold);
  /* Tabular figures stop the layout jittering while the number counts up. */
  font-variant-numeric: tabular-nums;
}
.aurea-stat__suffix { font-size: 0.5em; margin-left: 0.1em; }
.aurea-stat__label {
  margin: 1rem auto 0;
  max-width: 26ch;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---------- Process ---------- */
/* A horizontal story. Resting state (no JS / reduced motion) is a native swipe row with
   scroll-snap; .is-pinned (set by pinStory in index.jsx) makes the pin sticky and hands
   the track's position to scroll. */
.aurea-process {
  position: relative;
  background: var(--bg-soft);
  border-top: 1px solid var(--hair);
}
.aurea-process__pin {
  display: flex;
  flex-direction: column;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
.aurea-process.is-pinned .aurea-process__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.aurea-process .aurea-section-head { padding: clamp(2.5rem, 7vh, 4.5rem) 1.5rem clamp(1rem, 3vh, 1.5rem); }
.aurea-process__track {
  --pad: clamp(1.5rem, 6vw, 5rem);
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin: 0;
  padding: 0 var(--pad);
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 var(--pad);
  scrollbar-width: none;
}
.aurea-process__track::-webkit-scrollbar { display: none; }
/* Panels top-align (so every chapter's hairline sits on one line) and the row as a
   whole centres in the space left under the heading. */
.aurea-process.is-pinned .aurea-process__track {
  margin-block: auto;
  align-items: flex-start;
  overflow: visible;
  will-change: transform;
}
.aurea-process.is-pinned .aurea-step--end { align-self: stretch; align-content: center; }
.aurea-step {
  position: relative;
  flex: 0 0 min(86vw, 1080px);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--hair);
  scroll-snap-align: start;
}
.aurea-step--end {
  flex-basis: min(70vw, 560px);
  grid-template-columns: 1fr;
  text-align: center;
}
.aurea-step--end .aurea-step__body { padding: 0 1rem; }
.aurea-step::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.aurea-step.is-active::before { transform: scaleX(1); }
.aurea-step__media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  max-height: 58vh;
  width: 100%;
  box-shadow: 0 30px 60px -30px rgba(38, 37, 33, 0.35);
}
.aurea-step__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  filter: saturate(0.75);
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), filter 1.2s ease;
}
.aurea-step.is-active .aurea-step__img { transform: scale(1); filter: none; }
.aurea-step__body > * {
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.aurea-process.is-pinned .aurea-step:not(.is-active) .aurea-step__body > * { opacity: 0.25; transform: translateX(24px); }
.aurea-step.is-active .aurea-step__body > :nth-child(2) { transition-delay: 0.08s; }
.aurea-step.is-active .aurea-step__body > :nth-child(3) { transition-delay: 0.16s; }
.aurea-step.is-active .aurea-step__body > :nth-child(4) { transition-delay: 0.24s; }
.aurea-step__num {
  display: block;
  font-family: "Aurea Capitalis", Georgia, serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  margin-bottom: 1rem;
}
.aurea-step__kicker {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9rem;
}
.aurea-step__title {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
}
.aurea-step--end .aurea-step__title { margin-bottom: 2rem; }
.aurea-step__text {
  margin: 0;
  max-width: 38ch;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}
.aurea-process__rail {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(420px, 70vw);
  margin: 0 auto;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.aurea-process__bar { flex: 1; height: 1px; background: var(--hair); }
.aurea-process__bar span {
  display: block;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}
/* The rail only means something while scroll drives the track. */
.aurea-process:not(.is-pinned) .aurea-process__rail { display: none; }
.aurea-process:not(.is-pinned) .aurea-step__img { transform: none; filter: none; }
.aurea-process:not(.is-pinned) .aurea-step::before { transform: scaleX(1); }

@media (max-width: 760px) {
  .aurea-process .aurea-section-head__title { font-size: min(1.3rem, 5.2vw); }
  .aurea-process__track { gap: 2.5rem; }
  .aurea-step { grid-template-columns: 1fr; gap: 1.25rem; align-content: center; }
  .aurea-step__media { max-height: 38svh; }
  .aurea-step__num { font-size: 2.6rem; margin-bottom: 0.5rem; }
  .aurea-step__text { font-size: 0.9rem; line-height: 1.7; }
}

/* ---------- Testimonials ---------- */
.aurea-testimonials {
  padding-bottom: clamp(4rem, 9vw, 7rem);
  border-top: 1px solid var(--hair);
}
.aurea-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}
.aurea-quote {
  position: relative;
  margin: 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--hair);
  /* Explicit: the caption otherwise inherits a centred alignment and disagrees with
     the left-aligned quote above it. */
  text-align: left;
}
/* Same hairline draw as the values and process steps, so the page keeps one language. */
.aurea-quote::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
.aurea-quote.is-in::before { transform: scaleX(1); }
.aurea-quote__text {
  position: relative;
  margin: 0 0 1.5rem;
  /* Body face, not the display one: Aurea Capitalis is caps-only and unreadable at
     quote length. The serif is kept for the quote glyph below. */
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.8;
  color: var(--text);
}
.aurea-quote__text::before {
  content: "\201C";
  display: block;
  font-size: 2.6rem;
  line-height: 0.7;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
/* webflow.css centres every figcaption, so the caption needs its own alignment. */
.aurea-quote__by { display: flex; flex-direction: column; gap: 0.35rem; text-align: left; }
.aurea-quote__name {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
}
.aurea-quote__meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ---------- No-paint escape hatch ---------- */
/* Set by JS when the browser isn't producing frames. Every animated state resolves to
   its resting value at once, because a transition that can't run can't finish either. */
.aurea-landing[data-anim="off"] .aurea-anim,
.aurea-landing[data-anim="off"] .aurea-reveal,
.aurea-landing[data-anim="off"] .aurea-reveal > *,
.aurea-landing[data-anim="off"] .aurea-char {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.aurea-landing[data-anim="off"] .aurea-rule,
.aurea-landing[data-anim="off"] .aurea-value::before {
  transform: scaleX(1) !important;
  transition: none !important;
}
.aurea-landing[data-anim="off"] .aurea-story__banner { transform: none !important; }
.aurea-landing[data-anim="off"] .aurea-step::before,
.aurea-landing[data-anim="off"] .aurea-quote::before { transform: scaleX(1) !important; transition: none !important; }
.aurea-landing[data-anim="off"] .aurea-marquee__track { animation: none !important; }
.aurea-landing[data-anim="off"] .aurea-progress { display: none; }
.aurea-landing[data-anim="off"] .aurea-story__title,
.aurea-landing[data-anim="off"] .aurea-section-head__title,
.aurea-landing[data-anim="off"] .aurea-convert__title { letter-spacing: 0.06em; }

/* ---------- Intro animation state (JS-driven) ---------- */
.aurea-landing[data-reveal="pending"] .aurea-anim { opacity: 0; transform: translateY(26px); }
.aurea-anim { transition: opacity 0.9s ease, transform 0.9s ease; }
.aurea-hero .aurea-anim:nth-child(1) { transition-delay: 0.05s; }
.aurea-hero .aurea-anim:nth-child(2) { transition-delay: 0.15s; }
.aurea-hero .aurea-anim:nth-child(3) { transition-delay: 0.25s; }
.aurea-hero .aurea-anim:nth-child(4) { transition-delay: 0.35s; }
.aurea-hero .aurea-anim:nth-child(5) { transition-delay: 0.45s; }

@media (max-width: 600px) {
  .aurea-card { min-height: 52vh; }
  .aurea-btn { width: 100%; max-width: 320px; }
  .aurea-footer { flex-direction: column; text-align: center; }
  /* Their longest words ("CONVERSATION", "COMMISSIONING") are wider than a phone at the
     rem floors above, so these scale with the screen instead. */
  .aurea-convert__title { font-size: min(1.8rem, 5.6vw); }
  .aurea-section-head__title { font-size: min(1.7rem, 6.6vw); }
}

@media (prefers-reduced-motion: reduce) {
  .aurea-anim,
  .aurea-card__img,
  .aurea-rule,
  .aurea-value::before,
  .aurea-reveal,
  .aurea-reveal > * { transition: none; }
  .aurea-rule, .aurea-value::before, .aurea-step::before, .aurea-quote::before { transform: scaleX(1); }
  .aurea-marquee__track { animation: none; }
  .aurea-step::before, .aurea-quote::before { transition: none; }
  .aurea-story__banner { transform: none; }
}

/* ---------- Owners page ---------- */
.aurea-hero--owners {
  min-height: 78vh;
  background:
    linear-gradient(var(--bg) 0%, #f7f7f500 22% 62%, var(--bg) 100%),
    url("/images/owners/owners-hero-backdrop.webp") center / cover no-repeat;
}

/* ---------- About page ---------- */
.aurea-hero--about {
  min-height: 78vh;
  background:
    linear-gradient(var(--bg) 0%, #f7f7f500 22% 62%, var(--bg) 100%),
    url("/images/about/about-hero-backdrop.webp") center / cover no-repeat;
}
/* Founders on About Us: portrait, role and name each, full profiles on /owners. */
.aurea-founders { text-align: center; padding-bottom: clamp(4rem, 9vw, 6rem); border-bottom: 1px solid var(--hair); }
.aurea-founders__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(2.5rem, 6vw, 5rem);
  max-width: 820px;
  margin: 1.5rem auto 3rem;
  padding: 0 1.5rem;
}
.aurea-founder { display: grid; justify-items: center; }
.aurea-founder .aurea-owner__photo { max-width: 280px; margin-bottom: 1.75rem; }
.aurea-founder__name {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  letter-spacing: 0.06em;
  margin: 0;
}
.aurea-values__intro {
  max-width: 46ch;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.7;
}

/* The one-line way through to The House (house.jsx). */
.aurea-house-link {
  margin: 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--hair);
}
.aurea-house-link a {
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.35rem;
  transition: color 0.25s ease;
}
.aurea-house-link a:hover { color: var(--gold); }
.aurea-hero__title {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-weight: 400;
  /* 6.8vw keeps an 11-letter word like VISIONARIES inside a 360px phone. */
  font-size: clamp(1.5rem, 6.8vw, 5.5rem);
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
}
/* Founders: one editorial row each, monogram medallion beside the copy, alternating sides. */
.aurea-owners {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 1.5rem;
  display: grid;
  gap: clamp(4rem, 9vw, 7rem);
}
.aurea-owner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .aurea-owner { grid-template-columns: 340px 1fr; gap: 5rem; }
  .aurea-owner:nth-child(even) { grid-template-columns: 1fr 340px; }
  .aurea-owner:nth-child(even) .aurea-owner__aside { order: 2; }
  .aurea-owner__aside { position: sticky; top: 8rem; }
}
.aurea-owner__aside { display: grid; justify-items: center; gap: 1.25rem; }
.aurea-owner__num {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--gold);
}
.aurea-owner__photo {
  display: block;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 60% 30%;
  outline: 1px solid var(--gold);
  outline-offset: 10px;
}
.aurea-owner__body { max-width: 62ch; }
.aurea-owner__role {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  line-height: 1.8;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9rem;
}
.aurea-owner__name {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 6.4vw, 3rem);
  letter-spacing: 0.05em;
  line-height: 1.15;
  margin: 0 0 1.5rem;
}
/* "VADODARIYA" outgrows a 360px phone at the 1.6rem floor. */
@media (max-width: 600px) { .aurea-owner__name { font-size: min(1.6rem, 6.2vw); } }
.aurea-owner__lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 2.5rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--gold);
}
.aurea-owner__quote {
  margin: 0 0 2.5rem;
  padding: 2rem 2rem 1.75rem;
  background: var(--bg-soft);
  text-align: left;
}
/* webflow.css gives blockquote a grey bar + indent and centres figcaption; undo both. */
.aurea-owner__quote .aurea-quote__text { font-style: italic; margin: 0 0 1.25rem; padding: 0; border: 0; }
.aurea-owner__quote figcaption { text-align: left; }
.aurea-owner__bio { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin: 0 0 1.25rem; }
.aurea-owner__focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}
.aurea-owner__focus li {
  padding: 0.45rem 1rem;
  border: 1px solid var(--hair);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.aurea-owners__joint {
  background: var(--bg-soft);
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
}
.aurea-owners__joint-text {
  max-width: 34ch;
  margin: 0 auto 1.75rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.5;
  color: var(--text);
}

/* Phones: the sticky portrait is desktop-only, so the founders get scroll-linked reveals
   instead. CSS scroll timelines, so browsers without them simply show the static page. */
@supports (animation-timeline: view()) {
  @media (max-width: 899px) and (prefers-reduced-motion: no-preference) {
    .aurea-owner__photo {
      animation: aurea-owner-unveil linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 45%;
    }
    .aurea-owner__body > *,
    .aurea-owners__joint > * {
      animation: aurea-owner-rise linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 90%;
    }
  }
}
/* Negative inset keeps the offset gold outline visible once fully revealed. */
@keyframes aurea-owner-unveil {
  from { clip-path: inset(35% 8% 0 8%); transform: scale(0.94); opacity: 0.3; }
  to   { clip-path: inset(-12px); transform: none; opacity: 1; }
}
@keyframes aurea-owner-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Consultation page ---------- */
/* Split booking page: a sticky image column beside the form on desktop, stacked on
   phones. Motion is mount-only CSS (no observer), so a re-shown form animates again. */
.aurea-book { display: grid; grid-template-columns: minmax(0, 1fr); }
.aurea-book__aside { display: flex; flex-direction: column; background: var(--bg-soft); }
.aurea-book__intro { padding: 6rem clamp(1.25rem, 5vw, 3.5rem) 2rem; display: grid; gap: 1rem; justify-items: start; }
.aurea-book__intro .aurea-story__text { margin: 0; max-width: 40ch; }
.aurea-book__title {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-weight: 400;
  /* Caps serif runs ~1.2em a letter, so the size tracks the column: full width here, 5fr on desktop. */
  font-size: clamp(1.3rem, 6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: 0.06em;
  margin: 0;
}
.aurea-book__media { overflow: hidden; aspect-ratio: 16 / 10; }
.aurea-book__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 70%;
  animation: aurea-settle 2.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.aurea-book__panel { padding: 2.5rem clamp(1.25rem, 5vw, 5rem) 4.5rem; }
.aurea-book__form, .aurea-book__sent { max-width: 780px; }

@media (min-width: 1000px) {
  .aurea-book { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .aurea-book__aside { position: sticky; top: 0; height: 100dvh; }
  .aurea-book__title { font-size: clamp(1.5rem, 2.2vw, 2.6rem); }
  .aurea-book__media { aspect-ratio: auto; flex: 1; min-height: 0; }
  .aurea-book__panel { padding-top: 6.5rem; }
}

.aurea-book__group { border: 0; padding: 0; margin: 0 0 3.25rem; min-width: 0; }
.aurea-book__legend {
  display: block;
  width: 100%;
  padding: 0 0 1rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--hair);
  font-family: "Aurea Capitalis", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
}
.aurea-book__when { display: grid; gap: 2rem; align-items: start; }
.aurea-book__fields { display: grid; gap: 1.75rem 2.25rem; }
@media (min-width: 640px) {
  .aurea-book__when { grid-template-columns: 1.15fr 1fr; gap: 2.75rem; }
  .aurea-book__fields { grid-template-columns: 1fr 1fr; }
}
.aurea-book__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.aurea-book__error { margin: 1rem 0 0; font-size: 0.85rem; color: #9b3b2a; }
.aurea-book__submit { display: grid; gap: 0.9rem; justify-items: start; }

/* Calendar */
.aurea-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.aurea-cal__month { margin: 0; font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; }
.aurea-cal__nav {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--hair);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}
.aurea-cal__nav::before {
  content: "";
  width: 7px;
  height: 7px;
  border: solid var(--text);
  border-width: 0 0 1px 1px;
  transform: translateX(2px) rotate(45deg);
}
.aurea-cal__nav.is-next::before { transform: translateX(-2px) rotate(-135deg); }
.aurea-cal__nav:hover:not(:disabled) { border-color: var(--gold); }
.aurea-cal__nav:disabled { opacity: 0.3; cursor: default; }
.aurea-cal__week, .aurea-cal__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.aurea-cal__week span {
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 0.5rem;
}
.aurea-cal__day {
  aspect-ratio: 1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  font: inherit;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  animation: aurea-rise-sm 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i) * 12ms);
}
.aurea-cal__day:hover:not(:disabled) { border-color: var(--gold); }
.aurea-cal__day:disabled { color: #b3ad9f; cursor: default; }
.aurea-cal__day[aria-pressed="true"] { background: var(--text); border-color: var(--text); color: var(--bg); }

/* Slots and chips share one selectable-pill look. */
.aurea-slots { display: grid; gap: 1rem; }
.aurea-slots__day { margin: 0; font-size: 0.95rem; letter-spacing: 0.02em; }
.aurea-slots__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 0.5rem; }
.aurea-slots__hint { margin: 0; font-size: 0.82rem; color: var(--text-muted); }
.aurea-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  background: transparent;
  border: 1px solid #0000002b;
  border-radius: 2px;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  animation: aurea-rise-sm 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i, 0) * 40ms);
}
.aurea-chip:hover { border-color: var(--gold); transform: translateY(-1px); }
.aurea-chip:active { transform: scale(0.98); }
.aurea-chip[aria-pressed="true"],
.aurea-chip[aria-checked="true"],
.aurea-chip:has(input:checked) { background: var(--text); border-color: var(--text); color: var(--bg); }
.aurea-chip input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.aurea-chip:has(input:focus-visible),
.aurea-btn:focus-visible,
.aurea-footer a:focus-visible,
.aurea-legal a:focus-visible,
.aurea-book button:focus-visible { outline: 1px solid var(--gold); outline-offset: 2px; }

/* Fields: label above, hairline underline that turns gold on focus. */
.aurea-field { display: grid; gap: 0.35rem; }
.aurea-field__label {
  display: block;
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.aurea-field .aurea-field__label { margin: 0; }
.aurea-input {
  width: 100%;
  padding: 0.65rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #00000038;
  border-radius: 0;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.aurea-input:focus { outline: none; border-bottom-color: var(--gold); box-shadow: 0 1px 0 var(--gold); }
.aurea-input:user-invalid { border-bottom-color: #9b3b2a; }
select.aurea-input {
  appearance: none;
  padding-right: 1.5rem;
  cursor: pointer;
  background:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%) right 6px center / 5px 5px no-repeat,
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%) right 1px center / 5px 5px no-repeat;
}

/* Phone: a compact "+91" label with the real dial-code select laid invisibly over it. */
.aurea-phone { display: flex; gap: 0.75rem; }
.aurea-phone__dial {
  position: relative;
  flex: none;
  min-width: 3.5rem;
  padding: 0.65rem 1.25rem 0.65rem 0;
  border-bottom: 1px solid #00000038;
  font-size: 1rem;
  color: var(--text);
  background:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%) right 6px center / 5px 5px no-repeat,
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%) right 1px center / 5px 5px no-repeat;
}
.aurea-phone__dial:focus-within { border-bottom-color: var(--gold); box-shadow: 0 1px 0 var(--gold); }
.aurea-phone__dial select { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: pointer; font: inherit; }

/* Confirmation */
.aurea-book__sent { animation: aurea-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; }
.aurea-book__sent .aurea-rule { margin: 0 0 1.75rem; transform: none; transform-origin: left; animation: aurea-draw 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both; }
.aurea-book__sent-title {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.06em;
  margin: 0 0 1.25rem;
}
.aurea-book__sent .aurea-story__text { max-width: 52ch; }
.aurea-book__sent .aurea-cta-row { justify-content: flex-start; margin-top: 1.5rem; }

.aurea-rise { animation: aurea-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; animation-delay: calc(var(--d, 0) * 0.12s + 0.1s); }
@keyframes aurea-rise { from { opacity: 0; transform: translateY(24px); } }
@keyframes aurea-rise-sm { from { opacity: 0; transform: translateY(6px); } }
@keyframes aurea-settle { from { transform: scale(1.08); } }
@keyframes aurea-draw { from { transform: scaleX(0); } }

@media (prefers-reduced-motion: reduce) {
  .aurea-rise,
  .aurea-book__sent,
  .aurea-book__sent .aurea-rule,
  .aurea-book__media img,
  .aurea-cal__day,
  .aurea-chip { animation: none; }
}

/* ---------- Text pages (privacy, cookies, accessibility, 404) ---------- */
.aurea-hero--legal {
  min-height: 0;
  padding: 9rem 1.5rem 3rem;
  border-bottom: 1px solid var(--hair);
}
.aurea-legal {
  max-width: 72ch;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 6vw, 2rem) clamp(4rem, 8vw, 6rem);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}
.aurea-legal h2 {
  font-family: "Aurea Capitalis", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--text);
  margin: 2.75rem 0 1rem;
}
.aurea-legal h2:first-child { margin-top: 0; }
.aurea-legal p, .aurea-legal ul { margin: 0 0 1.25rem; }
.aurea-legal ul { padding-left: 1.25rem; }
.aurea-legal li { margin-bottom: 0.4rem; }
.aurea-legal strong { color: var(--text); font-weight: 600; }
/* Body-colour links with a gold underline: gold text alone is too faint on cream. */
.aurea-legal a:not(.aurea-btn) {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.2em;
}
.aurea-legal a:not(.aurea-btn):hover { color: var(--gold); }
.aurea-legal .aurea-cta-row { margin-top: 2rem; }
.aurea-legal--center { text-align: center; }
.aurea-legal__updated {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0;
}
