/* ============================================================
   Sun Therapy — Chapel Allerton, Leeds
   Editorial seaside design language
   Deep palm green · champagne gold · warm cream · real photography
   ============================================================ */

:root {
  /* Rebecca's brief: greens to match the shop, summer/holiday vibes */
  --ink:        #082B21;   /* deep palm green — text, footer, dark sections */
  --pine:       #10473A;   /* palm green — dark section partner */
  --ink-soft:   #47635A;   /* muted copy */
  --gold:       #E4C089;   /* champagne gold */
  --gold-deep:  #BE9354;   /* gold on cream */
  --cream:      #FBF6EC;   /* warm paper background */
  --cream-2:    #EFE7D8;   /* rules / dune shadow */
  --white:      #FFFFFF;

  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Outfit', -apple-system, sans-serif;

  --pad-x: clamp(24px, 5vw, 56px);
  --maxw: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; font-size: 106.25%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; }
h2 em, h1 em { font-style: italic; font-weight: 500; color: var(--gold-deep); }

/* ---------- labels ---------- */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: '';
  width: 34px; height: 1px;
  background: currentColor;
  opacity: 0.7;
}

/* ---------- film grain ---------- */
.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 5;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--sans);
  font-size: 0.9rem; letter-spacing: 0.06em; font-weight: 500;
  padding: 17px 36px; border-radius: 100px;
  cursor: pointer; border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s, color 0.25s;
}
.btn-gold {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 18px 40px -14px rgba(228,192,137,0.7);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -14px rgba(228,192,137,0.85); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { transform: translateY(-2px); background: var(--pine); }
.btn-line {
  border: 1px solid rgba(255,255,255,0.55); color: var(--white);
  background: transparent;
}
.btn-line:hover { background: rgba(255,255,255,0.12); }

.btn-text { color: var(--white); letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 14px; font-size: 0.9rem; font-weight: 500; }
.btn-text .circle {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.btn-text:hover .circle { background: rgba(255,255,255,0.14); border-color: var(--white); }

/* ---------- header (floating pill bar) ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 15px var(--pad-x);
  transition: padding 0.3s ease;
  color: var(--ink);
}
.site-header .wrap {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 9px 10px 9px 22px;
  background: rgba(251, 246, 236, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  box-shadow: 0 12px 34px -16px rgba(8, 43, 33, 0.42);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled { padding-top: 10px; padding-bottom: 10px; }
.site-header.scrolled .wrap {
  background: var(--cream);
  box-shadow: 0 14px 40px -18px rgba(8, 43, 33, 0.5);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.85;
}
.brand .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.brand .name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 3px;
  font-weight: 400;
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.9;
  transition: opacity 0.2s, color 0.2s;
}
.main-nav a:hover { opacity: 1; color: var(--gold-deep); }
.main-nav a.active { opacity: 1; color: var(--gold-deep); position: relative; }
.main-nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -7px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.main-nav .nav-book.active { background: var(--gold-deep); border-color: var(--gold-deep); }
.main-nav .nav-book.active::after { display: none; }
.main-nav .nav-book {
  padding: 11px 24px;
  background: var(--gold); color: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 100px;
  letter-spacing: 0.12em;
  opacity: 1;
}
.main-nav .nav-book:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--ink) !important; }

/* mobile nav */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  z-index: 110; width: 42px; height: 42px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: currentColor; position: relative;
  transition: background 0.2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 22px; height: 1.5px; background: inherit;
  transition: transform 0.25s ease, top 0.25s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); background: var(--ink); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); background: var(--ink); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0;
    background: var(--cream);
    flex-direction: column; justify-content: center; gap: 30px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  body.nav-open .main-nav { transform: translateX(0); }
  .main-nav a { color: var(--ink) !important; font-size: 1.05rem; }
  .main-nav a.active { color: var(--gold-deep) !important; }
  .main-nav .nav-book { color: var(--ink) !important; padding: 13px 30px; }
}

/* ---------- hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column;
  color: var(--white);
  overflow: hidden;
}
.hero-media, .page-hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .page-hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media img {
  transform: scale(1.06);
  animation: slowPan 26s ease-in-out infinite alternate;
}
@keyframes slowPan {
  from { transform: scale(1.06) translate(0, 0); }
  to   { transform: scale(1.12) translate(-2%, -1.5%); }
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(102deg, rgba(6,33,25,0.8) 0%, rgba(6,33,25,0.44) 42%, rgba(6,33,25,0.08) 72%),
    linear-gradient(to top, rgba(6,33,25,0.74) 0%, rgba(6,33,25,0) 34%),
    linear-gradient(to bottom, rgba(6,33,25,0.45) 0%, rgba(6,33,25,0) 16%);
}

.hero-body {
  position: relative; z-index: 6;
  flex: 1; display: flex; align-items: center; justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
  padding: 140px var(--pad-x) 60px;
}
.hero-inner { max-width: 680px; }

/* framed storefront photo on the right of the hero */
.hero-figure { flex-shrink: 0; width: min(53vw, 700px); position: relative; align-self: center; margin-right: clamp(12px, 3.5vw, 64px); }
.hero-figure .frame {
  position: relative; overflow: hidden; aspect-ratio: 4 / 3;
  border: 5px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 40px 90px -28px rgba(0, 0, 0, 0.6);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-figure .fig-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  background: rgba(251, 246, 236, 0.92);
  color: var(--ink); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; padding: 8px 14px; border-radius: 100px;
}
@media (max-width: 960px) { .hero-figure { display: none; } .hero-inner { max-width: 780px; } }
.hero .eyebrow { color: var(--gold); margin-bottom: 30px; }
.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.6rem);
  letter-spacing: -0.015em;
  margin-bottom: 30px;
}
.hero h1 em { color: var(--gold); }
.hero-sub {
  font-size: 1.14rem; font-weight: 300; line-height: 1.65;
  color: rgba(255,255,255,0.92);
  max-width: 36rem;
  margin-bottom: 42px;
}
.hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* facts bar */
.hero-facts {
  position: relative; z-index: 6;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.16);
}
.fact { padding: 26px var(--pad-x); border-left: 1px solid rgba(255,255,255,0.14); }
.fact:first-child { border-left: none; }
.fact .k {
  font-size: 0.64rem; letter-spacing: 0.28em; text-transform: uppercase;
  opacity: 0.62; margin-bottom: 9px; font-weight: 500;
}
.fact .v {
  font-family: var(--serif); font-size: 1.12rem;
  display: flex; align-items: center; gap: 9px;
  white-space: nowrap;
}
.fact .v .stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 2px; }
@media (max-width: 960px) {
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .fact { padding: 16px 20px; min-width: 0; border-top: 1px solid rgba(255,255,255,0.1); }
  .fact:nth-child(3) { border-left: none; }
  .fact .v { font-size: 1rem; white-space: normal; }
}

/* ---------- inner page hero ---------- */
.page-hero {
  position: relative;
  min-height: 84vh; min-height: 84svh;
  display: flex; align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  padding-bottom: clamp(64px, 9vh, 120px);
}
/* slim solid title band (product pages) — no seaside photo, lands you on the real content fast */
.page-hero.page-hero-slim {
  min-height: 0;
  background: var(--ink);
  padding: clamp(148px, 21vh, 208px) 0 clamp(44px, 6vh, 68px);
}
.page-hero-slim .page-hero-media,
.page-hero-slim .grain { display: none; }
.page-hero-slim .eyebrow { color: var(--gold); }
.page-hero-slim h1 { color: var(--cream); }
.page-hero-slim p { color: rgba(251,246,236,0.82); }

/* full-viewport variant (e.g. About shopfront) — immersive, shows the whole photo */
.page-hero.page-hero-tall { min-height: 100vh; min-height: 100svh; padding-bottom: clamp(48px, 7vh, 96px); }
.page-hero-tall .eyebrow { font-size: 0.8rem; margin-bottom: 24px; }
.page-hero-tall h1 { font-size: clamp(3.4rem, 7.2vw, 6.4rem); margin-bottom: 22px; }
.page-hero-tall p { font-size: clamp(1.15rem, 1.8vw, 1.5rem); max-width: 42rem; }

/* full-photo hero — shows the ENTIRE image uncropped, with the title in a band beneath */
.page-hero.page-hero-photo { min-height: 0; display: block; padding: 0; overflow: hidden; background: var(--ink); color: var(--cream); }
.page-hero.page-hero-photo .page-hero-media { position: relative; inset: auto; }
.page-hero.page-hero-photo .page-hero-media img { position: static; width: 100%; height: auto; display: block; }
.page-hero.page-hero-photo .page-hero-media::after { display: none; }
.page-hero.page-hero-photo .grain { display: none; }
.page-hero.page-hero-photo .wrap { position: static; z-index: 2; padding: clamp(34px, 5vw, 60px) var(--pad-x); }
.page-hero.page-hero-photo .eyebrow { margin-bottom: 14px; color: var(--gold); }
.page-hero.page-hero-photo h1 { font-size: clamp(2.2rem, 4.6vw, 4.4rem); margin-bottom: 12px; color: var(--cream); }
.page-hero.page-hero-photo p { font-size: clamp(1rem, 1.4vw, 1.3rem); max-width: 42rem; color: rgba(251,246,236,0.85); }
.page-hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(6,33,25,0.78) 0%, rgba(6,33,25,0.2) 55%, rgba(6,33,25,0.38) 100%);
}
.page-hero .wrap { position: relative; z-index: 6; width: 100%; }
.page-hero .eyebrow { color: var(--gold); margin-bottom: 22px; font-size: 0.82rem; }
.page-hero h1 {
  font-size: clamp(3.6rem, 8.5vw, 7.2rem);
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem); font-weight: 300;
  color: rgba(255,255,255,0.9);
  max-width: 40rem;
}

/* ---------- sections ---------- */
.section { padding: clamp(80px, 10vw, 128px) 0; }
.section-head { max-width: 660px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head .eyebrow { margin-bottom: 24px; }
.section-head h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-head p { color: var(--ink-soft); font-weight: 300; font-size: 1.06rem; line-height: 1.7; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::after {
  content: ''; width: 34px; height: 1px; background: currentColor; opacity: 0.7;
}

/* editorial split */
.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.split.flip { grid-template-columns: 0.95fr 1.05fr; }
.split.flip .split-copy { order: 2; }
.split.flip .split-media { order: 1; }
.split-copy .eyebrow { margin-bottom: 24px; }
.split-copy h2 { font-size: clamp(2rem, 3.2vw, 3rem); margin-bottom: 20px; letter-spacing: -0.01em; }
.split-copy .lede {
  font-size: 1.05rem; font-weight: 300; line-height: 1.72;
  color: var(--ink-soft); max-width: 32rem; margin-bottom: 38px;
}

.split-media { position: relative; }
.split-media .frame {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
  box-shadow: 0 50px 80px -40px rgba(8,43,33,0.45);
}
.split-media .frame.landscape { aspect-ratio: 4 / 3; }
.split-media .frame img { width: 100%; height: 100%; object-fit: cover; }

/* product shots (real equipment / bottles) — contain on a soft light ground */
.split-media .frame.product {
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #ffffff 0%, #f2eadc 100%);
}
.split-media .frame.product img { object-fit: contain; padding: 9%; }
.split-media .frame.product::after { display: none; }
.split-media .frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,43,33,0.32), rgba(8,43,33,0) 46%);
}
.split-media .accent {
  position: absolute; top: -22px; right: -22px;
  width: 96px; height: 96px; z-index: 1;
  border: 1px solid var(--gold); opacity: 0.5;
}
.split-media.acc-left .accent { right: auto; left: -22px; }

.glass-card {
  position: absolute; left: -38px; bottom: 46px; z-index: 3;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7);
  padding: 22px 26px;
  max-width: 270px;
  box-shadow: 0 30px 60px -30px rgba(8,43,33,0.5);
  color: var(--ink);
}
.split-media.acc-left .glass-card { left: auto; right: -38px; }
.glass-card .gc-top {
  font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 10px;
}
.glass-card p { font-family: var(--serif); font-size: 1.02rem; line-height: 1.4; }

@media (max-width: 900px) {
  .split, .split.flip { grid-template-columns: 1fr; }
  .split.flip .split-copy { order: 1; }
  .split.flip .split-media { order: 2; }
  .glass-card { left: 16px; bottom: 16px; }
  .split-media.acc-left .glass-card { right: 16px; }
  .split-media .accent { display: none; }
}

/* numbered feature rows */
.row-list { border-top: 1px solid var(--cream-2); }
.feature-row {
  display: grid; grid-template-columns: auto 1fr; gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--cream-2);
  align-items: baseline;
}
.feature-row .num {
  font-family: var(--serif); font-style: italic;
  font-size: 1.5rem; color: var(--gold-deep); line-height: 1;
  min-width: 2ch;
}
.feature-row h3 { font-weight: 500; font-size: 1.28rem; margin-bottom: 6px; }
.feature-row p { font-size: 0.96rem; font-weight: 300; color: var(--ink-soft); line-height: 1.6; max-width: 34rem; }
.feature-row .tag {
  display: inline-block; margin-top: 12px; margin-right: 8px;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
  padding: 5px 12px; border: 1px solid rgba(190,147,84,0.4); border-radius: 100px;
}

/* pillars grid (trust markers) */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 48px);
}
.pillar { border-top: 1px solid var(--ink); padding-top: 22px; }
.pillar .p-num {
  font-family: var(--serif); font-style: italic;
  color: var(--gold-deep); font-size: 1.05rem;
  display: block; margin-bottom: 14px;
}
.pillar h3 { font-weight: 500; font-size: 1.14rem; margin-bottom: 10px; }
.pillar p { font-size: 0.9rem; font-weight: 300; color: var(--ink-soft); line-height: 1.65; }
@media (max-width: 960px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- service cards (home) ---------- */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px); }
.service-card {
  position: relative; overflow: hidden;
  min-height: 520px;
  display: flex; align-items: flex-end;
  color: var(--white);
  box-shadow: 0 40px 70px -40px rgba(8,43,33,0.5);
}
.service-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover img { transform: scale(1.05); }
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,33,25,0.82) 0%, rgba(6,33,25,0.12) 55%);
}
.service-card .sc-body { position: relative; z-index: 2; padding: 40px; width: 100%; }
.service-card .sc-kicker {
  font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; display: block; margin-bottom: 12px;
}
.service-card h3 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin-bottom: 10px; }
.service-card p { font-weight: 300; font-size: 0.98rem; color: rgba(255,255,255,0.88); max-width: 26rem; margin-bottom: 20px; }
.service-card .sc-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  border-bottom: 1px solid rgba(228,192,137,0.4);
  padding-bottom: 6px;
  transition: gap 0.25s ease, border-color 0.25s;
}
.service-card:hover .sc-link { gap: 16px; border-color: var(--gold); }
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } .service-card { min-height: 420px; } }

/* ---------- dark (pine) sections: reviews, cta ---------- */
.dark { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.dark .section-head h2 { color: var(--cream); }
.dark .section-head p { color: rgba(251,246,236,0.68); }
.dark .eyebrow { color: var(--gold); }
.dark::before {
  content: '';
  position: absolute; top: -140px; right: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(228,192,137,0.14), transparent 70%);
}

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.review-card {
  border: 1px solid rgba(251,246,236,0.14);
  padding: 36px 30px;
  background: rgba(251,246,236,0.03);
  transition: background 0.3s, transform 0.3s;
}
.review-card:hover { background: rgba(251,246,236,0.06); transform: translateY(-4px); }
.review-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 18px; font-size: 0.9rem; }
.review-card blockquote {
  font-family: var(--serif); font-size: 1.08rem; line-height: 1.5;
  color: rgba(251,246,236,0.94); margin-bottom: 22px;
}
.review-card cite {
  font-style: normal; font-size: 0.74rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(251,246,236,0.55);
}
.reviews-score { display: flex; align-items: baseline; gap: 16px; margin-bottom: 10px; }
.reviews-score .big { font-family: var(--serif); font-size: 3rem; color: var(--gold); line-height: 1; }
.reviews-score .stars { color: var(--gold); letter-spacing: 3px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- price tables ---------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px); align-items: start; }
.price-card {
  background: var(--white);
  padding: 44px 40px;
  box-shadow: 0 30px 60px -35px rgba(8,43,33,0.3);
  position: relative;
}
.price-card.dark-card { background: var(--ink); color: var(--cream); }
.price-card .pc-kicker {
  font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600; display: block; margin-bottom: 12px;
}
.price-card.dark-card .pc-kicker { color: var(--gold); }
.price-card h3 { font-size: 1.7rem; margin-bottom: 8px; }
.price-card .pc-sub { font-size: 0.92rem; font-weight: 300; color: var(--ink-soft); margin-bottom: 28px; }
.price-card.dark-card .pc-sub { color: rgba(251,246,236,0.6); }
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--cream-2);
  font-size: 0.98rem; font-weight: 300;
}
.price-card.dark-card .price-list li { border-bottom-color: rgba(251,246,236,0.12); }
.price-list li strong {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.18rem; color: var(--gold-deep);
}
.price-card.dark-card .price-list li strong { color: var(--gold); }
.price-list li .li-note { display: block; font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }
.price-card .btn { margin-top: 32px; }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }

.price-menu {
  max-width: 560px; margin: 0 auto;
  border: 1px solid var(--cream-2);
  box-shadow: 0 50px 90px -45px rgba(8,43,33,0.5);
  line-height: 0;
}
.price-menu img { width: 100%; height: auto; display: block; }

.smallprint {
  margin-top: 44px; text-align: center;
  font-size: 0.86rem; font-weight: 300; color: var(--ink-soft);
  line-height: 1.8;
}

/* ---------- areas served chips ---------- */
.area-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 820px; margin: 0 auto; }
.area-chips li {
  font-family: var(--serif); font-size: 1.02rem;
  padding: 11px 24px; border: 1px solid var(--cream-2); border-radius: 100px;
  color: var(--ink); background: var(--white);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.area-chips li:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }

/* ---------- FAQ (accordion dropdowns) ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream-2); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  font-family: var(--serif); font-weight: 500; font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  color: var(--ink); transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; flex-shrink: 0;
  width: 11px; height: 11px; margin-right: 6px;
  border-right: 2px solid var(--gold-deep);
  border-bottom: 2px solid var(--gold-deep);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item > p {
  font-size: 0.98rem; font-weight: 300; color: var(--ink-soft); line-height: 1.7;
  padding: 0 44px 26px 4px; margin: -4px 0 0;
}
.faq-item > p a { color: var(--gold-deep); font-weight: 500; }

/* ---------- 18+ / policy chip ---------- */
.policy-strip {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap;
  padding: 26px var(--pad-x);
  border-top: 1px solid var(--cream-2);
  border-bottom: 1px solid var(--cream-2);
  font-size: 0.86rem; font-weight: 300; color: var(--ink-soft);
  text-align: center;
}
.chip-18 {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.02em;
  color: var(--ink);
}

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }
.team-card .tc-photo {
  aspect-ratio: 3 / 4; overflow: hidden; position: relative;
  background: linear-gradient(160deg, var(--pine), var(--ink));
  box-shadow: 0 30px 60px -35px rgba(8,43,33,0.4);
  display: flex; align-items: center; justify-content: center;
}
.team-card .tc-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .tc-initial {
  font-family: var(--serif); font-style: italic;
  font-size: 4rem; color: rgba(228,192,137,0.55);
}
.team-card h3 { font-size: 1.3rem; font-weight: 500; margin: 20px 0 4px; }
.team-card .tc-role {
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 600;
}
.team-card p { margin-top: 12px; font-size: 0.92rem; font-weight: 300; color: var(--ink-soft); line-height: 1.65; }
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- visit / hours ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 40px); align-items: stretch; }
.visit-card { background: var(--white); padding: 44px 40px; box-shadow: 0 30px 60px -35px rgba(8,43,33,0.3); }
.visit-card h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 24px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-2);
  font-size: 0.96rem; font-weight: 300;
}
.hours-table td:last-child { text-align: right; font-weight: 500; }
.hours-table tr.today td { color: var(--gold-deep); font-weight: 600; }
.hours-note { margin-top: 20px; font-size: 0.86rem; font-weight: 300; color: var(--ink-soft); }
.address-block { font-size: 1rem; font-weight: 300; line-height: 1.9; color: var(--ink-soft); margin-bottom: 28px; }
.address-block strong { color: var(--ink); font-weight: 500; font-family: var(--serif); font-size: 1.14rem; }
.map-frame { margin-top: clamp(24px, 3vw, 40px); box-shadow: 0 30px 60px -35px rgba(8,43,33,0.3); line-height: 0; }
@media (max-width: 860px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: var(--white); overflow: hidden; }
.cta-media { position: absolute; inset: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,33,25,0.86) 20%, rgba(6,33,25,0.5) 100%);
}
.cta-inner {
  position: relative; z-index: 2;
  padding: clamp(90px, 11vw, 140px) 0;
  text-align: center;
}
.cta-inner .eyebrow { color: var(--gold); margin-bottom: 24px; }
.cta-inner .eyebrow::after { content: ''; width: 34px; height: 1px; background: currentColor; opacity: 0.7; }
.cta-inner h2 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); margin-bottom: 18px; letter-spacing: -0.01em; }
.cta-inner p { font-weight: 300; color: rgba(255,255,255,0.88); margin-bottom: 38px; font-size: 1.06rem; }
.cta-inner .hero-cta { justify-content: center; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(251,246,236,0.72);
  padding: clamp(60px, 8vw, 90px) 0 34px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 56px);
  margin-bottom: 56px;
}
.site-footer .brand { color: var(--cream); margin-bottom: 18px; }
.site-footer .f-note { font-size: 0.9rem; font-weight: 300; max-width: 300px; line-height: 1.7; }
.site-footer h4 {
  color: var(--cream);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer ul li { margin-bottom: 11px; font-size: 0.92rem; font-weight: 300; }
.site-footer ul a:hover { color: var(--gold); }
.footer-18 {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.78rem; color: rgba(251,246,236,0.55);
}
.footer-18 .chip-18 { border-color: rgba(251,246,236,0.5); color: rgba(251,246,236,0.8); width: 36px; height: 36px; font-size: 0.72rem; }
.footer-bottom {
  border-top: 1px solid rgba(251,246,236,0.12);
  padding-top: 28px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.78rem; font-weight: 300;
  color: rgba(251,246,236,0.45);
}
.footer-bottom a { color: rgba(251,246,236,0.6); }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- booking shell ---------- */
.booking-shell {
  max-width: 720px; margin: 0 auto;
  background: var(--white);
  padding: clamp(44px, 6vw, 64px);
  box-shadow: 0 40px 80px -40px rgba(8,43,33,0.35);
  text-align: center;
}
.booking-shell h2 { font-size: 1.9rem; margin-bottom: 14px; }
.booking-shell > p { color: var(--ink-soft); font-weight: 300; max-width: 30rem; margin: 0 auto 32px; }
#booking-widget { min-height: 40px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
