/* ============================================================
   Humsafar Wedding by GNK — Shared Design System
   Direction: V1 "Quiet Editorial"
   Edit tokens below to retune the whole site at once.
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Colour — greens + light gold (logo-driven) */
  --ink:        #1f2e25;  /* deep green, primary dark        */
  --green:      #3e5b3a;  /* mid green, accents              */
  --paper:      #ffffff;  /* main page background            */
  --cream:      #ffffff;  /* lighter section background      */
  --gold:       #b8954a;  /* primary gold                    */
  --gold-light: #e6c98a;  /* gold on dark backgrounds        */
  --gold-dark:  #7a6234;  /* labels / eyebrows               */
  --text:       #3e3a30;  /* body copy on paper              */
  --muted:      #93887a;  /* secondary text                  */
  --line:       rgba(122,98,52,.35); /* hairline rules       */

  /* Festive accents — Indian wedding palette */
  --saffron:    #e98a15;  /* marigold / saffron warmth       */
  --marigold:   #f2a93b;  /* bright marigold                 */
  --rose:       #c0286f;  /* gulaab rose / magenta           */
  --magenta:    #d6336c;  /* festive pink                    */
  --peacock:    #0f7c8c;  /* peacock teal                    */

  /* Type */
  /* site-wide type = the reference trio: Newsreader (headings), EB Garamond (body serif / italics), Jost (labels, UI) */
  --serif: 'EB Garamond', 'Times New Roman', serif;
  --sans:  'Jost', 'Futura', system-ui, sans-serif;
  --display: 'Newsreader', 'EB Garamond', 'Times New Roman', serif;
  --brand: 'Cinzel', 'EB Garamond', serif;   /* logo wordmark only */
  /* script accent: Kallimata Script is a paid font — once licensed, add its @font-face
     (fonts/KallimataScript-Script.woff2) and it takes over; Allison is the free stand-in */
  --script: 'Kallimata Script', 'Allison', cursive;

  /* Spacing */
  --gutter: clamp(20px, 5vw, 56px);   /* horizontal page padding */
  --maxw: 1440px;
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

.serif { font-family: var(--serif); font-optical-sizing: auto; }
.sans  { font-family: var(--sans); }
.italic { font-style: italic; }
.gold  { color: var(--gold); }
.gold-light { color: var(--gold-light); }
.green { color: var(--green); }

/* ---------- 3. Layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.section { position: relative; padding-block: clamp(52px, 7vw, 96px); }
.section--paper { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--ink   { background: var(--ink); color: var(--cream); overflow: hidden; }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }

/* ---------- 4. Typography components ---------- */
.eyebrow {
  font-family: var(--sans); font-size: 11.5px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold-dark);
}
.eyebrow--ink { color: var(--gold-light); }

.folio {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(24px, 3.2vw, 32px); color: var(--gold); line-height: 1;
  letter-spacing: -.005em;
}

.display {
  font-family: var(--display); font-weight: 500; color: var(--ink);
  line-height: .96; letter-spacing: -.01em;
}
.display em, .display .em { font-style: italic; color: var(--gold); }

/* Colourful gradient word — festive multi-colour text */
.rainbow-text {
  font-style: italic;
  background: linear-gradient(100deg, #e0457b 0%, #f0843c 22%, #f4c430 44%, #4a9d4f 64%, #2e7fb8 82%, #8e44ad 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: rainbow-shift 8s linear infinite;
}
@keyframes rainbow-shift { to { background-position: 200% 0; } }
@media (prefers-reduced-motion: reduce) { .rainbow-text { animation: none; } }

/* Pink heart accent */
.heart-pink {
  color: #e84a8a;
  font-style: normal;
  margin-left: .18em;
  font-size: .8em;
  display: inline-block;
  vertical-align: .04em;
  -webkit-text-fill-color: #e84a8a;
  animation: heart-beat 1.6s ease-in-out infinite;
}
@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.22); }
  30% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) { .heart-pink { animation: none; } }
.display--hero { font-size: clamp(3rem, 10.5vw, 160px); }
.display--xl   { font-size: clamp(3.4rem, 15vw, 224px); line-height: .85; letter-spacing: -.03em; }
.display--lg   { font-size: clamp(2.8rem, 9vw, 138px); line-height: .92; }
.display--md   { font-size: clamp(2.5rem, 7.2vw, 108px); line-height: .96; letter-spacing: -.015em; }
.display--sm   { font-size: clamp(2.3rem, 6.2vw, 100px); line-height: .98; letter-spacing: -.015em; }
.display--ink-light { color: var(--cream); }

.lede {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 1.9vw, 22px); line-height: 1.65; color: var(--green);
}
.prose {
  font-family: var(--sans); font-size: 16.5px; line-height: 1.75; color: var(--text);
}
.section--ink .prose { color: #c9c3b3; }

.rule { width: 56px; height: 1px; background: var(--gold); border: 0; margin: 0; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold-dark);
  transition: gap .4s cubic-bezier(.2,.7,.2,1), color .3s ease;
}
.link-arrow::after { content: ""; width: 32px; height: 1px; background: var(--gold); transition: width .4s cubic-bezier(.2,.7,.2,1); }
.link-arrow:hover { color: var(--ink); }
.link-arrow:hover::after { width: 48px; }

/* Stats row */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 380px; }
.stat__num { font-family: var(--display); font-size: clamp(26px, 3vw, 32px); color: var(--green); }
.stat__label { font-family: var(--sans); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dark); margin-top: 6px; }

/* ---------- 5. Navigation (injected by main.js) ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 12px var(--gutter);
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .6s cubic-bezier(.2,.7,.2,1), padding .5s cubic-bezier(.2,.7,.2,1), border-color .4s ease;
}
.nav__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.nav__group { display: flex; gap: clamp(14px, 1.5vw, 22px); }
.nav__group--right { justify-content: flex-end; }
.nav__wordmark { display: flex; flex-direction: row; align-items: center; gap: clamp(10px, 1vw, 16px); font-family: var(--brand); font-weight: 500; letter-spacing: .14em; white-space: nowrap; font-size: clamp(15px, 1.6vw, 22px); line-height: 1; transition: color .4s ease, letter-spacing .5s ease; }
.nav__logo { display: block; height: clamp(48px, 5vw, 68px); width: auto; object-fit: contain; transition: transform .4s ease; }
.nav__wordmark:hover .nav__logo { transform: scale(1.04); }
.nav__wordmark-text { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.nav__wordmark-sub { font-family: var(--sans); font-weight: 600; font-size: clamp(10px, 1vw, 13px); letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); }
/* keep it readable on light/paper-tone nav */
.nav[data-tone="paper"] .nav__wordmark-sub { color: var(--gold-dark); }
.nav__link { font-family: var(--sans); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: color .4s ease, opacity .3s ease; position: relative; }
.nav__link:hover { opacity: .65; }
.nav__link[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: currentColor; opacity: .6; }

/* tones */
.nav[data-tone="dark"]  .nav__wordmark,
.nav[data-tone="dark"]  .nav__link { color: var(--cream); }
.nav[data-tone="paper"] .nav__wordmark,
.nav[data-tone="paper"] .nav__link { color: var(--ink); }

/* solid (inner pages) + scrolled state share the green bar */
.nav[data-tone="solid"],
.nav[data-scrolled="1"] {
  background-color: var(--ink);
  padding-top: 8px; padding-bottom: 8px;
  border-bottom-color: rgba(184,149,74,.28);
}
.nav[data-tone="solid"] .nav__wordmark,
.nav[data-scrolled="1"] .nav__wordmark { color: var(--gold-light); letter-spacing: .18em; }
.nav[data-tone="solid"] .nav__link,
.nav[data-scrolled="1"] .nav__link { color: #ffffff; }
/* see-through bar while a photo hero ([data-nav-glass]) is under it; back to solid green once the page below reaches the bar */
.nav[data-glass="1"]:not([data-open="1"]) {
  background-color: color-mix(in srgb, var(--ink) 35%, transparent);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-bottom-color: rgba(239,233,216,.14);
}

/* mobile menu button */
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: inherit; }
.nav__toggle span { display: block; width: 24px; height: 1.5px; background: currentColor; margin: 5px 0; transition: transform .4s ease, opacity .3s ease; }
.nav[data-open="1"] .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav[data-open="1"] .nav__toggle span:nth-child(2) { opacity: 0; }
.nav[data-open="1"] .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- 6. Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1100ms cubic-bezier(.2,.7,.2,1), transform 1100ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--rd, 0ms);
}
[data-reveal][data-shown="1"] { opacity: 1; transform: translateY(0); }
[data-reveal-x="l"] { transform: translateX(-32px); }
[data-reveal-x="l"][data-shown="1"] { transform: translateX(0); }
[data-reveal-x="r"] { transform: translateX(32px); }
[data-reveal-x="r"][data-shown="1"] { transform: translateX(0); }
[data-reveal-rot] { transform: translateY(28px) rotate(var(--rrot, 0deg)) scale(.98); }
[data-reveal-rot][data-shown="1"] { transform: translateY(0) rotate(var(--rrot, 0deg)) scale(1); }

/* Reveal — a gentle rise + settle. Kept as a cheap 2D transform (no 3D depth)
   so the image stays sharp the whole way and the GPU never re-rasterises a
   blurred, scaled-down texture (the old translateZ fly-in caused that jank). */
[data-reveal-fwd] {
  opacity: 0;
  transform: translateY(30px) scale(.975);
  transform-origin: center bottom;
  transition: opacity 600ms ease, transform 780ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--rd, 0ms);
}
[data-reveal-fwd][data-shown="1"] { opacity: 1; transform: translateY(0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-fwd] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- 7. Marquee ---------- */
.marquee { background: var(--ink); color: var(--cream); padding: 22px 0; overflow: hidden; }
.marquee__track { display: flex; align-items: center; gap: 40px; white-space: nowrap; width: max-content; animation: marquee-l 52s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--serif); font-style: italic; font-size: 22px; }
.marquee__item-serif { font-family: var(--serif); font-style: italic; font-size: 22px; }
.marquee__item-sans  { font-family: var(--serif); font-style: italic; font-size: 22px; }
.marquee__star { color: var(--gold); }
.marquee__divider { display: inline-flex; align-items: center; gap: 14px; color: var(--gold); margin: 0 40px; opacity: .55; font-size: 11px; letter-spacing: .4em; }
@keyframes marquee-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 8. Image frames (replace Claude image-slot) ---------- */
.frame {
  position: relative; margin: 0; overflow: hidden; border-radius: 2px;
  background: linear-gradient(135deg, #e4ddc9, #d8cfb6);
  box-shadow: inset 0 0 0 1px rgba(122,98,52,.18);
  height: var(--h, 380px);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame__label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--gold-dark);
  letter-spacing: .02em;
}
.frame:has(img) .frame__label { display: none; }
.frame__caption { font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--gold-dark); margin-top: 12px; }
.frame-card { background: #fff; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,.08), 0 14px 32px -18px rgba(0,0,0,.18); }

/* ---------- 9. Hero (homepage) ---------- */
.hero { position: relative; min-height: 100vh; overflow: hidden; display: flex; }
.hero__bg { position: absolute; inset: -40px 0 0 0; will-change: transform; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(.94) brightness(.9); }
/* crossfade slideshow */
.hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s ease-in-out; }
.hero__slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; }
}
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,22,18,.72) 0%, rgba(15,22,18,.25) 16%, rgba(15,22,18,0) 38%, rgba(15,22,18,.3) 58%, rgba(15,22,18,.92) 100%); }
/* clean photo hero (no overlay text): keep top darkening for the nav, ease the rest */
.hero--clean .hero__scrim { background: linear-gradient(180deg, rgba(15,22,18,.55) 0%, rgba(15,22,18,.14) 18%, rgba(15,22,18,0) 46%, rgba(15,22,18,.16) 100%); }
.hero__caption { position: absolute; right: var(--gutter); top: clamp(120px, 22vh, 200px); max-width: 280px; color: var(--cream); text-align: right; }
.hero__caption-eyebrow { font-family: var(--sans); font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.hero__caption-quote { font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.55; text-shadow: 0 1px 18px rgba(0,0,0,.6); }
.hero__content { position: relative; align-self: flex-end; width: 100%; padding: 0 var(--gutter) clamp(72px, 14vh, 116px); color: #f6f1e6; }
.hero__kicker { font-family: var(--serif); font-style: italic; font-size: clamp(15px, 1.5vw, 19px); color: var(--gold-light); margin-bottom: 28px; letter-spacing: .01em; }
.hero__title { font-family: var(--display); font-weight: 400; font-size: clamp(2.6rem, 9.5vw, 144px); line-height: .9; letter-spacing: -.02em; text-shadow: 0 6px 36px rgba(0,0,0,.65), 0 1px 3px rgba(0,0,0,.5); }
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__cue { position: absolute; right: var(--gutter); bottom: 44px; color: #f6f1e6; font-family: var(--sans); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; display: flex; align-items: center; gap: 14px; }
.hero__cue span:first-child { opacity: .7; }
.hero__cue-line { width: 64px; height: 1px; background: var(--gold-light); }

/* ---------- 10. Two-column editorial split ---------- */
.split { display: grid; gap: clamp(40px, 6vw, 88px); align-items: start; }
.split--5-7 { grid-template-columns: 5fr 7fr; }
.split--7-5 { grid-template-columns: 7fr 5fr; }
.split--1-1 { grid-template-columns: 1fr 1fr; }
.split-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }

.founders { display: flex; gap: clamp(28px, 4vw, 56px); flex-wrap: wrap; }
.founder__name { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--ink); margin-bottom: 4px; }
.founder__role { font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); }

/* ----- About / "who we are" section ----- */
.about { align-items: start; }
.about__copy { max-width: 500px; }
.about__copy .eyebrow { margin-top: 10px; }
.about__copy .rule    { margin-top: 22px; }
.about__head {
  margin-top: 22px;
  font-size: clamp(2.4rem, 5.2vw, 76px);
  line-height: 1.04; letter-spacing: -.018em;
}
.about__lede   { margin-top: 20px; max-width: 32ch; }
.about__prose  { margin-top: 18px; max-width: 50ch; }
.about__founders { margin-top: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.about__founders .founder__name { font-size: 22px; }

/* portrait */
.about__figure { --rrot: -1.6deg; transform-origin: center; }
.about__figure .frame {
  height: clamp(360px, 42vw, 460px);
  border-radius: 3px;
  background: #f4efe2;
}
.about__figure .frame img { transform: scale(1.02); }
.about__figure .frame__caption { margin-top: 16px; }

@media (max-width: 1024px) {
  .about { align-items: start; }
  .about__figure { margin-top: 8px; order: -1; --rrot: 0deg; }
  .about__figure .frame { height: clamp(380px, 70vw, 520px); }
}
@media (max-width: 560px) {
  .about__founders { grid-template-columns: 1fr 1fr; gap: 16px 14px; }
}

/* ---------- 11. Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3.4vw, 48px); align-items: start; }
.service__num { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--gold); }
.service__title { font-family: var(--display); font-weight: 500; font-size: clamp(28px, 2.9vw, 38px); color: var(--ink); letter-spacing: -.01em; }
.service__head { display: flex; align-items: baseline; gap: 18px; margin-top: 26px; }
.service p { margin-top: 16px; font-size: 15.5px; line-height: 1.7; color: var(--text); }
/* gentle, intentional offset so the row isn't a flat box grid (middle drops, never overlaps the heading) */
.service--down { margin-top: 48px; }

/* Polaroid wrapper */
.polaroid {
  position: relative;
  background: #fff;
  padding: 10px 10px 52px;
  transform: rotate(var(--pol-rot, 0deg));
  box-shadow:
    0 1px 2px rgba(0,0,0,.08),
    0 4px 12px rgba(0,0,0,.10),
    0 24px 48px -16px rgba(0,0,0,.28);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
  z-index: 1;
}
.polaroid:hover {
  transform: rotate(0deg) scale(1.03) translateY(-8px);
  box-shadow:
    0 2px 4px rgba(0,0,0,.08),
    0 8px 28px rgba(0,0,0,.14),
    0 44px 72px -22px rgba(0,0,0,.32);
  z-index: 2;
}
/* board pin image */
.polaroid__pin {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  z-index: 4;
  pointer-events: none;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.32));
}

/* photo frames with scroll parallax + hover lift */
.frame--svc {
  display: block; position: relative; overflow: hidden;
  height: clamp(340px, 30vw, 430px); border-radius: 0;
  box-shadow: none;
  transition: none;
}
.frame--svc img {
  position: absolute; inset: -8% 0 auto 0; left: 0;
  width: 100%; height: 116%; object-fit: cover;
  will-change: transform;
}
.frame--svc::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,46,37,0) 55%, rgba(31,46,37,.32) 100%);
  opacity: .8; transition: opacity .45s ease;
}
.polaroid:hover .frame--svc::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .frame--svc img { inset: 0; height: 100%; transform: none !important; }
  .polaroid { transform: none !important; }
}

/* ---------- 12. Gallery mosaic ---------- */
.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: start; perspective: 1200px; }
.mosaic > * { min-width: 0; }

/* ----- Gallery section: themed colour + live captions ----- */
.gallery-section { position: relative; overflow: hidden; }
/* soft festive colour wash behind the album */
.gallery-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60% 50% at 12% 8%, rgba(232,74,138,.10), transparent 70%),
    radial-gradient(55% 45% at 88% 18%, rgba(244,196,48,.12), transparent 70%),
    radial-gradient(60% 55% at 75% 95%, rgba(74,157,79,.10), transparent 72%);
}
.gallery-section .container { position: relative; z-index: 1; }
/* heading type matches the homepage sections above: meta lines = .rr-pre code, title = .rr-head (size value 3.8, light) */
.gallery-section .gallery-head__meta {
  font-family: var(--sans); font-style: normal; font-weight: 500;
  font-size: 1rem; line-height: 1.3; letter-spacing: .07em; text-transform: uppercase;
}
.gallery-section .gallery-head__title {
  font-weight: 300; letter-spacing: 0;
  line-height: calc(1.1em * (1 + (1 - 3.8) / 25));
  font-size: min(calc((3.8 - 1) * 1.2vw + 1rem), max(calc((3.8 - 1) * 0.012 * 1600px + 1rem), calc(3.8 * 1rem)));
}
@media screen and (max-width: 767px) {
  .gallery-section .gallery-head__meta { font-size: .81rem; }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .gallery-section .gallery-head__title { font-size: calc((3.8 - 1) * calc(.012 * min(100vh, 900px)) + 1rem); }
}

/* ----- One-screen gallery (desktop) -----
   Rows: 1 = heading (auto), 2 = flexible filler, 3 = bottom photos (auto). Sangeet/Reception span 1-2,
   Haldi spans 2-3 and stretches its photo down to the bottom-row line. Photo heights (--fh1/--fh2)
   shrink on short screens so heading + photos + labels fit under the nav. */
.mosaic { --fh1: 340px; --fh2: 320px; }
@media (min-width: 1025px) {
  /* content sits at the section's bottom so the spare height becomes a gap under the services
     section: once the photo labels are in view, "Let's plan your safar" is already off screen */
  .gallery-section { padding-block: 56px 24px; display: flex; flex-direction: column; justify-content: flex-end; }
  .gallery-section > .container { width: 100%; }
  .mosaic {
    grid-template-rows: auto 1fr auto;
    --fh1: min(340px, calc((100vh - 262px) * .515));
    --fh2: min(320px, calc((100vh - 262px) * .485));
  }
  .gallery-intro { align-self: start; }
  .gallery-intro .split-head { flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 14px !important; }
  .gallery-intro .gallery-head__meta { font-size: .8rem; }
  .gallery-intro .gallery-head__title { font-size: clamp(28px, 2.5vw, 37px); margin-bottom: 0 !important; }   /* 37px max keeps each line on one line in the 427px column */
  .mosaic__tall { align-self: stretch; display: flex; flex-direction: column; }
  .mosaic__tall .frame { flex: 1 1 auto; height: auto; min-height: 0; }
  .mosaic__tall .frame img { position: absolute; inset: 0; }
}
@media (max-width: 1024px) {
  .mosaic > .gallery-intro { grid-column: 1 / -1 !important; }
}
/* One section per screen: services and gallery are each at least one screen tall under the fixed
   nav (--nav-h is set by JS from the compact nav), so the next section never peeks in; the spare
   height sits at each section's bottom and becomes the gap between them. */
@media (min-width: 768px)  { .rr-comp { min-height: calc(100vh - var(--nav-h, 73px)); } }
@media (min-width: 1025px) { .gallery-section { min-height: calc(100vh - var(--nav-h, 73px)); } }

/* image gets a warm tint + lift on hover */
.mosaic .frame { transition: transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s ease; }
.mosaic .frame::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .55s ease;
  background: linear-gradient(180deg, transparent 40%, rgba(31,46,37,.55));
}
.mosaic > *:hover .frame { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(31,46,37,.55); }
.mosaic > *:hover .frame::after { opacity: 1; }
.mosaic > *:hover .frame img { transform: scale(1.05); }
.mosaic .frame img { transition: transform .9s cubic-bezier(.2,.7,.2,1); }

/* script label straddling each photo's bottom edge — cream on the photo, green below
   (same treatment as the services .rr-comp__tag). The cap is pulled up by half the tag's
   box plus --lift so the colour split lands exactly on the photo edge. */
.gallery-cap {
  --lift: .12em;
  position: relative; z-index: 2;
  display: flex; justify-content: center;
  font-size: min(5.2vw, 80px); line-height: 1;   /* same size as .rr-comp__tag */
  margin-top: calc(-.56em - var(--lift));
  pointer-events: none;
}
@media (max-width: 767px) {
  .gallery-cap { font-size: 10.4vw; }
}
.gallery-cap__tag {
  display: inline-block; padding: .06em .15em; white-space: nowrap;
  font-family: var(--script); font-weight: 400; line-height: 1;
  background: linear-gradient(to bottom,
    #f7f6ed 0%, #f7f6ed calc(50% + var(--lift)), #133733 calc(50% + var(--lift)), #133733 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
/* follow the photo's hover lift so the split stays on the edge */
.mosaic > *:hover .gallery-cap__tag { transform: translateY(-6px); }
/* soft shade along the photo's bottom edge so the cream half reads on light photos */
.mosaic .frame::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(10, 22, 20, .55) 0%, rgba(10, 22, 20, .22) 14%, rgba(10, 22, 20, 0) 30%);
}
.gallery-cap__msg {
  margin-top: 7px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(14px, 1.15vw, 16px); line-height: 1.45;
  color: #161616; max-width: 34ch;
}
/* live "breathing" reveal of each caption line */
[data-reveal-fwd] .gallery-cap { opacity: 0; transform: translateY(10px); }
[data-reveal-fwd][data-shown="1"] .gallery-cap {
  opacity: 1; transform: translateY(0);
  transition: opacity .7s ease var(--rd, 0ms), transform .7s cubic-bezier(.2,.7,.2,1) var(--rd, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .gallery-cap__tag { animation: none; }
  [data-reveal-fwd] .gallery-cap { opacity: 1 !important; transform: none !important; }
}

/* ---------- 12b. "Currently operating in" locales ----------
   Dressed like the homepage clone sections: cream ground, Jost eyebrow (.rr-pre), Newsreader heading
   (.rr-head), EB Garamond line (.rr-large) under the logos, script place names overlapping each disc.
   Desktop: exactly one screen under the nav with the content centred. */
.locales-section { position: relative; overflow: hidden; background: #f7f6ed; color: #133733; }
/* section-scoped selectors: the shared .rr-pre / .rr-large rules later in this file set their own margins */
.locales__head { text-align: center; margin: 0 auto clamp(36px, 7vh, 80px); }
.locales-section .locales__eyebrow { margin: 0 0 .9rem; }
.locales-section .locales__title { margin: 0; }
.locales {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(40px, 9vw, 150px);
}
.locale { display: flex; flex-direction: column; align-items: center; text-align: center; }
.locale__disc {
  width: clamp(150px, min(20vw, 34vh), 300px); aspect-ratio: 1;
  display: grid; place-items: center; border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #ffffff, #fbf8ee 70%);
  border: 1px solid rgba(19, 55, 51, .14);
  box-shadow: 0 30px 60px -34px rgba(19, 55, 51, .45), inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease, border-color .4s ease;
}
.locale__disc img {
  width: 58%; height: 58%; object-fit: contain;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
/* script name tucked over the disc's bottom edge, like the photo labels */
.locales-section .locale__name {
  position: relative; z-index: 1; margin-top: -.42em;
  /* script swashes draw past the glyph box; the padding keeps them inside it so nothing is
     clipped when the hover transform lifts the name onto its own layer */
  padding: .08em .4em .18em;
  font-family: var(--script); font-weight: 400; font-size: min(4.2vw, 64px); line-height: 1;
  letter-spacing: 0; text-transform: none; color: #133733; white-space: nowrap;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.locale:hover .locale__disc {
  transform: translateY(-6px);
  box-shadow: 0 40px 70px -34px rgba(19, 55, 51, .5), inset 0 1px 0 rgba(255,255,255,.9);
  border-color: rgba(19, 55, 51, .28);
}
.locale:hover .locale__disc img { transform: scale(1.06); }
.locale:hover .locale__name { transform: translateY(-6px); }
.locales-section .locales__sub { margin: clamp(32px, 7vh, 80px) auto 0; max-width: 62ch; }
@media (min-width: 1025px) {
  .locales-section {
    min-height: calc(100vh - var(--nav-h, 73px)); padding-block: 56px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .locales-section > .container { width: 100%; }
}
@media (max-width: 767px) {
  .locales-section .locale__name { font-size: 9vw; }
  .locale__disc { width: clamp(128px, 36vw, 170px); }
}

/* ============================================================
   12. "Who we are" — festive Indian wedding treatment
   (typewriter heading, marigold garland, framed mandap,
    colourful accents + scroll motion)
   ============================================================ */
.about-section { position: relative; overflow: hidden; }
.about-section .about { position: relative; z-index: 1; align-items: center; }

/* warm colour wash behind the portrait */
.about-glow {
  position: absolute; right: -8%; top: 4%; width: 52%; height: 92%;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(closest-side, rgba(214,51,108,.12), transparent 70%) right 30%,
    radial-gradient(closest-side, rgba(242,169,59,.16), transparent 72%) 60% 80%;
  background-repeat: no-repeat;
  filter: blur(8px);
}

/* drifting flower glyphs */
.about-petal {
  position: absolute; z-index: 0; pointer-events: none;
  font-size: clamp(28px, 4vw, 54px); line-height: 1;
  opacity: .16; user-select: none;
}
.about-petal--1 { left: 3%;  top: 16%; color: var(--saffron); animation: petal-float 11s ease-in-out infinite; }
.about-petal--2 { left: 46%; bottom: 8%; color: var(--rose);  animation: petal-float 14s ease-in-out infinite reverse; }
@keyframes petal-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-18px) rotate(14deg); }
}

/* eyebrow gets a festive tint */
.about__eyebrow { color: var(--rose); }

/* ornamental divider under the eyebrow */
.ornament { display: flex; align-items: center; gap: 14px; margin-top: 18px; max-width: 220px; }
.ornament__line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.ornament__line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament__mark { color: var(--saffron); font-size: 13px; line-height: 1; }

/* ---- Typewriter heading ---- */
.about__head {
  margin-top: 24px;
  min-height: 2.1em;            /* reserve two lines, avoid layout jump */
}
.about__head .tw, .about__head em { white-space: pre-wrap; }
.about__head em {
  font-style: italic;
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
}
.tw-caret {
  display: inline-block; width: 3px; height: .9em;
  margin-left: .04em; vertical-align: -.08em; border-radius: 2px;
  background: linear-gradient(var(--rose), var(--saffron));
  animation: tw-blink .85s steps(1) infinite;
}
@keyframes tw-blink { 50% { opacity: 0; } }

/* highlighted phrase in the lede */
.about__hl {
  font-style: italic;
  color: var(--gold-dark);
}

/* ---- Founders: aligned, with a gold accent rule ---- */
.about__founders { margin-top: 40px; gap: 22px 20px; }
.about__founders .founder { position: relative; padding-top: 16px; }
.about__founders .founder::before {
  content: ""; position: absolute; top: 0; left: 0; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--rose));
  transition: width .45s cubic-bezier(.2,.7,.2,1);
}
.about__founders .founder:hover::before { width: 52px; }
.about__founders .founder__name {
  font-size: 22px; transition: color .35s ease;
}
.about__founders .founder:hover .founder__name { color: var(--rose); }
.about__founders .founder__role { color: var(--gold-dark); margin-top: 2px; }

/* ---- Framed reception photo — show the whole image, no harsh crop ---- */
.about__figure { --rrot: -1.4deg; position: relative; }
.about__figure .frame.about__frame {
  height: auto;
  aspect-ratio: 5 / 4;              /* taller card so the photo fills the column (gentle crop) */
  padding: 12px; background: #fdfaf2;
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(184,149,74,.45),
    0 2px 4px rgba(31,46,37,.10),
    0 30px 56px -26px rgba(31,46,37,.55);
}
.about__figure .frame.about__frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%;
  border-radius: 2px; transform: none;
}
/* gold corner brackets for a framed-photo feel */
.about__corner { position: absolute; width: 22px; height: 22px; z-index: 2; pointer-events: none; }
.about__corner--tl { top: 18px;    left: 18px;    border-top: 2px solid var(--gold);   border-left: 2px solid var(--gold); }
.about__corner--tr { top: 18px;    right: 18px;   border-top: 2px solid var(--gold);   border-right: 2px solid var(--gold); }
.about__corner--bl { bottom: 18px; left: 18px;    border-bottom: 2px solid var(--gold);border-left: 2px solid var(--gold); }
.about__corner--br { bottom: 18px; right: 18px;   border-bottom: 2px solid var(--gold);border-right: 2px solid var(--gold); }
.about__figure .frame__caption { margin-top: 18px; color: var(--gold-dark); }

/* ---- Intro statement — 1:1 clone of the reference Squarespace fluid-engine section ----
   Palette (from the reference theme): bg hsl(54,38.46%,94.9%) = #f7f6ed,
   text hsl(173.33,48.65%,14.51%) = #133733, underline hsl(95,15.38%,45.88%) = #728763.
   Fonts: Newsreader 300 ≈ Beaufort Light (headings), EB Garamond ≈ Allrounder Antiqua /
   Adobe Garamond Pro (p), Jost 500 ≈ futura-pt (pre>code). */
.rr-intro { background: #f7f6ed; color: #133733; overflow: hidden; }

/* fluid-engine grid: mobile = 8 cols, desktop = 24 cols; rows per section via --rows-m / --rows-d */
.rr-grid--intro  { --rows-m: 25; --rows-d: 16; }
.rr-grid--recipe { --rows-m: 47; --rows-d: 36; }
.rr-grid {
  --grid-gutter: 6vw;
  --cell-max-width: calc(1600px / 8);
  display: grid; position: relative;
  grid-template-rows: repeat(var(--rows-m), minmax(24px, auto));
  grid-template-columns:
    minmax(var(--grid-gutter), 1fr)
    repeat(8, minmax(0, var(--cell-max-width)))
    minmax(var(--grid-gutter), 1fr);
  row-gap: 0; column-gap: 0;
  overflow-x: hidden; overflow-x: clip;
}
@media (min-width: 768px) {
  .rr-grid {
    --grid-gutter: 2vw;
    --cell-max-width: calc(1600px / 24);
    --row-height-scaling-factor: 0.0215;
    --container-width: min(1600px, calc(100vw - 2vw * 2));
    grid-template-rows: repeat(var(--rows-d), minmax(calc(var(--container-width) * var(--row-height-scaling-factor)), auto));
    grid-template-columns:
      minmax(var(--grid-gutter), 1fr)
      repeat(24, minmax(0, var(--cell-max-width)))
      minmax(var(--grid-gutter), 1fr);
  }
}

/* blocks (= .fe-block > .sqs-block): flex column, no padding, own stacking context */
.rr-block {
  display: flex; flex-direction: column; height: 100%; width: 100%;
  box-sizing: border-box; padding: 0;
  position: relative; isolation: isolate;
}
.rr-block--eyebrow { grid-area: 4/2/5/10;  z-index: 12; justify-content: flex-end; }
.rr-block--head    { grid-area: 6/2/16/10; z-index: 11; justify-content: flex-start; }
.rr-block--body    { grid-area: 17/2/24/10; z-index: 6; justify-content: flex-start; }
@media (min-width: 768px) {
  .rr-block--eyebrow { grid-area: 3/10/4/18; z-index: 4; justify-content: center; }
  .rr-block--head    { grid-area: 4/5/8/23;  z-index: 3; justify-content: center; }
  .rr-block--body    { grid-area: 9/8/16/20; z-index: 2; justify-content: flex-start; }
}
/* = .sqs-html-content */
.rr-block__inner { min-height: 23px; outline: none; }
.rr-block__inner > *:first-child { margin-top: 0; }
.rr-block__inner > *:last-child  { margin-bottom: 0; }
.rr-shape-host { position: relative; }

/* heading 1: size value 3.8, line-height 1.1em * (1 + (1 - 3.8)/25), weight 400 */
.rr-head {
  font-family: 'Newsreader', 'Cormorant Garamond', 'Times New Roman', serif; font-optical-sizing: auto;
  font-weight: 300; font-style: normal; letter-spacing: 0em; text-transform: none;
  color: #133733; margin: 0; text-align: center; white-space: pre-wrap;
  line-height: calc(1.1em * (1 + (1 - 3.8) / 25));
  font-size: min(calc((3.8 - 1) * 1.2vw + 1rem), max(calc((3.8 - 1) * 0.012 * 1600px + 1rem), calc(3.8 * 1rem)));
}
/* paragraph (large): size value 1.2, line-height 1.2em, letter-spacing .01em */
.rr-large {
  font-family: 'EB Garamond', 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400; font-style: normal; letter-spacing: .01em; text-transform: none;
  color: #133733; margin: 1rem 0; text-align: center; white-space: pre-wrap;
  line-height: 1.2em;
  font-size: min(calc((1.2 - 1) * 1.2vw + 1rem), max(calc((1.2 - 1) * 0.012 * 1600px + 1rem), calc(1.2 * 1rem)));
}
.rr-large em { font-style: italic; font-weight: normal; }
/* pre > code (eyebrow + CTA): meta font, size value 1, .07em tracking, uppercase, pre line-height .7em */
.rr-pre {
  font-family: monospace, serif; font-size: 1rem; line-height: .7em; white-space: pre-wrap;
  margin: 1em 0; text-align: center; color: #133733;
}
.rr-pre code {
  font-family: 'Jost', 'Futura', 'Mulish', system-ui, sans-serif;
  font-style: normal; font-weight: 500; line-height: 1.3em; letter-spacing: .07em;
  text-transform: uppercase;
  font-size: calc((1 - 1) * 1.2vw + 1rem);
}
.rr-pre a { color: #133733; text-decoration: none; background-image: none; }
.rr-pre a:hover { color: #133733; text-decoration: none; }
@media screen and (max-width: 767px) and (orientation: portrait) {
  .rr-head  { font-size: calc((3.8 - 1) * calc(.012 * min(100vh, 900px)) + 1rem); }
  .rr-large { font-size: calc((1.2 - 1) * calc(.012 * min(100vh, 900px)) + 1rem); }
  .rr-pre code { font-size: calc((1 - 1) * calc(.012 * min(100vh, 900px)) + 1rem); }
}
@media screen and (max-width: 767px) {
  .rr-block--eyebrow .rr-pre, .rr-block--eyebrow .rr-pre code { font-size: .9em !important; }
}

/* drawn text shapes (= .TextShape-node) */
.rr-hl { text-decoration: none !important; }
.rr-shape {
  --stroke: currentcolor; --stroke-width: 1px; --stroke-linecap: square; --stroke-linejoin: bevel;
  --opacity: 1;
  position: absolute; display: block; top: 0; left: 0;
  pointer-events: none; z-index: -1; user-select: none; -webkit-user-select: none;
  opacity: 1; visibility: visible;
}
.rr-shape svg {
  position: absolute; display: block; top: 0; left: 0; width: 100%; height: 100%;
  overflow: visible; fill: none;
  stroke: var(--stroke); stroke-width: max(1px, var(--stroke-width));
  stroke-linecap: var(--stroke-linecap); stroke-linejoin: var(--stroke-linejoin);
  opacity: var(--opacity);
}

/* ---- Our Recipe — 1:1 clone of the reference "Our Recipe?" fluid-engine section ---- */
.rr-recipe { background: #f7f6ed; color: #133733; overflow: hidden; }
.rr-recipe__img1 { grid-area: 1/2/20/10;  z-index: 2; justify-content: center; }
.rr-recipe__img2 { grid-area: 22/2/34/10; z-index: 3; justify-content: center; }
.rr-recipe__head { grid-area: 21/1/25/10; z-index: 4; justify-content: flex-start; }
.rr-recipe__copy { grid-area: 35/2/43/10; z-index: 1; justify-content: flex-start; }
.rr-recipe__btn  { grid-area: 44/2/47/10; z-index: 5; justify-content: center; }
@media (min-width: 768px) {
  .rr-recipe__img1 { grid-area: 1/2/35/14;  z-index: 4; }
  .rr-recipe__img2 { grid-area: 9/15/18/23; z-index: 1; }
  .rr-recipe__head { grid-area: 3/12/8/25;  z-index: 5; justify-content: center; }
  .rr-recipe__copy { grid-area: 18/15/25/26; z-index: 2; justify-content: flex-end; }
  .rr-recipe__btn  { grid-area: 26/15/28/21; z-index: 3; justify-content: center; }
}
/* stretched fluid image blocks: fill the grid area, object-fit cover at the focal point */
.rr-block--img { min-height: 0; min-width: 0; overflow: hidden; }
.rr-img { position: relative; width: 100%; height: 100%; overflow: hidden; }
.rr-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; display: block; }
.rr-img--focal img { object-position: 50% 80.8%; }
/* scaled text: font-size is set by JS so the line exactly fills the block width */
.rr-scaled-container { display: block; width: 100%; }
.rr-scaled { display: inline-block; white-space: nowrap; line-height: 1; font-size: 100px; }
.rr-h1 {
  font-family: 'Newsreader', 'Cormorant Garamond', 'Times New Roman', serif; font-optical-sizing: auto;
  font-weight: 300; font-style: normal; letter-spacing: 0em; text-transform: none;
  color: #133733; margin: 0; padding: 0; line-height: 1; font-size: inherit !important;
  white-space: nowrap !important; position: relative; text-align: start;
}
/* heading 3: size value 1.8, line-height 1.1em * (1 + (1 - 1.8)/25), margin 2rem 0 */
.rr-h3 {
  font-family: 'Newsreader', 'Cormorant Garamond', 'Times New Roman', serif; font-optical-sizing: auto;
  font-weight: 300; font-style: normal; letter-spacing: 0em; text-transform: none;
  color: #133733; margin: 2rem 0; text-align: start; white-space: pre-wrap;
  line-height: calc(1.1em * (1 + (1 - 1.8) / 25));
  font-size: min(calc((1.8 - 1) * 1.2vw + 1rem), max(calc((1.8 - 1) * 0.012 * 1600px + 1rem), calc(1.8 * 1rem)));
}
/* primary button, medium: 1.2rem/2.4rem padding, futura-pt-style 1rem uppercase, .02em, square */
.rr-button-container { display: flex; justify-content: flex-start; text-align: left; }
.rr-button {
  display: block; box-sizing: border-box;
  font-family: 'Jost', 'Futura', 'Mulish', system-ui, sans-serif;
  font-size: calc((1 - 1) * 1.2vw + 1rem); font-weight: 400; font-style: normal;
  letter-spacing: .02em; line-height: 1.16; text-transform: uppercase; text-align: left;
  padding: 1.2rem 2.4rem; border: 0 solid #f7f6ed; border-radius: 0;
  background-color: #728763; color: #f7f6ed; text-decoration: none; cursor: pointer;
  transition: opacity .25s ease;
}
.rr-button:hover { color: #f7f6ed; opacity: .85; }
@media screen and (max-width: 767px) and (orientation: portrait) {
  .rr-h3 { font-size: calc((1.8 - 1) * calc(.012 * min(100vh, 900px)) + 1rem); }
}
@media screen and (max-width: 767px) {
  .rr-recipe .rr-block__inner, .rr-recipe .rr-h1, .rr-recipe .rr-h3 { text-align: center; }
  .rr-button-container { flex-direction: column; align-content: flex-end; }
  .rr-button { text-align: center; }
}

/* ---- Services — 1:1 clone of the reference "planning & design process" fluid-engine section ---- */
.rr-comp { background: #f7f6ed; color: #133733; overflow: hidden; padding-block: calc(1vmax / 10); }
.rr-grid--comp { --rows-m: 54; --rows-d: 35; }
.rr-comp__head   { grid-area: 4/2/6/10;   z-index: 2; justify-content: flex-start; }
.rr-comp__slides { grid-area: 6/2/27/10;  z-index: 3; justify-content: flex-start; }
.rr-comp__img1   { grid-area: 27/2/37/6;  z-index: 4; justify-content: center; }
.rr-comp__img2   { grid-area: 27/6/37/10; z-index: 5; justify-content: center; }
.rr-comp__copy   { grid-area: 39/2/52/10; z-index: 1; justify-content: flex-start; }
@media (min-width: 768px) {
  .rr-comp__head   { grid-area: 3/2/7/12;   z-index: 3; }
  .rr-comp__slides { grid-area: 8/2/var(--sl-end, 36)/12;  z-index: 2; }
  /* setupRRFit() caps the 4:5 photo so its "Planning" name stays on screen (no cap = reference) */
  .rr-comp__fig .rr-slideshow { max-height: var(--fig-max, none); }
  /* row lines come from setupRRFit() so the text column fits the screen; fallbacks = reference geometry */
  .rr-comp__img1   { grid-area: 3/13/var(--ph-end, 20)/19; z-index: 5; }
  .rr-comp__img2   { grid-area: 3/20/var(--ph-end, 20)/26; z-index: 6; }
  .rr-comp__copy   { grid-area: var(--tx-start, 22)/13/var(--tx-end, 31)/26; z-index: 1; }
}
/* two stacked scaled lines, each fit to the block width */
.rr-comp__head .rr-scaled-container + .rr-scaled-container { margin-top: 0; }
/* gallery slideshow: 4:5 stage (parent-ratio .8), slides stacked and crossfaded */
.rr-slideshow { position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; }
.rr-slide {
  position: absolute; inset: 0; overflow: hidden;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .85s cubic-bezier(.165, .84, .44, 1), visibility 0s linear .85s;
}
.rr-slide.is-active { opacity: 1; visibility: visible; transition: opacity .85s cubic-bezier(.165, .84, .44, 1), visibility 0s; }
.rr-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; display: block; }
/* text block pre: size value 1.3 (21.18px @1440, 19.04px @390 portrait) so its 1em top margin matches */
.rr-comp .rr-pre {
  margin: 1em 0 0; text-align: start;
  font-size: min(calc((1.3 - 1) * 1.2vw + 1rem), max(calc((1.3 - 1) * 0.012 * 1600px + 1rem), calc(1.3 * 1rem)));
}
.rr-comp .rr-pre a,
.rr-comp .rr-pre a:hover {
  text-decoration: underline; text-decoration-thickness: 1px; text-decoration-color: #133733;
  text-underline-offset: .2em;
}
.rr-comp .rr-h3 { text-align: start; }
/* service names inside the paragraph: quiet links that keep the line breaks */
.rr-link {
  color: inherit; text-decoration: underline; text-decoration-thickness: 1px;
  text-underline-offset: .14em; text-decoration-color: rgba(19, 55, 51, .45);
  transition: color .25s ease, text-decoration-color .25s ease;
}
.rr-link:hover { color: #728763; text-decoration-color: #728763; }
/* script service names straddling each photo's bottom edge — cream on the photo, green on the
   paper below (same split as .chero__title). The box is centred on the edge so the 50% stop lands on it. */
.rr-comp__fig { position: relative; }
.rr-comp__img1, .rr-comp__img2 { overflow: visible; }   /* .rr-img inside still clips the photo */
.rr-comp__tag {
  /* script glyphs sit low in their line box: lift the box so the photo edge crosses the
     middle of the lowercase letters, and move the colour split down by the same amount */
  --lift: .12em;
  position: absolute; left: 50%; bottom: 0; z-index: 2;
  transform: translate(-50%, calc(50% - var(--lift)));
  padding: .06em .15em; white-space: nowrap; text-decoration: none;
  font-family: var(--script); font-weight: 400; line-height: 1;
  font-size: min(5.2vw, 80px);
  background: linear-gradient(to bottom,
    #f7f6ed 0%, #f7f6ed calc(50% + var(--lift)), #133733 calc(50% + var(--lift)), #133733 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  transition: opacity .25s ease;
}
.rr-comp__tag:hover { opacity: .8; }
/* soft shade along each photo's bottom edge so the cream half of the name reads on light floors */
.rr-comp__fig .rr-slideshow::after,
.rr-comp__img1 .rr-img::after,
.rr-comp__img2 .rr-img::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(10, 22, 20, .55) 0%, rgba(10, 22, 20, .22) 14%, rgba(10, 22, 20, 0) 30%);
}
@media (max-width: 767px) {
  .rr-comp__tag { font-size: 10.4vw; }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .rr-comp .rr-pre { font-size: calc((1.3 - 1) * calc(.012 * min(100vh, 900px)) + 1rem); }
}
/* reference hides the closing line on mobile but keeps its space */
@media screen and (max-width: 767px) {
  .rr-comp__copy .rr-h3 + .rr-h3 { opacity: 0; }
}

/* ============================================================
   About page — 1:1 clone of the reference Rebecca Rose Events
   "/about" page (measured with Playwright + Firecrawl scrape,
   2026-09-11). Geometry, type scale, colours copied; Humsafar
   copy + photos. Reference sections cloned: s0 meet/apart,
   s1–s3 team, s8 close, s9 testimonial, s10 more, s11 values
   (press logos + extra team members skipped).
   Palette: bg #f7f6ed, ink #133733, sage #728763.
   ============================================================ */
.rr-about { background: #f7f6ed; color: #133733; overflow: hidden; }

/* fluid-engine grid with the reference's 11px gaps; gutter track = 2vw (6vw mobile) minus the gap */
.ra-grid {
  row-gap: 11px; column-gap: 11px;
  grid-template-columns:
    minmax(calc(var(--grid-gutter) - 11px), 1fr)
    repeat(8, minmax(0, var(--cell-max-width)))
    minmax(calc(var(--grid-gutter) - 11px), 1fr);
}
@media (min-width: 768px) {
  .ra-grid {
    grid-template-columns:
      minmax(calc(var(--grid-gutter) - 11px), 1fr)
      repeat(24, minmax(0, var(--cell-max-width)))
      minmax(calc(var(--grid-gutter) - 11px), 1fr);
  }
}

/* section paddings (Squarespace: .1 / 3.3 / 6.6 / 10 vmax) */
.ra-sec { position: relative; padding-block: .1vmax; }
.ra-sec--s { padding-block: 3.3vmax; }
.ra-sec--m { padding-block: 6.6vmax; }
.ra-sec--l { padding-block: 10vmax; }

/* type scale: --s = size value − 1  →  (size−1)·1.2vw + 1rem, capped at 1600px; portrait phones scale with vh */
/* --fit: glyph-size correction where our stand-in font draws bigger/smaller than the reference font at the same px */
.ra-t {
  --s: .2;
  font-size: calc(var(--fit, 1) * min(calc(var(--s) * 1.2vw + 1rem), max(calc(var(--s) * 19.2px + 1rem), calc((var(--s) + 1) * 1rem))));
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .ra-t { font-size: calc(var(--fit, 1) * (var(--s) * .012 * min(100vh, 900px) + 1rem)); }
}
.ra-h1 { --s: 2.8; }
.ra-h2 { --s: 1.8; }
.ra-h3 { --s: .8; }
/* headings: Newsreader 300 (≈ Beaufort), line-height 1.1em·(1 + (1 − size)/25) */
.ra-serif {
  font-family: 'Newsreader', 'Cormorant Garamond', 'Times New Roman', serif; font-optical-sizing: auto;
  font-weight: 300; font-style: normal; letter-spacing: 0; text-transform: none;
  line-height: calc(1.1em * (1 - var(--s) / 25));
  margin: 2rem 0; white-space: pre-wrap;
}
.ra-serif em { font-style: italic; }
.ra-script {
  font-family: var(--script); font-weight: 400; font-style: normal; letter-spacing: 0;
  line-height: calc(1.1em * (1 - var(--s) / 25));
  margin: 2rem 0; white-space: pre-wrap;
}
/* paragraphs: EB Garamond (≈ Allrounder Antiqua), size 1.2, line-height 1.2em */
.ra-body {
  --s: .2;
  font-family: 'EB Garamond', 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400; letter-spacing: .01em; line-height: 1.2em; margin: 1rem 0; white-space: pre-wrap;
}
.ra-body--13 { --s: .3; }
.ra-body em { font-style: italic; }
.ra-quote {
  font-family: 'EB Garamond', 'Cormorant Garamond', serif; font-size: 1rem; line-height: 1.2em;
  letter-spacing: .01em; margin: 0; color: #728763;
}
.ra-quote em { font-style: italic; }
.rr-about .rr-block > :first-child,
.rr-about .rr-block__inner > :first-child { margin-top: 0; }
.rr-about .rr-block > :last-child,
.rr-about .rr-block__inner > :last-child { margin-bottom: 0; }

/* full-bleed section background photo */
.ra-bg { position: absolute; inset: 0; overflow: hidden; }
.ra-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; display: block; }

/* ---- s0: Meet + What Sets Us Apart ---- */
/* first row sits 11.7px under the fixed solid nav (reference: 84.7px under its 82px header @1470) */
.ra-meet { padding-top: calc(clamp(40px, 4.2vw, 56px) + 17px + 11.7px); }
@media (max-width: 767px) {
  .ra-meet { padding-top: calc(var(--nav-h, 146px) + 11px); }
  .ra-sec--l { padding-block: calc(10vmax + 11px); } /* reference phone: 95px @844 */
}
.ra-meet__photo { grid-area: 4/2/17/10;  z-index: 3; justify-content: center; }
.ra-meet__head  { grid-area: 1/2/4/10;   z-index: 5; justify-content: flex-start; }
.ra-meet__box   { grid-area: 17/1/42/11; z-index: 6; justify-content: flex-start; }
.ra-meet__apart { grid-area: 42/2/44/10; z-index: 8; justify-content: flex-start; }
@media (min-width: 768px) {
  .ra-meet__photo { grid-area: 4/13/26/25; z-index: 1; }
  .ra-meet__head  { grid-area: 2/4/4/24;   z-index: 3; }
  .ra-meet__box   { grid-area: 4/3/28/14;  z-index: 2; justify-content: center; }
  .ra-meet__apart { grid-area: 26/4/40/24; z-index: 5; }
}
.ra-meet__title { --s: 6.684; color: #133733; line-height: 1; margin: 0; text-wrap: balance; }
/* reference line fills its 20-col block; Newsreader (readable serif, swapped in for the illegible script) runs wider than Allison, so size down to the block width */
@media (min-width: 768px) { .ra-meet__title { white-space: nowrap; font-size: min(5.4vw, 88px); } }
@media screen and (max-width: 767px) and (orientation: portrait) { .ra-meet__title { --s: 2.28; } }
/* sage box: h3 size, padding 2.6em sides (measured 78px @1470, 63px @390) */
.ra-meet__box {
  --s: .8;
  background: #728763; color: #f7f6ed;
  padding: .9em 2.6em;
}
@media (min-width: 768px) { .ra-meet__box { padding: 1.2em 2.6em; } }
.ra-meet__box h3 { font-size: 1em; color: #f7f6ed; margin: 0; }
.ra-meet__box h3 + h3 { margin-top: calc(1.1em * (1 - .8 / 25)); } /* one blank line between statements */
/* ink box: centred cream copy */
.ra-meet__apart {
  background: #133733; color: #f7f6ed; text-align: center;
  padding: 17px 20px;
}
@media (min-width: 768px) { .ra-meet__apart { padding: 4.56vw 5.1vw; } }
.ra-meet__apart .ra-script, .ra-meet__apart .ra-body { color: #f7f6ed; text-align: center; }
/* EB Garamond draws ~1.19× smaller than the reference's Allrounder Antiqua at the same px (glyph width 6221 vs 7409 @100px) — scale up to match its visible size */
.ra-meet__apart .ra-body { --fit: 1.19; }

/* ---- s1–s3: Meet the Team ---- */
.ra-team__head { grid-area: 3/2/5/10; z-index: 1; justify-content: flex-start; }
@media (min-width: 768px) { .ra-team__head { grid-area: 3/9/7/19; } }
.ra-team__title { color: #133733; text-align: center; margin: 0 0 calc(2rem + 1.1em * (1 - 2.8 / 25)); } /* reference keeps an empty h1 line under the title */

.ra-a__photo, .ra-b__photo, .ra-c__photo { z-index: 2; justify-content: center; }
.ra-a__name,  .ra-b__name,  .ra-c__name  { z-index: 3; justify-content: flex-end; }
.ra-a__quote, .ra-b__quote, .ra-c__quote { z-index: 4; justify-content: flex-start; }
.ra-a__bio,   .ra-b__bio,   .ra-c__bio   { z-index: 5; justify-content: flex-start; }
/* match the reference's visible type size (canvas glyph width @100px, ours vs theirs):
   name Newsreader 300 5303 vs Beaufort 4964 → .936; quote EB Garamond italic 4417 vs Allrounder Italic 5130 → 1.16; bio Newsreader 300 5303 vs Allrounder 5525 → 1.042 */
.ra-a__name .ra-t, .ra-b__name .ra-t, .ra-c__name .ra-t { --fit: .936; }
.ra-a__quote .ra-quote, .ra-b__quote .ra-quote, .ra-c__quote .ra-quote { font-size: 1.16rem; }
/* bios use the homepage "Three desks" copy face (.rr-h3: Newsreader 300); user asked for bigger than the reference-matched 1.042 */
.ra-a__bio .ra-body, .ra-b__bio .ra-body, .ra-c__bio .ra-body {
  --fit: 1.2;
  font-family: 'Newsreader', 'Cormorant Garamond', 'Times New Roman', serif; font-optical-sizing: auto;
  font-weight: 400; letter-spacing: normal; /* 300 read paler than the EB Garamond 400 copy in the other sections */
}
.ra-a__photo { grid-area: 6/2/20/10; }
.ra-a__name  { grid-area: 20/2/22/10; }
.ra-a__quote { grid-area: 22/2/25/10; }
.ra-a__bio   { grid-area: 25/2/41/10; }
.ra-b__photo, .ra-c__photo { grid-area: 1/2/15/10; }
.ra-b__name,  .ra-c__name  { grid-area: 15/2/17/10; }
.ra-b__quote, .ra-c__quote { grid-area: 17/2/19/10; }
.ra-b__bio   { grid-area: 19/2/32/10; }
.ra-c__bio   { grid-area: 19/2/34/10; }
@media (min-width: 768px) {
  .ra-a__name, .ra-b__name, .ra-c__name { justify-content: flex-start; }
  .ra-a__photo { grid-area: 6/4/18/11; }
  .ra-a__name  { grid-area: 6/12/8/25; }
  .ra-a__quote { grid-area: 7/12/9/23; }
  .ra-a__bio   { grid-area: 9/12/18/24; } /* bios end on the photo's bottom row so text + photo finish level */
  .ra-b__photo { grid-area: 1/17/14/24; }
  .ra-b__name  { grid-area: 1/4/3/17; }
  .ra-b__quote { grid-area: 2/4/3/15; }
  .ra-b__bio   { grid-area: 4/4/14/15; }
  .ra-c__photo { grid-area: 2/4/14/11; }
  .ra-c__name  { grid-area: 2/12/3/25; }
  .ra-c__quote { grid-area: 3/12/4/23; }
  .ra-c__bio   { grid-area: 4/12/14/23; }
}
.rr-about .ra-h3 { color: #133733; text-align: left; margin: 0; }
/* no real headshots yet — framed initials stand in for the photo block, same footprint */
.rr-team__avatar {
  position: relative; width: 100%; height: 100%; min-height: 140px;
  display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(165deg, #1c3733, #0f2320);
}
.rr-team__avatar span {
  font-family: 'Newsreader', serif; font-style: italic; font-weight: 400;
  font-size: clamp(44px, 5vw, 72px); color: #d8cf9e; opacity: .82;
}

/* ---- s8: closing statement ---- */
.ra-close__img  { grid-area: 1/2/16/10;  z-index: 7; justify-content: center; }
.ra-close__copy { grid-area: 17/2/41/10; z-index: 6; justify-content: flex-start; }
@media (min-width: 768px) {
  .ra-close__img  { grid-area: 1/2/15/12; }
  .ra-close__copy { grid-area: 1/14/16/26; }
}
.ra-close .ra-h2 { color: #133733; text-align: left; --fit: .936; }  /* Newsreader draws ~7% bigger than the reference's Beaufort */
.ra-close .ra-body { color: #133733; --fit: 1.19; }                  /* EB Garamond draws ~1.19× smaller than Allrounder Antiqua */
.ra-cta { text-align: left; }
.rr-about .ra-cta a {
  color: #133733; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .2em;
}
.rr-about .ra-cta a:hover { color: #728763; }

/* ---- s9: testimonial on a full-bleed photo ---- */
.ra-quote-sec { background: #133733; color: #fff; }
/* black tint over the whole photo (user: "put the black tint behind this img so text is fully visible"),
   deepening toward the bottom where the quote sits over the white drapes and sofas */
.ra-quote-sec .ra-bg img { object-position: 50% 100%; } /* keep the dark lawn under the quote */
.ra-quote-sec .ra-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, .5) 55%, rgba(0, 0, 0, .7) 100%),
    rgba(0, 0, 0, .5); /* .38 base still left the quote faint over the white drapes */
}
.ra-quote__text { grid-area: 10/2/20/10; z-index: 1; justify-content: flex-end; }
@media (min-width: 768px) { .ra-quote__text { grid-area: 9/5/16/23; } }
.ra-quote__text h1 { color: #fff; text-align: center; text-shadow: 0 1px 14px rgba(10, 22, 20, .5); }
.ra-quote__text .ra-serif { --s: .8; }           /* quote at h3 size */
.ra-quote__text .ra-quote__sig { --s: 1.8; margin-top: 1rem; } /* signature at h2 size */

/* ---- s10: want to know more ---- */
.ra-more { background: #133733; color: #fff; }
.ra-more__head   { grid-area: 3/2/5/10; z-index: 1; justify-content: flex-start; }
.ra-more__rule1  { grid-area: 5/2/6/10; }
.ra-more__link1  { grid-area: 6/2/7/10; }
.ra-more__arrow1 { grid-area: 6/2/7/10; }
.ra-more__rule2  { grid-area: 7/2/8/10; }
.ra-more__link2  { grid-area: 8/2/9/10; }
.ra-more__arrow2 { grid-area: 8/2/9/10; }
.ra-more__rule3  { grid-area: 9/2/10/10; }
@media (min-width: 768px) {
  .ra-more__head   { grid-area: 3/2/5/17; }
  .ra-more__rule1  { grid-area: 4/2/6/26; }
  .ra-more__link1  { grid-area: 5/2/7/17; }
  .ra-more__arrow1 { grid-area: 5/21/7/26; }
  .ra-more__rule2  { grid-area: 6/2/8/26; }
  .ra-more__link2  { grid-area: 7/2/9/17; }
  .ra-more__arrow2 { grid-area: 7/21/9/26; }
  .ra-more__rule3  { grid-area: 8/2/10/26; }
}
.ra-more .ra-h2 { color: #fff; text-align: left; margin: 0; }
.ra-rule { justify-content: center; z-index: 2; }
.ra-rule::before { content: ""; display: block; height: 1px; background: #fff; }
.ra-more__link1, .ra-more__link2, .ra-more__arrow { justify-content: center; z-index: 4; }
.ra-more .ra-h3 { color: #fff; margin: 0; }
.ra-more__arrow .ra-h3 { text-align: right; }
.ra-more a {
  color: #fff; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .2em;
  transition: opacity .25s ease;
}
.ra-more a:hover { opacity: .7; }

/* ---- s11: values box on a full-bleed photo ---- */
.ra-values__box  { grid-area: 1/2/20/10; z-index: 1; background: #728763; }
.ra-values__mark { grid-area: 3/2/6/10;  z-index: 2; justify-content: center; }
.ra-values__text { grid-area: 7/3/18/9;  z-index: 3; justify-content: flex-start; }
@media (min-width: 768px) {
  .ra-values__box  { grid-area: 2/6/15/22; }
  .ra-values__mark { grid-area: 3/12/7/16; } /* user: "make the logo bigger" (was 4/13/7/15) */
  .ra-values__text { grid-area: 7/8/11/20; }
}
.ra-values__mark .rr-img img { object-fit: contain; }
.rr-about .ra-values .ra-h3 { color: #f7f6ed; text-align: center; }
/* reference box uses Beaufort 400 (licensed); Gowun Batang is the closest free match — light, wide, low-contrast, tiny serifs */
.rr-about .ra-values .ra-h3 { font-family: 'Gowun Batang', 'Newsreader', serif; font-weight: 400; --fit: .92; } /* glyph width 5397 vs Beaufort 4964 @100px */

/* festive draped bunting (toran swag) — hung corner to corner */
.section--bunting { padding-top: clamp(96px, 12vw, 160px); }
.bunting {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--maxw);
  padding: 0 var(--gutter);
  z-index: 2; pointer-events: none;
  transform-origin: top center;
  animation: bunting-sway 6s ease-in-out infinite;
}
.bunting__svg {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 4px 4px rgba(0,0,0,.14));
}
@keyframes bunting-sway {
  0%, 100% { transform: translateX(-50%) rotate(-.5deg); }
  50%      { transform: translateX(-50%) rotate(.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .bunting { animation: none; }
}

@media (max-width: 1024px) {
  .about__frame { aspect-ratio: 3 / 2; }
  .about__frame img { object-position: 50% 50%; }
  .about-petal { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .about-petal, .about__garland, .tw-caret { animation: none; }
}

/* ============================================================
   18. Gallery — "The Album" (festive chaptered edition)
   Photo hero with a curved hem, light gradient album area,
   colour-coded chapters that walk the wedding, white frames,
   and a click-to-zoom lightbox.
   ============================================================ */

/* ---- Filmstrip banner: five edge-to-edge photos (noonmoon-style) ---- */
.galx-strip {
  position: relative; z-index: 1;
  display: flex; gap: 0;
  height: clamp(220px, 30vw, 440px);
  background: var(--ink);
}
.galx-strip__item { flex: 1; min-width: 0; margin: 0; overflow: hidden; position: relative; }
.galx-strip__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(1.04);
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.galx-strip__item:hover img { transform: scale(1.06); }

/* ---- Title panel beneath the strip, on the page's own paper tone ---- */
.galx-titletop {
  position: relative; z-index: 1; text-align: center;
  padding: clamp(36px, 5.6vw, 68px) var(--gutter) clamp(44px, 6vw, 76px);
}
.galx-crumb {
  font-family: var(--sans); font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-light); display: inline-flex; gap: 12px; align-items: center;
}
.galx-crumb a { color: #f1ece0; opacity: .85; transition: opacity .3s ease; }
.galx-crumb a:hover { opacity: 1; }
.galx-crumb span { opacity: .55; }
.galx-crumb--plain { color: var(--gold-dark); }
.galx-crumb--plain a { color: var(--ink); opacity: .68; }
.galx-crumb--plain a:hover { opacity: 1; }
.galx-crumb--plain span { opacity: .45; }
.galx-titletop .ornament { margin: 18px auto 0; }
.galx-titletop__icon {
  display: block; margin: 0 auto;
  width: clamp(64px, 9vw, 100px); height: auto;
  opacity: .82;
}
.galx-kicker {
  display: block; margin-top: 20px;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: .32em; text-transform: uppercase; color: var(--gold-dark);
}
.galx-bigtitle {
  display: block; margin: -0.46em 0 0;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(3.4rem, 13.5vw, 190px); line-height: .88; letter-spacing: .04em;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 51%, var(--ink) 51%, var(--ink) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 3px 14px rgba(0,0,0,.30));
}
.galx-bigtitle--plain {
  margin: 14px 0 0;
  font-optical-sizing: auto; font-weight: 300; letter-spacing: 0;
  font-size: clamp(2.6rem, 7.4vw, 104px); line-height: .96;
  background: none; -webkit-text-fill-color: currentColor; color: var(--ink);
  filter: none;
}
.galx-sub {
  font-family: var(--serif); font-style: italic; color: #14110d;
  font-size: clamp(15px, 1.7vw, 21px); line-height: 1.55;
  margin: clamp(10px, 1.4vw, 18px) auto 0; max-width: 48ch;
}
.galx-sub__hot  { color: var(--saffron);   font-weight: 500; }
.galx-sub__gold { color: var(--gold-dark); }

/* ---- Album area: light gradient + festive blooms ---- */
.galx {
  position: relative; z-index: 0; overflow: hidden;
  padding-top: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(40px, 6vw, 80px);
  background:
    linear-gradient(180deg, #f8f3e7 0%, var(--paper) 46%, #f4eedf 100%);
}
.galx::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(42% 30% at 8% 6%,  rgba(233,138,21,.10), transparent 70%),
    radial-gradient(40% 26% at 92% 22%, rgba(192,40,111,.09), transparent 72%),
    radial-gradient(46% 30% at 78% 58%, rgba(15,124,140,.08), transparent 72%),
    radial-gradient(40% 28% at 14% 84%, rgba(242,169,59,.10), transparent 72%);
}
.galx .container { position: relative; z-index: 1; }

/* ---- Chapter band ---- */
.galx-band { --accent: var(--gold); margin-bottom: clamp(56px, 8vw, 104px); }
.galx-band:last-of-type { margin-bottom: 0; }

.galx-intro {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: clamp(20px, 4vw, 56px); flex-wrap: wrap;
  margin-bottom: clamp(26px, 3.4vw, 44px);
}
.galx-intro__lead { max-width: 640px; }
.galx-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--accent);
}
.galx-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.galx-title {
  font-family: var(--display); font-weight: 500; color: var(--ink);
  font-size: clamp(2rem, 4.6vw, 58px); line-height: 1.02; letter-spacing: -.012em;
  margin-top: 16px;
}
.galx-title em { font-style: italic; color: var(--accent); }
.galx-line {
  font-family: var(--serif); font-style: italic; color: #161311;
  font-size: clamp(15px, 1.5vw, 18.5px); line-height: 1.6; margin-top: 14px; max-width: 52ch;
}
.galx-num {
  font-family: var(--serif); font-style: italic; line-height: .8;
  font-size: clamp(56px, 9vw, 132px);
  color: transparent; -webkit-text-stroke: 1px rgba(122,98,52,.32);
  opacity: .9; white-space: nowrap; align-self: flex-end;
}

/* ---- Photo grid (art-directed, 12-col) ---- */
.galx-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.9vw, 26px); align-items: start;
}
.galx-grid > * { min-width: 0; }

.galx-fig { margin: 0; position: relative; }
.galx-frame {
  display: block; position: relative; overflow: hidden; cursor: zoom-in;
  background: #fffdf8; padding: clamp(7px, .7vw, 11px); border-radius: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(122,98,52,.16),
    0 1px 3px rgba(31,46,37,.10),
    0 26px 50px -30px rgba(31,46,37,.55);
  transition: transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .6s ease;
}
.galx-frame img {
  width: 100%; height: var(--h, 360px); object-fit: cover;
  border-radius: 2px; display: block;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.galx-frame::after {
  content: ""; position: absolute; inset: clamp(7px,.7vw,11px); border-radius: 2px;
  background: linear-gradient(180deg, transparent 46%, rgba(31,46,37,.5));
  opacity: 0; transition: opacity .5s ease;
}
.galx-frame__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 18px clamp(16px,1.6vw,22px) clamp(16px,1.5vw,20px);
  color: #fff; opacity: 0; transform: translateY(8px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.galx-frame__tag {
  font-family: var(--sans); font-size: 9.5px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold-light);
}
.galx-frame__txt {
  font-family: var(--serif); font-style: italic; font-size: clamp(14px, 1.2vw, 16.5px);
  line-height: 1.4; margin-top: 5px; text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.galx-fig:hover .galx-frame { transform: translateY(-7px) rotate(0deg) !important; box-shadow: inset 0 0 0 1px rgba(122,98,52,.2), 0 1px 3px rgba(31,46,37,.12), 0 40px 70px -28px rgba(31,46,37,.6); }
.galx-fig:hover .galx-frame::after,
.galx-fig:hover .galx-frame__cap { opacity: 1; }
.galx-fig:hover .galx-frame__cap { transform: translateY(0); }
.galx-fig:hover .galx-frame img { transform: scale(1.055); }

/* tiny tilt on reveal for an album-on-a-table feel */
.galx-fig[data-tilt] .galx-frame { transform: rotate(var(--tilt, 0deg)); }

/* ---- Closing note ---- */
.galx-outro { position: relative; text-align: center; padding-block: clamp(20px, 4vw, 56px); }
.galx-outro .ornament { margin: 0 auto 26px; max-width: 260px; }
.galx-outro__title { font-size: clamp(2.2rem, 5vw, 72px); }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: flex;
  align-items: center; justify-content: center; padding: clamp(16px, 4vw, 56px);
  background: rgba(13,19,15,.94); opacity: 0; pointer-events: none;
  transition: opacity .42s ease;
}
.lightbox[data-open="1"] { opacity: 1; pointer-events: auto; }
.lightbox__img {
  max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 3px;
  box-shadow: 0 40px 90px rgba(0,0,0,.6); background: #100;
  transform: scale(.96); transition: transform .42s cubic-bezier(.2,.7,.2,1);
}
.lightbox[data-open="1"] .lightbox__img { transform: scale(1); }
.lightbox__cap {
  position: absolute; left: 0; right: 0; bottom: clamp(16px, 3vw, 34px);
  text-align: center; color: #f3eadb; font-family: var(--serif); font-style: italic;
  font-size: clamp(14px, 1.4vw, 18px); padding: 0 16px; pointer-events: none;
}
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 50%; cursor: pointer;
  background: rgba(246,241,230,.10); border: 1px solid rgba(230,201,138,.4);
  color: var(--gold-light); font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, border-color .3s ease;
}
.lightbox__btn:hover { background: rgba(246,241,230,.2); border-color: var(--gold-light); }
.lightbox__btn--prev { left: clamp(10px, 3vw, 40px); }
.lightbox__btn--next { right: clamp(10px, 3vw, 40px); }
.lightbox__close {
  position: absolute; top: clamp(14px, 3vw, 28px); right: clamp(14px, 3vw, 28px);
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  background: rgba(246,241,230,.08); border: 1px solid rgba(230,201,138,.36);
  color: var(--gold-light); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, transform .4s ease;
}
.lightbox__close:hover { background: rgba(246,241,230,.2); transform: rotate(90deg); }
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox__img, .lightbox__close { transition: none; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .galx-grid { grid-template-columns: repeat(6, 1fr); }
  .galx-grid > * { grid-column: span 3 !important; grid-row: auto !important; }
  .galx-fig[data-tilt] .galx-frame { transform: none; }
  .galx-num { display: none; }
}
@media (max-width: 700px) {
  .galx-strip {
    height: 260px; gap: 3px; padding: 3px;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  }
  .galx-strip::-webkit-scrollbar { display: none; }
  .galx-strip__item { flex: 0 0 76%; scroll-snap-align: start; }
}
@media (max-width: 600px) {
  .galx-grid { grid-template-columns: 1fr; gap: 18px; }
  .galx-grid > * { grid-column: 1 / -1 !important; }
  .galx-frame img { height: clamp(280px, 78vw, 420px) !important; }
  .lightbox__btn { width: 46px; height: 46px; }
}

/* ============================================================
   19. Contact — clean & professional
   A calm text header, a brand-green details panel beside a
   well-aligned form, and a studio map. Sans-led, serif sparingly.
   ============================================================ */

.contact-hero { padding-bottom: clamp(36px, 5vw, 64px); }
.contact-hero__sub {
  font-family: var(--sans); font-size: clamp(15px, 1.5vw, 17px); line-height: 1.7;
  color: var(--text); max-width: 52ch; margin-top: 26px;
}

/* the two-panel card: green info panel + form */
.contact-split {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  background: var(--cream);
  box-shadow: 0 1px 3px rgba(31,46,37,.06), 0 40px 70px -44px rgba(31,46,37,.4);
}

/* ----- left: brand-green contact panel ----- */
.contact-info {
  background: var(--ink); color: var(--cream);
  padding: clamp(34px, 4vw, 56px);
  position: relative; overflow: hidden;
}
/* faint corner motif, kept very subtle */
.contact-info::after {
  content: ""; position: absolute; right: -60px; bottom: -60px;
  width: 220px; height: 220px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(230,201,138,.16), transparent 68%);
}
.contact-info__eyebrow { color: var(--gold-light); }
.contact-info__title {
  font-family: var(--display); font-weight: 500; color: #fff;
  font-size: clamp(26px, 3vw, 34px); line-height: 1.1; margin-top: 14px;
}
.contact-info__intro {
  font-family: var(--sans); font-size: 14.5px; line-height: 1.7;
  color: #c6bfae; margin-top: 14px; max-width: 36ch;
}

.channels { margin-top: clamp(30px, 3.6vw, 44px); display: grid; gap: 22px; position: relative; z-index: 1; }
.channel { display: grid; grid-template-columns: 22px 1fr; gap: 16px; align-items: start; }
.channel__icon { width: 22px; height: 22px; color: var(--gold-light); margin-top: 2px; }
.channel__icon svg { width: 100%; height: 100%; display: block; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.channel__label {
  font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-light);
}
.channel__value {
  display: block; margin-top: 5px; font-family: var(--sans); font-size: 16px; line-height: 1.45;
  color: #f1ece0; transition: color .3s ease;
}
a.channel__value:hover { color: var(--gold-light); }

.contact-info__social {
  margin-top: clamp(30px, 3.6vw, 42px); padding-top: 26px;
  border-top: 1px solid rgba(230,201,138,.18);
  display: flex; align-items: center; gap: 14px; position: relative; z-index: 1;
}
.contact-info__social a {
  font-family: var(--sans); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: #e9e3d4; transition: color .3s ease;
}
.contact-info__social a:hover { color: var(--gold-light); }
.contact-info__social span { color: rgba(230,201,138,.45); }

/* ----- right: form panel ----- */
.contact-form { padding: clamp(34px, 4vw, 56px); }
.contact-form__title { font-family: var(--display); font-weight: 500; color: var(--ink); font-size: clamp(22px, 2.4vw, 30px); }
.contact-form__hint { font-family: var(--sans); font-size: 13.5px; color: var(--muted); margin-top: 8px; }
.contact-form .form { margin-top: 30px; gap: 24px; }
.contact-form .field input,
.contact-form .field textarea,
.contact-form .field select { font-family: var(--sans); font-size: 15.5px; }
.contact-form .field label { color: #111111; }

/* row that splits into two on wider screens, stacks cleanly otherwise */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
/* let inputs shrink inside their grid track instead of overflowing */
.contact-form .field { min-width: 0; }
.contact-form .field input,
.contact-form .field textarea,
.contact-form .field select { width: 100%; min-width: 0; max-width: 100%; }

/* ---- Let's Connect — hero + inquiry form, first section of /contact ---- */
.connect { padding-top: clamp(48px, 6vw, 84px); padding-bottom: clamp(48px, 6vw, 84px); }
.connect__title {
  font-family: var(--script); font-weight: 400; color: #a6675e;
  font-size: clamp(56px, 9vw, 128px); line-height: .9; text-align: left;
  margin: 0 0 -0.12em;
}
.connect__grid {
  display: grid; grid-template-columns: .78fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start;
}
.connect__photo { border-radius: 4px; overflow: hidden; align-self: stretch; }
.connect__photo img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; }
.connect__intro {
  font-family: var(--serif); font-size: clamp(18px, 1.9vw, 22px); line-height: 1.55;
  color: var(--cream); text-align: center; max-width: 46ch; margin: 0 auto;
}
.connect__u { text-decoration: underline; text-underline-offset: 4px; }
.connect__reach {
  margin-top: clamp(20px, 2.4vw, 28px); text-align: center;
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .14em;
}
.connect__reach a { color: var(--cream); text-decoration: none; }
.connect__reach a:first-child { text-decoration: underline; text-underline-offset: 3px; }
.connect__reach a:hover { color: var(--gold-light); }
.connect__reach span { margin: 0 10px; color: #c9c3b3; }
.connect__invite {
  margin-top: clamp(20px, 2.4vw, 28px); text-align: center;
  font-family: var(--serif); font-style: italic; font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6; color: #c9c3b3; max-width: 48ch; margin-left: auto; margin-right: auto;
}

/* form, restyled for the dark connect panel */
.connect-form { margin-top: clamp(32px, 4vw, 48px); gap: 22px; }
.connect-form .field label {
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-light);
}
.connect-form .field input,
.connect-form .field textarea,
.connect-form .field select {
  font-family: var(--sans); font-size: 15px; width: 100%; min-width: 0; max-width: 100%;
  margin-top: 8px; padding: 12px 14px; background: transparent; color: var(--cream);
  border: 1px solid rgba(230,201,138,.4); border-radius: 3px;
}
.connect-form .field select option { color: #111; }
.connect-form .field input::placeholder,
.connect-form .field textarea::placeholder { color: #8d9088; }
.connect-form .field input:focus,
.connect-form .field textarea:focus,
.connect-form .field select:focus { outline: none; border-color: var(--gold-light); }
.connect-form .field textarea { min-height: 120px; resize: vertical; }
.connect-form .field input[type="file"] { padding: 11px 14px; cursor: pointer; }
.connect-form .field input[type="file"]::file-selector-button,
.connect-form .field input[type="file"]::-webkit-file-upload-button {
  margin-right: 12px; padding: 8px 16px; border: 1px solid rgba(230,201,138,.4); border-radius: 3px;
  background: var(--muted); color: var(--cream);
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .04em;
  cursor: pointer; transition: background .3s ease;
}
.connect-form .field input[type="file"]::file-selector-button:hover,
.connect-form .field input[type="file"]::-webkit-file-upload-button:hover { background: #7a7266; }
.connect-form__btn {
  display: inline-block; margin-top: 4px; padding: 15px 36px; border: 1px solid var(--gold-light);
  border-radius: 3px; background: var(--gold-light); color: var(--ink);
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: background .3s ease, color .3s ease;
}
.connect-form__btn:hover { background: transparent; color: var(--gold-light); }

@media (max-width: 900px) {
  .connect__grid { grid-template-columns: 1fr; }
  .connect__photo img { min-height: 320px; }
}

/* ----- map, now the right-hand panel beside "Reach us" ----- */
.contact-split .contact-map { height: 100%; }
.contact-map iframe { display: block; width: 100%; height: 100%; min-height: clamp(280px, 38vw, 420px); border: 0; filter: saturate(.9); }

@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---- Contact hero: gallery-style, two-tone title straddling the hem ---- */
.chero { position: relative; }
.chero__photo {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: clamp(340px, 54vh, 540px);
  border-radius: 0 0 50% 50% / 0 0 60px 60px;
}
.chero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.chero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,22,18,.58) 0%, rgba(15,22,18,.16) 30%, rgba(15,22,18,.08) 54%, rgba(15,22,18,.34) 100%);
}
.chero__crumb {
  position: absolute; z-index: 2; top: clamp(92px, 15vh, 140px); left: 0; right: 0;
  display: flex; gap: 12px; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-light);
}
.chero__crumb a { color: #f1ece0; opacity: .85; transition: opacity .3s ease; }
.chero__crumb a:hover { opacity: 1; }
.chero__crumb span { opacity: .5; }

/* the big word, half on the photo (cream), half on the paper below (green) */
.chero__title {
  position: relative; z-index: 3; text-align: center;
  margin: -0.46em 0 0;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(3.4rem, 16vw, 200px); line-height: .82; letter-spacing: .03em;
  background: linear-gradient(to bottom,
    #f4ecdd 0%, #f4ecdd 48%, var(--green) 52%, var(--ink) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.22));
}
.chero__sub {
  margin: 20px auto 0; max-width: 58ch; text-align: center;
  padding: 0 var(--gutter);
  font-family: var(--serif); font-style: italic; color: var(--green);
  font-size: clamp(16px, 1.7vw, 21px); line-height: 1.6;
}
.chero__sub em { font-style: italic; color: var(--gold); }

/* longer single-word titles (e.g. "Testimonials") need a tighter size to fit */
body[data-page="testimonials"] .chero__title {
  font-size: clamp(2.1rem, 11vw, 132px); letter-spacing: .015em;
}

@media (max-width: 600px) {
  .chero__photo { border-radius: 0 0 50% 50% / 0 0 34px 34px; }
  .chero__title { margin-top: -0.34em; }
}

/* ============================================================
   8. Services dropdown (shared nav)
   ============================================================ */
.nav__item { position: relative; display: inline-flex; }
.nav__item > .nav__link { display: inline-flex; align-items: center; gap: 7px; }
.nav__caret {
  width: 7px; height: 7px; border-right: 1.4px solid currentColor; border-bottom: 1.4px solid currentColor;
  transform: translateY(-1px) rotate(45deg); transition: transform .35s ease; opacity: .75;
}
.nav__item:hover .nav__caret,
.nav__item:focus-within .nav__caret { transform: translateY(1px) rotate(225deg); }

.nav__menu {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 10px);
  min-width: 234px; padding: 10px; margin-top: 14px;
  background: #ffffff; border: 1px solid rgba(31,46,37,.10); border-radius: 4px;
  box-shadow: 0 26px 60px -24px rgba(31,46,37,.32), 0 1px 0 rgba(255,255,255,.9) inset;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s ease, transform .45s cubic-bezier(.2,.7,.2,1), visibility .35s;
  z-index: 70;
}
/* invisible hover bridge so the menu doesn't drop while moving the cursor down */
.nav__menu::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.nav__item:hover .nav__menu,
.nav__item:focus-within .nav__menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.nav__menu-link {
  display: flex; flex-direction: column; gap: 3px; padding: 11px 13px; border-radius: 3px;
  color: #111; transition: background .3s ease, padding .3s ease;
}
.nav__menu-link:hover { background: rgba(31,46,37,.06); padding-left: 18px; }
.nav__menu-title { font-family: var(--sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: #111; }
.nav__menu-desc  { font-family: var(--serif); font-style: italic; font-size: 14px; letter-spacing: .01em; color: var(--gold-dark); text-transform: none; opacity: .9; }
/* last dropdown (Contact) sits at the screen edge — anchor it right so it never overflows */
@media (min-width: 761px) {
  .nav__group > .nav__item:last-child .nav__menu { left: auto; right: -13px; transform: translateY(10px); }
  .nav__group > .nav__item:last-child:hover .nav__menu,
  .nav__group > .nav__item:last-child:focus-within .nav__menu { transform: translateY(0); }
}

/* ============================================================
   9. Service detail pages  (galx hero + editorial body)
   ============================================================ */
.galx-bigtitle--svc {
  font-size: clamp(2.4rem, 9vw, 124px); letter-spacing: .015em; white-space: nowrap;
}
@media (max-width: 480px) { .galx-bigtitle--svc { white-space: normal; line-height: .92; } }

.svc { --svc-accent: var(--gold); display: block; }

/* ---- Intro: portrait photo beside an editorial column ---- */
.svc-intro { padding-block: clamp(40px, 6vw, 84px); }
.svc-intro__grid {
  display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: center; max-width: 1180px; margin: 0 auto;
}
.svc-figure {
  position: relative; border-radius: 3px; overflow: hidden;
  box-shadow: 0 2px 5px rgba(31,46,37,.12), 0 40px 80px -34px rgba(31,46,37,.55);
  transform: rotate(-1.1deg); transition: transform .7s cubic-bezier(.2,.7,.2,1), box-shadow .7s ease;
}
.svc-figure:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 0 2px 5px rgba(31,46,37,.14), 0 56px 100px -38px rgba(31,46,37,.6); }
.svc-figure img { width: 100%; height: clamp(380px, 52vw, 600px); object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.svc-figure:hover img { transform: scale(1.045); }
.svc-figure__tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase;
  color: #f4ecdd; background: rgba(20,28,22,.6); backdrop-filter: blur(3px);
  border: 1px solid rgba(244,236,221,.28); border-radius: 100px; padding: 7px 15px;
}
.svc-figure::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(244,236,221,.16); border-radius: 3px; pointer-events: none; }

.svc-lead__eyebrow { color: var(--svc-accent); filter: saturate(1.1) brightness(.9); }
.svc-lead__title {
  font-family: var(--display); font-weight: 500; color: var(--ink);
  font-size: clamp(28px, 4vw, 50px); line-height: 1.04; letter-spacing: -.01em;
  margin: 18px 0 22px;
}
.svc-lead__title em { font-style: italic; color: var(--svc-accent); }
.svc-lead p { font-size: clamp(15px, 1.15vw, 17px); line-height: 1.74; color: var(--text); margin-bottom: 16px; max-width: 46ch; }
.svc-lead__rule { display: flex; align-items: center; gap: 14px; margin: 28px 0 0; }
.svc-lead__rule span { height: 1px; flex: 1; background: linear-gradient(90deg, var(--svc-accent), transparent); opacity: .5; }
.svc-lead__rule b { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--svc-accent); font-size: 17px; }

/* ---- Intro: cinematic typing + reveal choreography ---- */
/* hold space so the page doesn't jump while the headline types itself in */
.svc-lead__title[data-typewriter] { min-height: 2.05em; }
.svc-lead__title .tw-caret { background: var(--svc-accent); }

/* a single bar of light sweeps across the photo as it lands */
.svc-figure::before {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.30) 48%, transparent 64%);
  transform: translateX(-130%);
}
.svc-figure[data-shown="1"]::before { animation: svc-sheen 1.5s cubic-bezier(.2,.7,.2,1) .45s 1; }
@keyframes svc-sheen { from { transform: translateX(-130%); } to { transform: translateX(130%); } }

/* the caption chip drifts up once the photo has settled */
.svc-figure__tag {
  opacity: 0; transform: translateY(10px);
  transition: opacity .6s ease .55s, transform .6s cubic-bezier(.2,.7,.2,1) .55s;
}
.svc-figure[data-shown="1"] .svc-figure__tag { opacity: 1; transform: translateY(0); }

/* the accent rule draws itself from the left */
.svc-lead__rule b { opacity: 0; transition: opacity .6s ease .15s; }
.svc-lead__rule span { transform: scaleX(0); transform-origin: left center; transition: transform 1s cubic-bezier(.2,.7,.2,1) .2s; }
.svc-lead[data-shown="1"] .svc-lead__rule b { opacity: 1; }
.svc-lead[data-shown="1"] .svc-lead__rule span { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .svc-figure::before { display: none; }
  .svc-figure__tag, .svc-lead__rule b, .svc-lead__rule span {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ---- Offerings: numbered editorial cards ---- */
.svc-offer__head { max-width: 720px; margin: 0 auto clamp(34px, 4vw, 56px); text-align: center; }
.svc-offer__title {
  font-family: var(--display); font-weight: 500; color: var(--ink);
  font-size: clamp(26px, 3.4vw, 44px); line-height: 1.06; margin-top: 16px;
}
.svc-offer__title em { font-style: italic; color: var(--svc-accent); }
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.svc-card {
  position: relative; background: #fff; border: 1px solid rgba(122,98,52,.16); border-radius: 4px;
  padding: clamp(24px, 2.4vw, 36px); overflow: hidden;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s ease, border-color .4s ease;
}
.svc-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--svc-accent); transform: scaleY(0); transform-origin: top; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.svc-card:hover { transform: translateY(-7px); box-shadow: 0 30px 60px -30px rgba(31,46,37,.5); border-color: transparent; }
.svc-card:hover::before { transform: scaleY(1); }
.svc-card__no { font-family: var(--serif); font-style: italic; font-size: clamp(30px, 3.2vw, 42px); color: var(--svc-accent); line-height: 1; opacity: .85; }
.svc-card__title { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin: 18px 0 10px; }
.svc-card__copy { font-size: 14.5px; line-height: 1.66; color: var(--text); }

/* ============================================================
   What we handle — interactive accordion ledger
   ============================================================ */
.svc-acc { max-width: 960px; margin: 0 auto; border-top: 1px solid var(--line); }
.svc-acc__row { position: relative; border-bottom: 1px solid var(--line); }
.svc-acc__row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--svc-accent); transform: scaleY(0); transform-origin: top;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.svc-acc__row[data-open="1"]::before { transform: scaleY(1); }

.svc-acc__head {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left; font: inherit;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(16px, 3vw, 38px); padding: clamp(20px, 2.6vw, 30px) 10px;
  color: var(--ink); transition: padding-left .45s cubic-bezier(.2,.7,.2,1);
}
.svc-acc__no {
  font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.2vw, 30px);
  color: var(--svc-accent); opacity: .5; line-height: 1; min-width: 2ch;
  transition: opacity .35s ease;
}
.svc-acc__title {
  font-family: var(--display); font-weight: 500; font-size: clamp(21px, 2.7vw, 34px);
  color: var(--ink); letter-spacing: -.01em; line-height: 1.06; transition: color .35s ease;
}
.svc-acc__icon { position: relative; width: 22px; height: 22px; flex: none; opacity: .55; transition: opacity .35s ease; }
.svc-acc__icon::before, .svc-acc__icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--svc-accent); border-radius: 2px;
}
.svc-acc__icon::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.svc-acc__icon::after  { width: 2px; height: 16px; transform: translate(-50%, -50%); transition: transform .5s cubic-bezier(.2,.7,.2,1); }

.svc-acc__row:hover .svc-acc__head { padding-left: 22px; }
.svc-acc__row:hover .svc-acc__no,
.svc-acc__row:hover .svc-acc__icon { opacity: 1; }
.svc-acc__row:hover .svc-acc__title { color: var(--svc-accent); }
.svc-acc__row[data-open="1"] .svc-acc__no,
.svc-acc__row[data-open="1"] .svc-acc__icon { opacity: 1; }
.svc-acc__row[data-open="1"] .svc-acc__title { color: var(--svc-accent); }
.svc-acc__row[data-open="1"] .svc-acc__icon::after { transform: translate(-50%, -50%) rotate(90deg); } /* + becomes − */

/* smooth auto-height via grid-template-rows */
.svc-acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s cubic-bezier(.2,.7,.2,1); }
.svc-acc__row[data-open="1"] .svc-acc__panel { grid-template-rows: 1fr; }
.svc-acc__inner { overflow: hidden; min-height: 0; }
.svc-acc__copy {
  font-size: clamp(15px, 1.2vw, 18px); line-height: 1.74; color: var(--text); max-width: 62ch;
  padding: 0 10px clamp(22px, 2.6vw, 30px) clamp(46px, 6vw, 78px);
  opacity: 0; transform: translateY(8px);
  transition: opacity .45s ease .12s, transform .55s cubic-bezier(.2,.7,.2,1) .12s;
}
.svc-acc__row[data-open="1"] .svc-acc__copy { opacity: 1; transform: translateY(0); }

/* ============================================================
   How it unfolds — scroll-activated timeline (on dark panel)
   ============================================================ */
.svc-tl { --tl-x: clamp(20px, 3vw, 34px); position: relative; max-width: 820px; margin: 0 auto; }
.svc-tl__spine {
  position: absolute; left: var(--tl-x); top: 8px; bottom: 8px; width: 2px;
  background: rgba(184,149,74,.16); border-radius: 2px; overflow: hidden;
}
.svc-tl__fill {
  position: absolute; left: 0; top: 0; width: 100%; height: 0;
  background: linear-gradient(var(--gold-light), var(--gold));
  transition: height .7s cubic-bezier(.2,.7,.2,1);
}
.svc-tl__step { position: relative; padding: clamp(20px, 3vw, 38px) 0 clamp(20px, 3vw, 38px) calc(var(--tl-x) + clamp(34px, 5vw, 60px)); }
.svc-tl__dot {
  position: absolute; left: calc(var(--tl-x) - 6px); top: calc(clamp(20px, 3vw, 38px) + .28em);
  width: 13px; height: 13px; border-radius: 50%; background: var(--ink);
  border: 2px solid rgba(184,149,74,.4); z-index: 2;
  transition: background .5s ease, border-color .5s ease, box-shadow .5s ease, transform .5s cubic-bezier(.2,.7,.2,1);
}
.svc-tl__step[data-active="1"] .svc-tl__dot {
  background: var(--gold); border-color: var(--gold-light); transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(184,149,74,.14);
}
.svc-tl__no {
  display: block; font-family: var(--serif); font-style: italic; font-size: clamp(32px, 4.6vw, 58px);
  color: rgba(230,201,138,.26); line-height: .9; margin-bottom: 10px; transition: color .6s ease;
}
.svc-tl__step[data-active="1"] .svc-tl__no { color: var(--gold-light); }
.svc-tl__body { opacity: .42; transform: translateY(12px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.svc-tl__step[data-active="1"] .svc-tl__body { opacity: 1; transform: translateY(0); }
.svc-tl__title { font-family: var(--display); font-size: clamp(22px, 2.5vw, 30px); color: var(--cream); margin-bottom: 12px; }
.svc-tl__copy { font-size: clamp(14.5px, 1.1vw, 16px); line-height: 1.74; color: rgba(246,241,230,.74); max-width: 54ch; }

@media (prefers-reduced-motion: reduce) {
  .svc-acc__copy { opacity: 1 !important; transform: none !important; }
  .svc-tl__body { opacity: 1 !important; transform: none !important; }
  .svc-tl__fill { transition: none !important; }
}

@media (max-width: 980px) {
  .svc-intro__grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-figure { transform: rotate(-.6deg); }
  .svc-cards { grid-template-columns: 1fr; }
  .svc-acc__head { gap: 14px; }
}
@media (max-width: 760px) {
  /* dropdown becomes an inline, always-open sub-list inside the slide menu */
  .nav__item { display: block; width: 100%; text-align: center; }
  .nav__caret { display: none; }
  .nav__menu {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; margin: 12px 0 0; padding: 0; background: none; border: 0; box-shadow: none;
  }
  .nav__menu-link { padding: 7px 0; align-items: center; }
  .nav__menu-link:hover { background: none; padding-left: 0; }
  .nav__menu-desc { display: none; }
  .nav__menu-title { color: var(--gold-light); }
}

/* ============================================================
   10. Testimonials — the fanning signature deck
   A warmer, non-green register: ivory + blush + rose, with a
   Dancing Script accent. Distinct from the Cinzel display pages.
   ============================================================ */
.tfan-wrap {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% -10%, #fbf4e9 0%, #f5e8dc 46%, #efdfd2 100%);
  /* no overflow:hidden here — it would clip the sticky deck's pinning.
     body already has overflow-x:hidden to contain the decorative blobs. */
}
.tfan-wrap::before,
.tfan-wrap::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(8px); opacity: .5; z-index: 0;
}
.tfan-wrap::before { width: 380px; height: 380px; top: 8%; left: -120px;
  background: radial-gradient(circle, rgba(192,40,111,.10), transparent 70%); }
.tfan-wrap::after  { width: 420px; height: 420px; bottom: 4%; right: -140px;
  background: radial-gradient(circle, rgba(184,149,74,.16), transparent 70%); }

.tfan-intro { position: relative; z-index: 2; text-align: center; padding-top: clamp(56px, 8vw, 104px); }
.tfan-kicker {
  font-family: var(--sans); font-size: 11px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--rose);
}
.tfan-heading {
  margin-top: 18px; font-family: var(--display); font-weight: 600; color: var(--ink);
  font-size: clamp(2rem, 5.4vw, 56px); line-height: 1.02; letter-spacing: -.01em;
}
.tfan-note {
  margin: 18px auto 0; max-width: 46ch;
  font-family: var(--serif); font-style: italic; color: var(--gold-dark);
  font-size: clamp(15px, 1.6vw, 19px); line-height: 1.55;
}

/* tall scroll track; a horizontal rail is pinned and slid sideways so that
   every card passes through the centre fully visible — no overlap, no hiding */
.tfan { position: relative; height: 480vh; z-index: 1; }
.tfan__sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.tfan__rail {
  display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px);
  padding-inline: 50vw;            /* lets the first & last card reach centre */
  transform: translate3d(var(--shift, 0px), 0, 0);
  will-change: transform;
}

.tcard {
  --cs: .9;                        /* scale — JS raises it as the card nears centre.
                                      cards stay fully opaque & readable; only the
                                      centred one grows + gets a deeper shadow */
  flex: 0 0 auto;
  width: clamp(230px, 23vw, 300px); height: clamp(330px, 33vw, 420px);
  transform: scale(var(--cs));
  will-change: transform;
}
.tcard__inner {
  position: relative; width: 100%; height: 100%; border-radius: 10px; overflow: hidden;
  background: #fff; border: 1px solid rgba(31,46,37,.08);
  box-shadow: 0 2px 6px rgba(31,46,37,.12), 0 30px 55px -28px rgba(31,46,37,.5);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
}
.tcard__photo { position: absolute; inset: 0; }
.tcard__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.tcard__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,14,12,0) 34%, rgba(20,14,12,.82) 100%);
}

/* always-visible caption: a short testimonial line + the couple's name */
.tcard__cap {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2;
  display: flex; flex-direction: column; gap: 5px;
  transition: opacity .35s ease;
}
.tcard__teaser {
  font-family: var(--serif); font-style: italic; font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.3; color: #fdf6ea;
}
.tcard__names { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #fff; }
.tcard__where { font-family: var(--sans); font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); }

/* the full note — slides up on hover (and is reachable by keyboard focus) */
.tcard__full {
  position: absolute; inset: 0; z-index: 3;
  padding: 24px 22px; display: flex; flex-direction: column;
  background: linear-gradient(165deg, rgba(31,18,24,.95), rgba(46,20,33,.97));
  color: var(--cream);
  transform: translateY(101%);
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.tcard__mark { font-family: var(--serif); font-size: 46px; line-height: .6; color: var(--gold-light); }
.tcard__quote {
  margin-top: 10px; font-family: var(--serif); font-size: clamp(13.5px, 1.15vw, 16px);
  line-height: 1.55; color: #f3ece1; flex: 1;
}
.tcard__sign {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 28px; color: var(--gold-light); line-height: 1; margin-top: 8px;
}
.tcard__date {
  font-family: var(--sans); font-size: 9px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(230,201,138,.7); margin-top: 8px;
}

/* hover: grow the inner, reveal the note, deepen the shadow */
.tcard:hover .tcard__inner,
.tcard:focus-within .tcard__inner {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 10px 22px rgba(31,46,37,.22), 0 60px 92px -34px rgba(192,40,111,.55);
}
.tcard:hover .tcard__full,
.tcard:focus-within .tcard__full { transform: translateY(0); }
.tcard:hover .tcard__cap,
.tcard:focus-within .tcard__cap { opacity: 0; }
.tcard:hover .tcard__photo img { transform: scale(1.06); }

/* the centred (active) card gets a soft rose ring while it sits in focus */
.tcard.is-active .tcard__inner {
  box-shadow: 0 4px 12px rgba(192,40,111,.25), 0 46px 82px -30px rgba(192,40,111,.5);
}

/* scroll hint pinned to the stage */
.tfan__hint {
  position: absolute; left: 0; right: 0; bottom: clamp(22px, 5vh, 52px); z-index: 4;
  text-align: center; pointer-events: none;
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-dark); opacity: .8;
}

@media (prefers-reduced-motion: reduce) {
  .tcard__inner, .tcard__full, .tcard__photo img { transition: none; }
}

/* ---- Mobile: no pinning — a native swipe carousel; every card fully visible ---- */
@media (max-width: 760px) {
  .tfan { height: auto; }
  .tfan__sticky { position: static; height: auto; overflow: visible; padding: 24px 0 6px; }
  .tfan__rail {
    transform: none !important; padding-inline: var(--gutter);
    gap: 14px; padding-bottom: 12px;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  }
  .tfan__rail::-webkit-scrollbar { display: none; }
  .tcard {
    --cs: 1; --co: 1; transform: none; opacity: 1;
    width: 76vw; max-width: 320px; height: auto; aspect-ratio: 3 / 4;
    scroll-snap-align: center;
  }
  .tcard.is-open .tcard__full { transform: translateY(0); }
  .tcard.is-open .tcard__cap { opacity: 0; }
  .tfan__hint { display: none; }
}

/* ============================================================
   11. Testimonials — "how we enhance the experience"
   Warm blush panel, rose + gold, deliberately not the green system.
   ============================================================ */
.tcare {
  position: relative;
  padding-block: clamp(64px, 9vw, 120px);
  background:
    radial-gradient(140% 70% at 50% 0%, #2a141f 0%, #20111a 58%, #1a0e16 100%);
  color: #f3e7da; overflow: hidden;
}
.tcare::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    radial-gradient(40% 50% at 12% 18%, rgba(192,40,111,.22), transparent 70%),
    radial-gradient(38% 48% at 88% 82%, rgba(184,149,74,.22), transparent 70%);
}
.tcare > .container { position: relative; z-index: 1; }

.tcare__head { text-align: center; max-width: 720px; margin: 0 auto; }
.tcare__kicker {
  font-family: var(--sans); font-size: 11px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-light);
}
.tcare__title {
  margin-top: 18px; font-family: var(--display); font-weight: 600; color: #fbf2e6;
  font-size: clamp(2rem, 5.2vw, 54px); line-height: 1.04; letter-spacing: -.01em;
}
.tcare__script {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  color: var(--gold-light); font-size: 1.15em; letter-spacing: 0;
}
.tcare__lede {
  margin: 22px auto 0; max-width: 56ch;
  font-family: var(--sans); font-weight: 300; font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.72; color: rgba(243,231,218,.8);
}

.tcare__grid {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(243,231,218,.12);
  border: 1px solid rgba(243,231,218,.12); border-radius: 6px; overflow: hidden;
}
.tcare-pillar {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0));
  padding: clamp(26px, 2.4vw, 38px) clamp(22px, 2vw, 30px);
  transition: background .5s ease, transform .5s ease;
}
.tcare-pillar:hover { background: rgba(192,40,111,.10); transform: translateY(-3px); }
.tcare-pillar__no {
  font-family: var(--serif); font-style: italic; font-size: 34px; color: var(--gold-light);
  line-height: 1; opacity: .9;
}
.tcare-pillar__title {
  margin-top: 16px; font-family: var(--display); font-weight: 600;
  font-size: clamp(18px, 1.5vw, 21px); color: #fbf2e6; line-height: 1.18;
}
.tcare-pillar__body {
  margin-top: 12px; font-family: var(--sans); font-weight: 300;
  font-size: 14px; line-height: 1.68; color: rgba(243,231,218,.74);
}
.tcare-pillar__body em { font-style: italic; color: var(--gold-light); }

/* stat band */
.tcare__band {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: clamp(24px, 5vw, 60px);
}
.tcare__band-stat { text-align: center; display: flex; flex-direction: column; gap: 6px; }
.tcare__band-num {
  font-family: var(--display); font-weight: 600; font-size: clamp(34px, 4.6vw, 56px);
  color: #fbf2e6; line-height: 1;
}
.tcare__band-lab {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-light);
}
.tcare__band-div { width: 1px; height: 44px; background: rgba(243,231,218,.2); }

.tcare__cta { text-align: center; margin-top: clamp(48px, 6vw, 76px); }
.tcare__cta-line {
  font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2.2vw, 26px);
  color: #fbf2e6; margin-bottom: 26px;
}
.tcare__cta .btn { display: inline-block; border-color: var(--gold-light); background: var(--gold-light); color: #20111a; }
.tcare__cta .btn:hover { background: transparent; color: var(--gold-light); }

@media (max-width: 900px) {
  .tcare__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .tcare__grid { grid-template-columns: 1fr; }
  .tcare__band-div { display: none; }
}

/* ============================================================
   Offerings page — planning, decoration and entertainment on one page
   (reuses the .svc-* blocks; each chapter sets its own --svc-accent)
   ============================================================ */
/* ---- Hero: clone of the reference /offerings first section (Playwright-measured @1470×923 + 390×844) ----
   section = 100vh, padding 20vmax / 2vmax, content bottom-aligned, no photo tint (reference overlay opacity 0) */
.ro-hero {
  position: relative; isolation: isolate; overflow: hidden; box-sizing: border-box;
  min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 20vmax; padding-bottom: 2vmax;
  background: #133733; color: #fff;
}
.ro-hero__bg { position: absolute; inset: 0; z-index: -1; }
.ro-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; display: block; }
/* the reference text sits on dark water; our photo is bright at the bottom, so a soft bottom fade keeps the white text as legible */
.ro-hero__bg::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(8,16,14,.72) 0%, rgba(8,16,14,.45) 22%, rgba(8,16,14,0) 48%);
}
.ro-hero__grid { --rows-m: 9; --rows-d: 15; width: 100%; }
.ro-hero__text    { grid-area: 1/2/3/10;  z-index: 15; display: none; }
.ro-hero__mark    { grid-area: 3/5/9/7;   z-index: 14; }
.ro-hero__eyebrow { grid-area: 8/2/10/10; z-index: 13; justify-content: center; }
@media (min-width: 768px) {
  .ro-hero__text    { grid-area: 11/18/16/26; z-index: 7; display: flex; }
  .ro-hero__mark    { grid-area: 11/13/14/15; z-index: 6; }
  .ro-hero__eyebrow { grid-area: 14/8/16/20;  z-index: 5; }
}
/* monogram: white, contained in its block (reference monogram is white) */
.ro-hero__mark img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: 50% 50%;
  filter: brightness(0) invert(96%) sepia(10%); /* cream, like the reference monogram */
}
/* intro: small paragraph, line-height 19.2px (1.2 × 1rem), centred, white.
   1.1rem matches the reference's drawn glyph width (7.5px/char) in EB Garamond */
.ro-hero__p {
  font-family: 'EB Garamond', 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400; font-size: 1.1rem; line-height: 1.2rem; letter-spacing: .21px;
  color: #fff; text-align: center; margin: 0;
}
/* "OUR OFFERINGS ⌄": pre at paragraph size 1.3 (line-height .7em), code = Jost 500 1rem .07em uppercase */
.ro-hero .rr-pre {
  color: #fff; margin: 0;
  font-size: min(calc(.3 * 1.2vw + 1rem), max(calc(.3 * 19.2px + 1rem), 1.3rem));
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .ro-hero .rr-pre { font-size: calc(.3 * .012 * min(100vh, 900px) + 1rem); }
}
@media (max-width: 767px) {
  .ro-hero { padding-bottom: .925vmax; } /* reference phone: 7.8px @844 */
}

/* ---- Full-service approach: clone of the reference /offerings second section (measured @1470 + 390) ----
   cream section, .1vmax padding, 0-gap fluid grid 48 rows (64 phone) */
.ro-full { position: relative; background: #f7f6ed; color: #133733; padding-block: .1vmax; overflow: hidden; }
.ro-full__grid { --rows-m: 64; --rows-d: 48; }
.ro-full__img  { grid-area: 2/2/22/10;  z-index: 20; justify-content: center; }
.ro-full__head { grid-area: 23/2/25/10; z-index: 3;  justify-content: flex-start; }
.ro-full__text { grid-area: 26/2/64/10; z-index: 2;  justify-content: flex-start; }
@media (min-width: 768px) {
  .ro-full__img  { grid-area: 9/15/44/26; z-index: 2; }
  .ro-full__head { grid-area: 7/2/13/22;  z-index: 3; }
  .ro-full__text { grid-area: 14/2/47/14; z-index: 1; }
}
.ro-full .rr-block__inner > :first-child { margin-top: 0; }
.ro-full .rr-block__inner > :last-child  { margin-bottom: 0; }
/* scaled heading lines (JS fits each to the block width); the bold word is the script font */
/* Allison draws ~2.9em wide for "Full-Service" vs the reference Kallimata's 4.25em, so it is enlarged 1.45×
   (line-height 0 keeps the line box at the serif's height); the JS fit then brings the line back to ≈ the reference size */
.ro-full .rr-h1 strong { font-family: var(--script); font-weight: 400; font-size: 1.45em; line-height: 0; }
/* the enlarged script's top swash ran into line 1's descenders: small gap between the two lines */
.ro-full__head .rr-scaled-container + .rr-scaled-container { margin-top: max(6px, 1.1vw); }
/* desktop: "Approach" crosses the photo's top edge; the reference photo is a bright wall there, ours is dark foliage,
   so a soft cream fade over the top of the photo keeps the ink-green letters readable */
@media (min-width: 768px) {
  .ro-full__img .rr-img::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to bottom, rgba(247,246,237,.9) 0%, rgba(247,246,237,.72) 10%, rgba(247,246,237,0) 22%);
  }
}
/* h2 47.8px / h3 30.1px @1470 (Beaufort → Newsreader 300, .936 glyph-width fit), margins 2rem */
.ro-full .ra-serif { color: #133733; text-align: left; }
.ro-full .ra-h2, .ro-full .ra-h3 { --fit: .936; }
/* list: paragraph size 1.3 (21.3px @1470), 40px indent, disc bullets; items are pre > code
   (Jost 500 1rem .07em uppercase, pre line-height .7em, .5em between items) */
.ro-full__list {
  --p13: min(calc(.3 * 1.2vw + 1rem), max(calc(.3 * 19.2px + 1rem), 1.3rem));
  font-family: 'EB Garamond', 'Times New Roman', serif; font-size: var(--p13);
  line-height: 1.2em; letter-spacing: .01em; color: #133733;
  margin: 1em 0; padding: 0 0 0 40px; list-style: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .ro-full__list { --p13: calc(.3 * .012 * min(100vh, 900px) + 1rem); }
}
/* bullet drawn beside the first code line (a native marker adds its own line box and makes each item 5px taller) */
.ro-full__list li { position: relative; margin: 0; padding: 0; }
.ro-full__list li::before {
  content: "\2022"; position: absolute; left: -24px; top: 0;
  font-size: 1em; line-height: 20.8px; color: #133733;
}
.ro-full__list .rr-pre { font-size: 1em; margin: .5em 0; text-align: left; }
.ro-full__list .rr-pre a { color: inherit; text-decoration: underline; text-underline-offset: .2em; text-decoration-thickness: 1px; }
.ro-full__list .rr-pre a:hover { color: #728763; }
/* closing italic line: paragraph size 1.3, margin-top 1rem; ×1.19 because EB Garamond draws smaller than Allrounder */
.ro-full__close { --fit: 1.19; color: #133733; }

/* ---- Process accordion: clone of the reference /offerings third section (measured @1470 + 390) ----
   cream, 3.3vmax padding, 11px-gap grid 15 rows (9 phone); Squarespace accordion block: 1px dividers and a
   24px / 1px plus in rgb(82,118,114), 15px title padding, description margin 16px + 30px bottom, min 70% wide */
.ro-acc { position: relative; background: #f7f6ed; color: #133733; }
.ro-acc__grid { --rows-m: 9; --rows-d: 15; }
.ro-acc__block { grid-area: 2/2/9/10; justify-content: flex-start; }
@media (min-width: 768px) {
  .ro-acc__block { grid-area: 1/2/16/26; }
}
.ro-acc__list { list-style: none; margin: 0; padding: 0; }
.ro-acc__item { position: relative; margin: 0; padding: 0; border-bottom: 1px solid rgb(82,118,114); }
.ro-acc__item:first-child { border-top: 1px solid rgb(82,118,114); }
.ro-acc__h { margin: 0; padding: 0; font: inherit; }
.ro-acc__btn {
  display: flex; align-items: center; justify-content: space-between; width: 100%; box-sizing: border-box;
  margin: 0; padding: 15px 0; background: transparent; border: 0; color: inherit; font: inherit;
  text-align: left; cursor: pointer; touch-action: manipulation; -webkit-appearance: none; appearance: none;
}
.ro-acc__btn:focus-visible { outline: 2px solid currentColor; outline-offset: -2px; }
/* title = size 1.8 (47.75px @1470); .975 = measured string-width ratio Beau / Newsreader 300;
   line box held at the reference span's 54px (1.135× its size) */
.ro-acc__title {
  --fit: .975; flex: 1; overflow: hidden; margin: 0; padding-right: 24px;
  color: #133733; white-space: normal; line-height: calc(1.135em / var(--fit));
}
.ro-acc__icon { position: relative; flex: none; width: 24px; height: 24px; color: rgb(82,118,114); }
.ro-acc__icon > span {
  position: absolute; left: 0; top: 50%; width: 100%; height: 1px; margin-top: -.5px;
  background: currentColor; transition: transform .25s;
}
.ro-acc__icon > span + span { transform: rotate(90deg); }
.ro-acc__item[data-open="true"] .ro-acc__icon > span + span { transform: rotate(0deg); }
.ro-acc__dd { display: none; overflow: hidden; box-sizing: border-box; }
.ro-acc__dd.is-open { display: block; }
.ro-acc__desc { box-sizing: border-box; max-width: 300px; min-width: 70%; margin: 16px 0; padding: 0 0 30px; }
/* paragraph = size 1.2 (19.53px @1470); 1.18 = measured string-width ratio All / EB Garamond;
   line-height and tracking held at the reference's 23.43px / .21px */
.ro-acc__desc .ra-body {
  --fit: 1.18; margin: 0; color: #133733;
  line-height: calc(1.2em / var(--fit)); letter-spacing: calc(.0109em / var(--fit));
}
@media (prefers-reduced-motion: reduce) {
  .ro-acc__icon > span { transition: none; }
}

/* ---- Kind words: clone of the reference /offerings "KIND WORDS" section (measured @1470 + 390) ----
   cream, 5.6vmax padding, 11px-gap grid 21 rows (35 phone); terracotta #d39567 shape laid over the photo's
   left edge (phone: shape behind everything, photo inside it), cream monogram + eyebrow, white quote at h2 size */
.ro-kind { position: relative; background: #f7f6ed; color: #fff; padding-block: 5.6vmax; overflow: hidden; }
.ro-kind__grid { --rows-m: 35; --rows-d: 21; }
.ro-kind__shape   { grid-area: 1/2/35/10;  z-index: 1; background: #d39567; }
.ro-kind__img     { grid-area: 3/3/14/9;   z-index: 6; }
.ro-kind__mark    { grid-area: 15/4/18/8;  z-index: 4; }
.ro-kind__eyebrow { grid-area: 18/2/20/10; z-index: 2; justify-content: flex-end; }
.ro-kind__quote   { grid-area: 20/3/31/9;  z-index: 5; justify-content: flex-start; }
.ro-kind__names   { grid-area: 31/2/33/10; z-index: 3; justify-content: flex-start; }
@media (min-width: 768px) {
  .ro-kind__shape   { grid-area: 3/2/19/16;  z-index: 2; }
  .ro-kind__img     { grid-area: 1/15/22/26; z-index: 1; }
  .ro-kind__mark    { grid-area: 5/8/8/10;   z-index: 5; }
  .ro-kind__eyebrow { grid-area: 7/3/9/15;   z-index: 4; }
  .ro-kind__quote   { grid-area: 9/3/16/15;  z-index: 3; }
  .ro-kind__names   { grid-area: 16/3/18/15; z-index: 6; }
}
/* monogram: contained in its block, tinted cream like the hero's */
.ro-kind__mark img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: 50% 50%;
  filter: brightness(0) invert(96%) sepia(10%);
}
/* couple centred in the visible photo: the source is taller than the frame, so plain cover never crops sideways.
   The image is scaled past cover and shifted so the pair (40% across the source) lands on --cx, and sits 55% down
   the spare height. Width stays >= cx/.4 (no gap at the left) and >= frame height/1.5 (no gap at the bottom). */
.ro-kind__img .rr-img { container-type: size; }
.ro-kind__img .rr-img img {
  --cx: 50cqw;
  --w: max(calc(var(--cx) / .4), calc(100cqh / 1.5));
  inset: auto; max-width: none;
  width: var(--w); height: calc(var(--w) * 1.5);
  left: calc(var(--cx) - .4 * var(--w));
  top: calc((100cqh - var(--w) * 1.5) * .55);
}
@media (min-width: 768px) {
  /* the terracotta box covers the photo's left ~7.5%, so centre on what is left visible */
  .ro-kind__img .rr-img img { --cx: 53.75cqw; }
}
/* "KIND WORDS": pre at paragraph size 1.3, cream */
.ro-kind .rr-pre {
  color: #f7f6ed; margin: 0;
  font-size: min(calc(.3 * 1.2vw + 1rem), max(calc(.3 * 19.2px + 1rem), 1.3rem));
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .ro-kind .rr-pre { font-size: calc(.3 * .012 * min(100vh, 900px) + 1rem); }
}
/* quote = size 1.8 (47.75px @1470, 34.23px @390), white, centred; .975 = Beau / Newsreader 300 width ratio,
   line box held at the reference's 1.0208em */
.ro-kind__q {
  --fit: .975; margin: 0; color: #fff; text-align: center;
  line-height: calc(1.1em * (1 - var(--s) / 25) / var(--fit));
}
/* names: 16px italic ("All-It"), line-height 19.2px; 1.16rem because EB Garamond italic draws smaller */
.ro-kind__by {
  font-family: 'EB Garamond', 'Cormorant Garamond', 'Times New Roman', serif;
  font-style: italic; font-weight: 400; font-size: 1.16rem; line-height: 19.2px; letter-spacing: .21px;
  color: #f7f6ed; text-align: center; margin: 0;
}
/* ---- Custom proposal: clone of the reference /offerings "INQUIRE FOR A CUSTOM PROPOSAL" section (measured @1470 + 390) ----
   cream, no padding, 0-gap grid 32 rows (36 phone); h1 size 3.8 + h3 size 1.8 centred in one block (2rem between),
   sage hand-drawn underline under "full-service" (.05em), italic paragraph note below */
.ro-prop { position: relative; background: #f7f6ed; color: #133733; overflow: hidden; }
.ro-prop__grid { --rows-m: 36; --rows-d: 32; }
.ro-prop__eyebrow { grid-area: 2/2/3/10;   z-index: 12; justify-content: flex-start; }
.ro-prop__text    { grid-area: 4/2/28/10;  z-index: 11; justify-content: center; }
.ro-prop__note    { grid-area: 30/2/35/10; z-index: 6;  justify-content: flex-start; }
@media (min-width: 768px) {
  .ro-prop__eyebrow { grid-area: 5/8/6/20;   z-index: 4; }
  .ro-prop__text    { grid-area: 7/6/28/22;  z-index: 3; }
  .ro-prop__note    { grid-area: 29/8/33/20; z-index: 2; }
}
/* eyebrow: pre at paragraph size 1.3 (code = Jost 500 1rem .07em uppercase) */
.ro-prop .rr-pre {
  margin: 0; color: #133733;
  font-size: min(calc(.3 * 1.2vw + 1rem), max(calc(.3 * 19.2px + 1rem), 1.3rem));
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .ro-prop .rr-pre { font-size: calc(.3 * .012 * min(100vh, 900px) + 1rem); }
}
/* h1 65.39px / h3 30.11px @1470 (44.36 / 24.10 @390); .975 = measured string-width ratio Beau / Newsreader 300,
   line boxes held at the reference's */
.ro-prop__h {
  --fit: .975; color: #133733; text-align: center;
  line-height: calc(1.1em * (1 - var(--s) / 25) / var(--fit));
}
/* the underline nodes are appended after the h3, so :last-child no longer zeroes its bottom margin */
.ro-prop__h + .ro-prop__h { margin-bottom: 0; }
/* underline: Newsreader's shorter line box puts the curve ~.02em lower under the baseline than on the reference;
   stroke .0518em (in the HTML) = the reference's 3.25px at its rounded 65px */
.ro-prop .rr-shape { transform: translateY(-.02em); }
/* width ratios measured by setting the reference's own lines in these elements (Newsreader's optical sizing makes
   them size-dependent): h1 .963 / h3 1.011 / note 1.16 on desktop. Portrait phones: h1 1.015; h3 and note are held
   ~1% under their measured 1.032 / 1.164 so the reference's line breaks ("…tailored to", "…a limited number") fit */
.ro-prop h1.ro-prop__h { --fit: .963; }
.ro-prop h3.ro-prop__h { --fit: 1.011; }
.ro-prop .ro-prop__p { --fit: 1.16; }
@media screen and (max-width: 767px) and (orientation: portrait) {
  .ro-prop h1.ro-prop__h { --fit: 1.015; }
  .ro-prop h3.ro-prop__h { --fit: 1.024; }
  .ro-prop .ro-prop__p { --fit: 1.15; }
  /* no single h3 scale reproduces all nine reference breaks (below 1.022 "all" joins line 1, above it "to" drops
     from line 4), so line 4 alone is tracked in by .005em (~.12px a letter) */
  .ro-prop__snug { letter-spacing: -.005em; }
}
/* note: paragraph size 1.2 italic (19.53px @1470, 18.03 @390), line-height 1.2em, .21px tracking;
   1.16 because EB Garamond italic draws smaller than Allrounder italic */
.ro-prop__p {
  --fit: 1.16; color: #133733; text-align: center;
  line-height: calc(1.2em / var(--fit)); letter-spacing: calc(.0109em / var(--fit));
}

/* ---- Ready to begin: clone of the reference /offerings "Are you ready to begin?" section (measured @1470 + 390) ----
   cream, 3.3vmax padding, min-height 33vh (border-box) with the content centred, 11px-gap grid 7 rows (5 phone);
   script line JS-scaled to fill its block (line-height 1), sage medium button centred in its block */
.ro-begin {
  position: relative; box-sizing: border-box; min-height: 33vh;
  display: flex; flex-direction: column; justify-content: center;
  background: #f7f6ed; color: #133733;
}
.ro-begin__grid { --rows-m: 5; --rows-d: 7; width: 100%; }
.ro-begin__head { grid-area: 1/2/3/10; z-index: 1; justify-content: flex-start; }
.ro-begin__cta  { grid-area: 3/2/6/10; z-index: 2; justify-content: center; }
@media (min-width: 768px) {
  .ro-begin__head { grid-area: 1/9/4/19; }
  .ro-begin__cta  { grid-area: 4/10/6/18; }
}
.ro-begin .rr-h1, .ro-begin .rr-h1 strong { font-family: var(--script); font-weight: 400; color: #133733; }
/* Allison's swashes ink ~2.7% past the scaled text box and sit higher than Kallimata's; scale the drawn line back to the
   reference's ink width (582px @1470, 342 @390) and centre it on the reference ink (measured from screenshots).
   A transform leaves the width the scaling script measures untouched */
.ro-begin .rr-h1 { transform: translateY(.066em) scale(.973); transform-origin: 50% 50%; }
/* button: reference futura-pt 16px uppercase .32px, 19.2px / 38.4px padding, 19px line box (273.1 × 57.4), centred —
   also on phones, where the shared container rule would stack and stretch it. Jost inks ~5% bigger than futura-pt at
   the same px (204 × 12 vs 194 × 11 for this label), so 15.2px reproduces the reference's drawn text and button width */
.ro-begin .rr-button-container { flex-direction: row; justify-content: center; text-align: center; }
.ro-begin .rr-button { font-size: 15.2px; letter-spacing: .32px; line-height: 19px; text-align: center; }

/* ---- Planning / Decoration / Entertainment: clones of the reference /offerings "DITCH THE ANXIETY" section (measured @1470 + 390) ----
   cream, .1vmax padding, 0-gap grid 31 rows (49 phone): photo, oval mark, eyebrow, h3 size 1.8 with one script word and a
   paragraph size 1.2 below it. --flip mirrors the desktop columns (photo right, text left); phones stack the same way for all */
.ro-svc { position: relative; background: #f7f6ed; color: #133733; overflow: hidden; }
.ro-svc__grid { --rows-m: 49; --rows-d: 31; }
.ro-svc__img     { grid-area: 3/2/24/10;  z-index: 18; justify-content: center; }
.ro-svc__mark    { grid-area: 26/2/32/10; z-index: 19; justify-content: center; align-items: center; }
.ro-svc__eyebrow { grid-area: 33/2/34/10; z-index: 10; justify-content: flex-start; }
.ro-svc__text    { grid-area: 35/2/48/10; z-index: 8;  justify-content: flex-start; }
@media (min-width: 768px) {
  .ro-svc__img     { grid-area: 3/2/30/14;   z-index: 3; }
  .ro-svc__mark    { grid-area: 8/17/13/23;  z-index: 5; }
  .ro-svc__eyebrow { grid-area: 14/16/15/24; z-index: 4; justify-content: center; }
  .ro-svc__text    { grid-area: 16/15/27/25; z-index: 2; justify-content: center; }
  .ro-svc--flip .ro-svc__img     { grid-area: 3/14/30/26; }
  .ro-svc--flip .ro-svc__mark    { grid-area: 8/5/13/11; }
  .ro-svc--flip .ro-svc__eyebrow { grid-area: 14/4/15/12; }
  .ro-svc--flip .ro-svc__text    { grid-area: 16/3/27/13; }
}
/* section title above the monogram (added for Humsafar, not in the reference): heading size 1.8 like the process
   accordion titles, Newsreader 300, centred on the text column, bottom-aligned one row above the logo (phone: in the
   two rows between photo and logo) */
.ro-svc__title { grid-area: 24/2/26/10; z-index: 20; justify-content: center; padding-block: 12px; }
@media (min-width: 768px) {
  .ro-svc__title { grid-area: 4/15/7/25; z-index: 6; justify-content: flex-end; padding-block: 0; }
  .ro-svc--flip .ro-svc__title { grid-area: 4/3/7/13; }
}
.ro-svc__t {
  --fit: .975; margin: 0; color: #133733; text-align: center;
  line-height: calc(1.1em * (1 - var(--s) / 25) / var(--fit));
}
/* monogram in the reference's logo block (no oval ring, per the user): the Humsafar mark contained in the whole block
   (≈251 × 151.6 @1470), ink #133733 */
.ro-svc__logo {
  display: block; width: 100%; height: 100%;
  background: #133733;
  -webkit-mask: url(../images/hw-logo.png) center / contain no-repeat; mask: url(../images/hw-logo.png) center / contain no-repeat;
}
/* eyebrow: reference scaled text, futura-pt 500 .07em uppercase, one line — 18.4px @1470 (1.2517vw), 13.4px @390 (3.436vw);
   --eb-fit corrects Jost's drawn width to futura-pt's */
.ro-svc .rr-pre { --eb-fit: .911; margin: 0; white-space: nowrap; line-height: 1em; font-size: calc(var(--eb-fit) * 1.2517vw); }
.ro-svc .rr-pre code { font-size: 1em; line-height: 1em; }
@media (max-width: 767px) {
  .ro-svc .rr-pre { font-size: calc(var(--eb-fit) * 3.436vw); }
}
/* h3 30.11px / 32.06px @1470 (24.10 / 25.66 @390), centred, 2rem to the paragraph; script word at the same px in the
   reference (Kallimata) — --script-fit scales Allison to the reference word's width, line-height 0 keeps the line box */
/* fits measured by setting the reference's own lines in these elements at its px sizes:
   h3 1.026 / p 1.201 / eyebrow .911 / script word 1.546 on desktop; h3 1.043 / p 1.209 on portrait phones */
.ro-svc__h {
  --fit: 1.026; --script-fit: 1.546; color: #133733; text-align: center;
  line-height: calc(1.1em * (1 - var(--s) / 25) / var(--fit));
}
.ro-svc__h strong { font-family: var(--script); font-weight: 400; font-size: calc(var(--script-fit) * 1em); line-height: 0; }
/* paragraph 19.53px / 23.43px, .21px tracking @1470 (18.03 / 21.63 @390), centred */
.ro-svc__p {
  --fit: 1.201; color: #133733; text-align: center;
  line-height: calc(1.2em / var(--fit)); letter-spacing: calc(.0109em / var(--fit));
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .ro-svc__h { --fit: 1.043; }
  .ro-svc__p { --fit: 1.209; }
}

/* anchor jumps land below the fixed nav */
.off-chapter { scroll-margin-top: var(--nav-h, 73px); }
@media (min-width: 981px) {
  .svc-intro__grid--flip { grid-template-columns: 1fr 1.02fr; }
  .svc-intro__grid--flip .svc-figure { order: 2; transform: rotate(1.1deg); }
  .svc-intro__grid--flip .svc-figure:hover { transform: rotate(0deg) translateY(-6px); }
}

/* ---- "Enquire" card form — vendor + career pages, clone of the reference light-card form ---- */
.enquire { padding: clamp(56px, 7vw, 96px) 0; }
.enquire__card {
  max-width: 980px; margin: 0 auto; padding: clamp(32px, 5vw, 64px);
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 1px 3px rgba(31,46,37,.06), 0 40px 70px -44px rgba(31,46,37,.4);
}
.enquire__title {
  font-family: var(--display); font-weight: 500; color: var(--ink);
  font-size: clamp(30px, 4vw, 46px); letter-spacing: .1em; text-transform: uppercase;
  text-align: center; margin: 0 0 clamp(28px, 4vw, 44px);
}
.enquire-form { gap: 24px; }
.enquire-form .field label {
  display: block; font-family: var(--serif); font-size: 17px; color: #111; margin-bottom: 10px;
}
.enquire-form .field input,
.enquire-form .field textarea,
.enquire-form .field select {
  width: 100%; min-width: 0; max-width: 100%; font-family: var(--sans); font-size: 15.5px;
  padding: 13px 16px; background: var(--paper); color: var(--text);
  border: 1px solid var(--line); border-radius: 6px;
}
.enquire-form .field input::placeholder,
.enquire-form .field textarea::placeholder { color: var(--muted); }
.enquire-form .field input:focus,
.enquire-form .field textarea:focus,
.enquire-form .field select:focus { outline: none; border-color: var(--ink); }
.enquire-form .field textarea { min-height: 130px; resize: vertical; }
.enquire-form .field input[type="file"] { padding: 12px; cursor: pointer; }
.enquire-form__btn {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  margin-top: 4px; padding: 16px 40px; border: 0; border-radius: 4px;
  background: var(--ink); color: #e1b3bd;
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  cursor: pointer; transition: opacity .3s ease;
}
.enquire-form__btn:hover { opacity: .85; }

@media (max-width: 480px) {
  .enquire-form .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer (injected by main.js) ---------- */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding-top: clamp(10px, 1.4vw, 16px);
}
.footer__top { padding: 0 var(--gutter) clamp(8px, 1vw, 14px); }
.footer__wordmark { display: flex; flex-direction: row; align-items: baseline; flex-wrap: wrap; column-gap: 18px; row-gap: 4px; transition: color .3s ease; }
.footer__wordmark-main {
  display: block;
  font-family: var(--brand);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(18px, 3vw, 44px);
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}
.footer__wordmark-sub {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  text-transform: none;
  letter-spacing: .04em;
  font-size: clamp(13px, 1.3vw, 18px);
  color: var(--gold-dark);
  white-space: nowrap;
}
.footer__wordmark:hover .footer__wordmark-main { color: var(--gold-dark); }
@media (max-width: 640px) { .footer__wordmark-main { white-space: normal; font-size: clamp(20px, 7vw, 32px); } }

.footer__strip {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  width: 100%;
}
.footer__frame { position: relative; height: clamp(90px, 11vw, 190px); overflow: hidden; background: var(--cream); }
.footer__frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.footer__frame:hover img { transform: scale(1.05); }

.footer__mid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 48px;
  padding: clamp(12px, 1.8vw, 22px) 0 clamp(10px, 1.4vw, 16px);
}
.footer__reach { display: flex; flex-direction: column; gap: 10px; }
.footer__social { display: flex; align-items: center; gap: 14px; }
.footer__social a { display: block; width: 18px; height: 18px; color: var(--ink); transition: color .3s ease; }
.footer__social a:hover { color: var(--gold-dark); }
.footer__social svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.footer__email {
  font-family: var(--sans); font-size: 13px; color: var(--text);
  text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--line);
}
.footer__email:hover { color: var(--gold-dark); }

.footer__nav { width: 100%; max-width: 480px; }
.footer__nav-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding: 7px 0; border-bottom: 1px solid var(--line);
}
.footer__nav-link {
  font-family: var(--sans); font-size: clamp(13px, 1.2vw, 16px); letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink); transition: color .3s ease;
}
.footer__nav-link:hover { color: var(--gold-dark); }
.footer__nav-link[aria-current="page"] { color: var(--gold-dark); }

.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 20px;
  padding: 10px 0; border-top: 1px solid var(--line);
  font-family: var(--sans); font-size: 11px; letter-spacing: .05em; color: var(--muted);
}
.footer__tagline { text-transform: uppercase; letter-spacing: .12em; order: 3; flex: 1 1 100%; text-align: center; }
.footer__privacy { color: var(--muted); }
.footer__privacy:hover { color: var(--gold-dark); }

@media (min-width: 640px) {
  .footer__tagline { order: 0; flex: 0 1 auto; text-align: center; }
}
@media (max-width: 640px) {
  .footer__strip { grid-template-columns: repeat(4, 1fr); }
  .footer__frame:nth-child(n+5) { display: none; }
  .footer__nav { max-width: 100%; }
}
