/* ============================================================
   Yardley Immersive Beauty — design system
   Palette per PRD §20: warm cream, soft beige, muted rose,
   espresso brown, gold accents, charcoal text, botanical green.
   ============================================================ */

:root {
  --paper:      #F6F1E8;
  --sand:       #ECE3D3;
  --sand-deep:  #E2D5C0;
  --rose:       #C69B92;
  --rose-deep:  #A97E75;
  --espresso:   #33241C;
  --espresso-2: #463328;
  --gold:       #7E6126; /* deep antique gold — ≥4.5:1 on cream and as button fill (WCAG AA) */
  --gold-soft:  #C7A96B;
  --ink:        #2E2823;
  --ink-soft:   #6B5F55;
  --green:      #40573F;
  --white:      #FFFDF9;

  --serif: "Instrument Serif", "Noto Serif SC", Georgia, "Songti SC", serif;
  --sans:  "Manrope", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;

  --max-w: 1160px;
  --radius: 2px;
  --shadow: 0 18px 40px -18px rgba(51, 36, 28, .28);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html:lang(zh-CN) { word-break: normal; }
body {
  overflow-x: clip; /* belt-and-suspenders: decorative layers must never widen the page */
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }
[hidden] { display: none !important; }
summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.8rem, 8vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.lede { font-size: clamp(1.05rem, 1.8vw, 1.2rem); line-height: 1.7; color: var(--ink-soft); max-width: 34rem; }
p + p { margin-top: 1em; }

/* Eyebrow — the recurring "ritual mark" motif */
.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold-soft);
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--espresso); color: var(--paper); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark .lede { color: rgba(246, 241, 232, .75); }
.section-head { max-width: 46em; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 2rem;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn--primary { background: var(--espresso); color: var(--paper); }
.btn--primary:hover { background: var(--espresso-2); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: #64501E; }
.btn--ghost { border: 1px solid currentColor; color: var(--espresso); background: transparent; }
.section--dark .btn--ghost, .hero .btn--ghost { color: var(--paper); }
.section--dark .btn--primary { background: var(--paper); color: var(--espresso); }
.btn--sm { padding: .55rem 1.15rem; font-size: .85rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.text-link {
  font-weight: 600;
  color: var(--espresso);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: .1em;
  transition: border-color .2s;
}
.text-link:hover { border-color: var(--espresso); }

/* Understated arrow link with thin animated underline */
.link-arrow {
  display: inline-block;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-bottom: .25em;
}
.link-arrow::after { content: "\2192"; margin-left: .5em; display: inline-block; transition: transform .3s var(--ease); }
.link-arrow::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  opacity: .45;
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .4s var(--ease), opacity .3s;
}
.link-arrow:hover::before { transform: scaleX(1); opacity: .9; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--espresso);
  color: var(--paper);
  text-align: center;
  font-size: .82rem;
  letter-spacing: .08em;
  padding: .55rem 1rem;
}
.announce .dot { color: var(--gold-soft); margin-inline: .5em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.is-stuck {
  border-bottom-color: var(--sand-deep);
  box-shadow: 0 10px 30px -22px rgba(51, 36, 28, .4);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: .9rem;
}
.brand {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: .01em;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
  transition: color .35s var(--ease);
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .3rem;
  transition: color .35s var(--ease);
}
.main-nav { display: flex; gap: 1.6rem; margin-left: auto; }
.main-nav a {
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color .2s;
  padding-block: .3rem;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a[aria-current="page"] { border-bottom: 1px solid var(--gold); }
.header-actions { display: flex; align-items: center; gap: .9rem; }

.lang-toggle { display: inline-flex; align-items: center; }
.lang-toggle button {
  padding: .5rem .55rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-soft);
  box-shadow: inset 0 -2px 0 transparent;
  transition: color .2s, box-shadow .2s;
}
.lang-toggle button:hover { color: var(--ink); }
.lang-toggle button[aria-pressed="true"] { color: var(--ink); box-shadow: inset 0 -2px 0 var(--gold); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: .95rem .7rem; /* ≥44px tap target */
}
.nav-burger span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--paper);
  border-bottom: 1px solid var(--sand-deep);
  padding: .75rem 0 1.5rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: .8rem 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
}
.mobile-nav .btn { margin-top: 1.25rem; width: 100%; }

/* ---------- Transparent header over hero ---------- */
.chrome-overlay { position: absolute; top: 0; left: 0; right: 0; z-index: 60; }
.chrome-overlay .announce { display: none; }
.chrome-overlay .site-header {
  position: relative;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(246, 241, 232, .16);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.chrome-overlay .site-header.is-stuck {
  position: fixed;
  inset-inline: 0;
  top: 0;
  background: var(--paper);
  border-bottom-color: var(--sand-deep);
  box-shadow: 0 10px 30px -22px rgba(51, 36, 28, .4);
}
.chrome-overlay .site-header.is-open-menu { background: var(--paper); border-bottom-color: var(--sand-deep); }
/* light text while transparent */
.chrome-overlay .site-header:not(.is-stuck):not(.is-open-menu) .brand { color: var(--paper); }
.chrome-overlay .site-header:not(.is-stuck):not(.is-open-menu) .brand small { color: var(--gold-soft); }
.chrome-overlay .site-header:not(.is-stuck):not(.is-open-menu) .main-nav a { color: rgba(246, 241, 232, .78); }
.chrome-overlay .site-header:not(.is-stuck):not(.is-open-menu) .main-nav a:hover,
.chrome-overlay .site-header:not(.is-stuck):not(.is-open-menu) .main-nav a[aria-current="page"] { color: var(--paper); }
.chrome-overlay .site-header:not(.is-stuck):not(.is-open-menu) .lang-toggle button { color: rgba(246, 241, 232, .65); }
.chrome-overlay .site-header:not(.is-stuck):not(.is-open-menu) .lang-toggle button[aria-pressed="true"] { color: var(--paper); box-shadow: inset 0 -2px 0 var(--gold-soft); }
.chrome-overlay .site-header:not(.is-stuck):not(.is-open-menu) .lang-sep { color: rgba(246, 241, 232, .4); }
.chrome-overlay .site-header:not(.is-stuck):not(.is-open-menu) .nav-burger span { background: var(--paper); }

.lang-sep { color: var(--sand-deep); font-size: .8rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;   /* full-page opening section */
  min-height: 100svh;  /* stable on mobile browsers with collapsing URL bars */
  display: flex;
  align-items: flex-end;
  background: var(--espresso);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero-atmosphere, .atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 80% at 78% 18%, rgba(198, 155, 146, .34), transparent 65%),
    radial-gradient(48% 60% at 14% 82%, rgba(169, 133, 63, .26), transparent 68%),
    radial-gradient(70% 90% at 50% 110%, rgba(70, 51, 40, .9), transparent 70%),
    linear-gradient(160deg, #2A1D16, #3B2A20 55%, #33241C);
}
.hero-atmosphere::after, .atmosphere::after {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(35% 45% at 65% 40%, rgba(246, 241, 232, .07), transparent 70%),
    radial-gradient(30% 40% at 30% 60%, rgba(198, 155, 146, .12), transparent 70%);
  animation: drift 26s var(--ease) infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-3%, -2%, 0) scale(1); }
  to   { transform: translate3d(3%, 3%, 0) scale(1.06); }
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(8rem, 20vh, 12rem);
  padding-bottom: clamp(6rem, 14vh, 9rem);
  max-width: var(--max-w);
}
.hero-content { max-width: 620px; }
.hero-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, .72);
  margin-bottom: 1.4rem;
}
.hero h1 {
  color: var(--paper);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1.02;
  letter-spacing: -.02em;
}
.hero h1 .line { display: block; }
.hero .copy {
  color: rgba(246, 241, 232, .78);
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: 1.02rem;
  line-height: 1.7;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  margin-top: 2.25rem;
}
.hero-actions .link-arrow { color: rgba(246, 241, 232, .85); }
.hero-actions .link-arrow:hover { color: var(--paper); }
.hero-edge-meta {
  position: absolute;
  z-index: 2;
  bottom: 1.4rem;
  right: clamp(1.25rem, 4vw, 2.5rem);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(246, 241, 232, .55);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Word-by-word hero reveal */
.hero .w { display: inline-block; opacity: 0; transform: translateY(.35em); animation: rise .9s var(--ease) forwards; }
.hero .w:nth-child(2) { animation-delay: .18s; }
.hero .w:nth-child(3) { animation-delay: .36s; }
.hero .w:nth-child(4) { animation-delay: .5s; }
.hero .w:nth-child(5) { animation-delay: .68s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* Photo hero layers */
.hero-photo { position: absolute; inset: 0; z-index: -3; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(26, 16, 11, .84) 0%, rgba(26, 16, 11, .38) 45%, rgba(26, 16, 11, .3) 100%),
    linear-gradient(100deg, rgba(26, 16, 11, .5) 0%, transparent 55%);
}

/* Small page hero (interior pages) */
.page-hero { padding: clamp(2.25rem, 8vw, 6rem) 0 clamp(2.25rem, 5vw, 4rem); }
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }

/* ---------- Trust row ---------- */
.trust {
  border-top: 1px solid var(--sand-deep);
  border-bottom: 1px solid var(--sand-deep);
  background: var(--paper);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
}
.trust-item {
  padding: 1.5rem 1rem;
  text-align: center;
  border-left: 1px solid var(--sand);
}
.trust-item:first-child { border-left: none; }
.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}
.trust-item span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card--link { text-decoration: none; color: inherit; }
.card--link .card-body { gap: .55rem; }
.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.card:hover .card-media img { transform: scale(1.04); }
.card-media {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: rgba(246, 241, 232, .55);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.card-media--head { background: linear-gradient(150deg, #4A362B, #6B4E3E 60%, #8C6C55); }
.card-media--massage { background: linear-gradient(150deg, #3E3229, #5A4A3C 55%, #40573F); }
.card-media--nails { background: linear-gradient(150deg, #5A4038, #A97E75 70%, #C69B92); }
.card-media--vip { background: linear-gradient(150deg, #33241C, #6B4E3E 60%, #A9853F); }
.card-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.card-body h3 { font-size: 1.35rem; }
.card-body p { color: var(--ink-soft); font-size: .97rem; }
.card-list { color: var(--ink-soft); font-size: .95rem; display: grid; gap: .3rem; }
.card-list li::before { content: "•"; color: var(--gold); margin-right: .55em; }
.card-cta { margin-top: auto; display: flex; gap: .75rem; padding-top: .8rem; flex-wrap: wrap; }

/* ---------- Feature (senses) grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: rgba(246, 241, 232, .14);
  border: 1px solid rgba(246, 241, 232, .14);
}
.feature-item { background: var(--espresso); padding: 1.8rem 1.5rem; }
.feature-item h3 { font-size: 1.1rem; margin-bottom: .4rem; color: var(--gold-soft); }
.feature-item p { font-size: .92rem; color: rgba(246, 241, 232, .68); }

/* ---------- Packages ---------- */
.package-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.package {
  background: var(--white);
  border: 1px solid var(--sand-deep);
  border-top: 3px solid var(--gold);
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.package:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.package .duration { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.package h3 { font-size: 1.3rem; }
.package .zh { font-size: .95rem; color: var(--ink-soft); }
.package ul { color: var(--ink-soft); font-size: .95rem; display: grid; gap: .3rem; }
.package ul li::before { content: "•"; color: var(--gold); margin-right: .55em; }
.price-row { display: flex; align-items: baseline; gap: .9rem; margin-top: auto; padding-top: .6rem; }
.price-std { text-decoration: line-through; color: var(--ink-soft); font-size: .95rem; }
.price-vip { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.price-vip small { font-size: .72rem; font-family: var(--sans); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); display: block; }
.save-tag {
  margin-left: auto;
  font-size: .75rem;
  font-weight: 700;
  color: var(--green);
  background: color-mix(in srgb, var(--green) 10%, transparent);
  padding: .25rem .6rem;
  border-radius: 20px;
}

/* ---------- Service accordions ---------- */
.svc-cat { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.svc-cat > h2 { margin-bottom: 1.5rem; }
.svc {
  background: var(--white);
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius);
  margin-bottom: .75rem;
}
.svc summary {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  transition: background .2s;
}
.svc summary:hover { background: var(--paper); }
.svc summary h3 { font-size: 1.2rem; flex: 1; }
.svc .meta { font-size: .85rem; color: var(--ink-soft); white-space: nowrap; }
.svc .meta strong { color: var(--ink); font-weight: 600; }
.svc summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  transition: transform .3s var(--ease);
}
.svc[open] summary::after { transform: rotate(45deg); }
.svc-detail { padding: 0 1.5rem 1.5rem; color: var(--ink-soft); max-width: 60em; }
.svc-detail .btn { margin-top: 1.1rem; }
.svc-detail dl { display: grid; gap: .35rem; margin-top: .9rem; font-size: .95rem; }
.svc-detail dt { font-weight: 600; color: var(--ink); }
.svc-detail dd { margin-bottom: .5rem; }
.tbc {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--rose-deep);
  background: color-mix(in srgb, var(--rose) 16%, transparent);
  padding: .2rem .6rem;
  border-radius: 20px;
}

/* ---------- Gallery ---------- */
.filter-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.filter-row button {
  padding: .5rem 1.1rem;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--sand-deep);
  border-radius: 20px;
  color: var(--ink-soft);
  transition: all .2s;
}
.filter-row button[aria-pressed="true"] { background: var(--espresso); border-color: var(--espresso); color: var(--paper); }
.gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.g-tile {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem;
  color: rgba(246, 241, 232, .9);
  overflow: hidden;
}
.g-tile em { font-family: var(--serif); font-style: normal; font-size: 1.05rem; }
.g-tile span { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(246, 241, 232, .5); margin-top: .2rem; }
.g-tile.is-hidden { display: none; }
.g-1 { background: linear-gradient(160deg, #463328, #6B4E3E 60%, #93705A); }
.g-2 { background: linear-gradient(160deg, #33241C, #5A4A3C 55%, #A9853F); }
.g-3 { background: linear-gradient(160deg, #4A362B, #A97E75 75%, #C69B92); }
.g-4 { background: linear-gradient(160deg, #2E2823, #40573F 70%, #5F7A5C); }
.g-5 { background: linear-gradient(160deg, #5A4038, #8C6C55 55%, #C7A96B); }
.g-6 { background: linear-gradient(160deg, #3B2A20, #463328 45%, #6B5F55); }

/* ---------- Full-bleed image band ---------- */
.img-band {
  position: relative;
  min-height: clamp(360px, 55vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
}
.img-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.img-band .veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(42, 29, 22, .15), rgba(42, 29, 22, .82));
}
.img-band .wrap { padding-block: clamp(2.5rem, 6vw, 4rem); max-width: var(--max-w); width: 100%; }
.img-band h2 { color: var(--paper); }
.img-band .lede { color: rgba(246, 241, 232, .82); margin-top: .9rem; }

/* Eyebrows over dark surfaces need the light gold */
.section--dark .eyebrow, .img-band .eyebrow, .hero .eyebrow { color: var(--gold-soft); }
.section--dark .eyebrow::before, .img-band .eyebrow::before, .hero .eyebrow::before { background: var(--gold-soft); }

/* ---------- Homepage photo grid ---------- */
.photo-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); margin-bottom: 2rem; }
.photo-tile {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.photo-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.photo-tile:hover img { transform: scale(1.04); }
@media (min-width: 700px) {
  .photo-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Reviews / quote ---------- */
.quote-panel {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.quote-panel .display { font-size: clamp(1.5rem, 3.4vw, 2.3rem); font-weight: 400; }
.quote-panel .note { margin-top: 1.5rem; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Location ---------- */
.loc-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1fr; align-items: start; }
.loc-grid .map-frame { border: 1px solid var(--sand-deep); border-radius: var(--radius); overflow: hidden; }
.map-frame iframe { width: 100%; height: 420px; border: 0; }
.loc-info dl { display: grid; gap: 1.1rem; margin-block: 1.5rem; }
.loc-info dt { font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.loc-info dd { font-size: 1.05rem; }

/* ---------- FAQ ---------- */
.faq-group { max-width: 780px; }
.faq-group h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.faq {
  border-bottom: 1px solid var(--sand-deep);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: 1.02rem;
}
.faq summary::after { content: "+"; font-family: var(--serif); font-size: 1.3rem; color: var(--gold); transition: transform .3s var(--ease); }
.faq[open] summary::after { transform: rotate(45deg); }
.faq div { padding: 0 0 1.2rem; color: var(--ink-soft); max-width: 56em; }

/* ---------- Forms ---------- */
.form-panel { max-width: 640px; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem 1rem;
  font: inherit;
  font-size: .97rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.field-check { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.field-check input { margin-top: .3rem; width: 1.05rem; height: 1.05rem; accent-color: var(--espresso); }
.form-note {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--sand);
  border-left: 3px solid var(--gold);
  font-size: .92rem;
  color: var(--ink-soft);
}
fieldset { border: none; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; isolation: isolate; }
.cta-band .wrap { max-width: 760px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: rgba(246, 241, 232, .72); font-size: .93rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
.footer-grid h3 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.footer-grid a { text-decoration: none; transition: color .2s; }
.footer-grid a:hover { color: var(--paper); }
.footer-grid li { margin-bottom: .55rem; }
.footer-brand .brand { color: var(--paper); }
.footer-brand p { margin-top: 1rem; max-width: 30em; }
.footer-bottom {
  border-top: 1px solid rgba(246, 241, 232, .12);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(246, 241, 232, .45);
}

/* ---------- Mobile sticky action bar ---------- */
.sticky-bar {
  display: none;
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 70;
  background: var(--espresso);
  border-top: 1px solid rgba(246, 241, 232, .14);
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-bar a {
  flex: 1;
  text-align: center;
  padding: .95rem .5rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--paper);
  text-decoration: none;
}
.sticky-bar a + a { border-left: 1px solid rgba(246, 241, 232, .14); }
.sticky-bar a.primary { background: var(--gold); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-burger { display: flex; }
  .header-actions { margin-left: auto; }
  .header-actions .btn { display: none; }
  .lang-toggle button { padding: .7rem .6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 3.4rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-item { border-left: none; border-top: 1px solid var(--sand); }
  .svc summary { flex-wrap: wrap; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero .w { opacity: 1; transform: none; }
}
