@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');

/* ── VARIABLES ───────────────────────────────────────────── */
:root {
  --cream:      #F5F0E8;
  --sage:       #8FAF8A;
  --sage-dark:  #6B9366;
  --sage-light: #D4E3D0;
  --gold:       #C9A96E;
  --charcoal:   #2C2C2C;
  --white:      #FFFFFF;
  --muted:      rgba(44,44,44,0.78);
  --font:       'Cormorant Garamond', Georgia, serif;
  --max:        1200px;
  --ease:       0.3s ease;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 18px;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1 { font-size: clamp(2.5rem,5.5vw,4.6rem); font-weight: 300; letter-spacing:.04em; line-height:1.1; }
h2 { font-size: clamp(1.8rem,3.4vw,2.8rem); font-weight: 400; letter-spacing:.03em; line-height:1.2; }
h3 { font-size: clamp(1.3rem,2.2vw,1.75rem); font-weight: 400; letter-spacing:.03em; }
h4 { font-size: 1.15rem; font-weight: 500; letter-spacing:.02em; }
p  { font-weight: 400; line-height: 1.85; }

.eyebrow {
  font-size: .82rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--sage-dark); display: block; margin-bottom: 14px;
}
.eyebrow-gold  { color: var(--gold); }
.eyebrow-light { color: rgba(255,255,255,.65); }

.section-rule       { width:50px; height:1px; background:var(--gold); margin:20px auto; }
.section-rule-left  { width:50px; height:1px; background:var(--gold); margin:20px 0; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
section { padding: 90px 0; }

/* ── ANNOUNCEMENT BAR ────────────────────────────────────── */
.announce-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,.82);
  text-align: center;
  padding: 10px 20px;
  font-size: .88rem;
  letter-spacing: .1em;
  position: relative; z-index: 1002;
}
.announce-bar a {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease);
}
.announce-bar a:hover { border-bottom-color: var(--gold); }

/* ── HEADER / NAV ────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44,44,44,.06);
  transition: padding var(--ease);
}
.site-header.compact { padding: 12px 48px; }

.nav-logo img { height: 68px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: .82rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--charcoal); transition: color var(--ease);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--sage);
  transition: width var(--ease);
}
.nav-links a:hover { color: var(--sage-dark); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  font-family: var(--font); font-size: .82rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 11px 26px; background: var(--sage); color: var(--white);
  border: 2px solid var(--sage); cursor: pointer; white-space: nowrap;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.btn-nav:hover {
  background: var(--sage-dark); border-color: var(--sage-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--charcoal); transition: all .35s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.4); z-index: 998;
}
.mobile-overlay.open { display: block; }

.mobile-nav {
  position: fixed; top: 0; right: -320px;
  width: 300px; height: 100vh; background: var(--white);
  z-index: 999; padding: 90px 40px 48px;
  display: flex; flex-direction: column;
  transition: right .4s cubic-bezier(.4,0,.2,1); overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { border-bottom: 1px solid rgba(44,44,44,.07); }
.mobile-nav a {
  display: block; padding: 16px 0; font-size: 1.25rem;
  font-weight: 300; letter-spacing: .04em;
  color: var(--charcoal); transition: color var(--ease);
}
.mobile-nav a:hover { color: var(--sage-dark); }
.mobile-book-btn { margin-top: 32px; text-align: center; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-block; font-family: var(--font);
  font-size: .84rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 15px 38px; cursor: pointer;
  transition: all var(--ease); text-align: center;
  border: 2px solid transparent; line-height: 1;
}
.btn-primary  { background:var(--sage); color:var(--white); border-color:var(--sage); }
.btn-primary:hover { background:var(--sage-dark); border-color:var(--sage-dark); transform:translateY(-2px); box-shadow:0 6px 20px rgba(107,147,102,.35); }
.btn-outline  { background:transparent; color:var(--charcoal); border-color:var(--charcoal); }
.btn-outline:hover { background:var(--charcoal); color:var(--white); transform:translateY(-2px); }
.btn-outline-light { background:transparent; color:var(--white); border-color:rgba(255,255,255,.7); }
.btn-outline-light:hover { background:var(--white); color:var(--charcoal); border-color:var(--white); }
.btn-gold { background:var(--gold); color:var(--white); border-color:var(--gold); }
.btn-gold:hover { background:transparent; color:var(--gold); transform:translateY(-2px); }

/* ── HERO (home) ─────────────────────────────────────────── */
.hero {
  position: relative; height: 92vh; min-height: 580px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg,rgba(28,28,28,.6) 0%,rgba(44,44,44,.25) 65%,rgba(143,175,138,.1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  color: var(--white); max-width: 660px;
  padding: 0 48px; margin-left: 7%;
}
.hero-content h1 { margin-bottom: 20px; font-style: italic; }
.hero-content p  { font-size: 1.12rem; margin-bottom: 36px; opacity: .88; max-width: 500px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* PAGE HERO (interior) */
.page-hero {
  padding: 100px 48px 68px; text-align: center;
  position: relative; overflow: hidden; background: var(--cream);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .16;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-style: italic; font-weight: 300; margin-bottom: 14px; }
.page-hero p  { font-size: 1.08rem; max-width: 560px; margin: 0 auto; color: var(--muted); }

/* ── UTILS ───────────────────────────────────────────────── */
.bg-cream    { background: var(--cream); }
.bg-white    { background: var(--white); }
.bg-charcoal { background: var(--charcoal); }
.bg-sage     { background: var(--sage); }
.text-center { text-align: center; }

.reveal { opacity:0; transform:translateY(28px); transition:opacity .75s ease,transform .75s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:.1s; }
.reveal-d2 { transition-delay:.2s; }
.reveal-d3 { transition-delay:.3s; }

/* ── HOME — INTRO STRIP ──────────────────────────────────── */
.intro-strip { padding: 72px 48px; text-align: center; border-bottom: 1px solid rgba(44,44,44,.07); }
.intro-strip h2 { font-style: italic; margin-bottom: 18px; }
.intro-strip p  { font-size: 1.1rem; color: var(--muted); max-width: 760px; margin: 0 auto; line-height: 1.95; }

/* ── HOME — FEATURED SERVICES ────────────────────────────── */
.featured-services { padding: 90px 0; background: var(--cream); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-style: italic; }
.section-head p  { margin-top: 14px; font-size: 1.05rem; color: var(--muted); max-width: 540px; margin-left:auto; margin-right:auto; }

.services-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; max-width: var(--max); margin: 0 auto; padding: 0 48px;
}
.svc-card {
  background: var(--white); padding: 48px 36px 40px;
  text-align: center; transition: transform var(--ease), box-shadow var(--ease);
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--sage);
  transform: scaleX(0); transition: transform var(--ease); transform-origin: center;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,.08); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card-icon { font-size: 1.5rem; margin-bottom: 22px; color: var(--gold); }
.svc-card h3   { margin-bottom: 12px; font-size: 1.5rem; }
.svc-card p    { font-size: 1.05rem; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.svc-card .price-from { font-size: .88rem; letter-spacing: .1em; color: var(--gold); font-weight: 500; text-transform: uppercase; }
.services-cta  { text-align: center; margin-top: 48px; }

/* ── HOME — WHY SOLENNE ──────────────────────────────────── */
.why-section { padding: 100px 0; }
.why-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center;
}
.why-img-wrap { position: relative; }
.why-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why-img-wrap::before {
  content: ''; position: absolute; inset: -16px -16px 16px 16px;
  border: 2px solid var(--gold); z-index: -1; opacity: .45;
}
.why-text h2 { font-style: italic; margin-bottom: 20px; }
.why-text > p { color: var(--muted); margin-bottom: 32px; font-size: 1.05rem; }
.why-list { list-style: none; margin-bottom: 40px; }
.why-list li {
  padding: 13px 0; border-bottom: 1px solid rgba(44,44,44,.07);
  display: flex; gap: 16px; font-size: 1.05rem; line-height: 1.6;
}
.why-list li::before { content:'—'; color:var(--gold); flex-shrink:0; margin-top:1px; }

/* ── HOME — TESTIMONIALS PREVIEW ─────────────────────────── */
.testi-preview { padding: 100px 48px; background: var(--charcoal); }
.testi-preview-head { text-align: center; margin-bottom: 56px; }
.testi-preview-head h2 { font-style: italic; color: var(--white); }
.testi-preview-head .section-rule { background: var(--gold); }

.testi-grid-3 {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 36px; max-width: var(--max); margin: 0 auto;
}
.testi-mini { padding: 36px 30px; border-top: 1px solid rgba(255,255,255,.12); }
.testi-mini .quote { font-size:1.1rem; font-style:italic; font-weight:300; line-height:1.8; color:rgba(255,255,255,.88); margin-bottom:22px; }
.testi-mini .author { font-size:.85rem; letter-spacing:.15em; text-transform:uppercase; color:var(--gold); }
.testi-preview-cta { text-align: center; margin-top: 48px; }

/* ── HOME — GIFT CARDS ───────────────────────────────────── */
.gift-section { padding: 100px 0; background: var(--cream); }
.gift-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.gift-visual {
  position: relative; overflow: hidden;
  aspect-ratio: 3/2; display: flex; flex-direction: column; justify-content: flex-end;
}
.gift-visual-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gift-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(44,44,44,.05) 0%,rgba(44,44,44,.82) 100%);
}
.gift-visual-copy { position: relative; z-index: 1; padding: 40px 44px; color: var(--white); }
.gift-visual-copy h2 { font-style: italic; font-weight: 300; color: var(--white); line-height: 1.2; }
.gift-visual-copy p  { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 16px; }
.gift-text h2 { font-style: italic; margin-bottom: 18px; }
.gift-text > p { color: var(--muted); margin-bottom: 32px; font-size: 1.05rem; line-height: 1.9; }

/* ── HOME — NEWSLETTER ───────────────────────────────────── */
.newsletter { padding: 80px 48px; background: var(--sage); text-align: center; }
.newsletter h2 { font-style: italic; color: var(--white); margin-bottom: 12px; }
.newsletter p  { color: rgba(255,255,255,.82); margin-bottom: 34px; font-size: 1.05rem; }
.nl-form { display: flex; max-width: 460px; margin: 0 auto; }
.nl-form input {
  flex: 1; padding: 16px 20px; font-family: var(--font); font-size: 1rem;
  font-style: italic; border: none; background: var(--white); color: var(--charcoal); outline: none;
}
.nl-form input::placeholder { color: rgba(44,44,44,.4); }
.nl-form button {
  padding: 16px 24px; font-family: var(--font);
  font-size: .72rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  background: var(--charcoal); color: var(--white); border: none; cursor: pointer;
  white-space: nowrap; transition: background var(--ease);
}
.nl-form button:hover { background: #1a1a1a; }

/* ── CTA BAND (reusable) ─────────────────────────────────── */
.cta-band { padding: 90px 48px; text-align: center; }
.cta-band h2 { font-style: italic; margin-bottom: 14px; }
.cta-band p  { max-width: 520px; margin: 0 auto 36px; color: var(--muted); font-size: 1.05rem; line-height: 1.85; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-lead { padding: 80px 48px; text-align: center; }
.about-lead blockquote {
  font-size: clamp(1.2rem,2.2vw,1.6rem); font-style: italic;
  font-weight: 300; max-width: 820px; margin: 0 auto;
  line-height: 1.75; color: var(--charcoal);
  position: relative; padding: 0 60px;
}
.about-lead blockquote::before {
  content:'\201C'; position:absolute; left:0; top:-10px;
  font-size:5rem; line-height:1; color:var(--sage); opacity:.35; font-style:italic;
}

.about-story { padding: 80px 0; }
.about-story-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 5fr 6fr; gap: 80px; align-items: start;
}
.about-photo { position: relative; }
.about-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.about-photo-tag {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--sage); color: var(--white);
  padding: 18px 24px; font-size: .76rem; letter-spacing: .16em;
  text-transform: uppercase; line-height: 1.7;
}
.about-text p { font-size: 1.08rem; line-height: 1.95; color: var(--charcoal); margin-bottom: 22px; }
.about-text p:first-of-type::first-letter {
  font-size: 3.4rem; font-weight: 400; line-height: .8;
  float: left; margin-right: 8px; margin-top: 8px; color: var(--sage);
}

.about-stats { padding: 80px 48px; background: var(--cream); text-align: center; }
.about-stats h2 { font-style: italic; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  max-width: 900px; margin: 48px auto 0;
}
.stat-item { text-align: center; padding: 40px 24px; border-right: 1px solid rgba(44,44,44,.1); }
.stat-item:last-child { border-right: none; }
.stat-num   { font-size: 4rem; font-weight: 300; color: var(--sage); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: .88rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 8px; }
.stat-desc  { font-size: 1rem; color: var(--muted); }

.about-philosophy { padding: 90px 48px; background: var(--charcoal); }
.philosophy-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.philosophy-inner h2 { font-style: italic; color: var(--white); margin-bottom: 28px; }
.philosophy-inner p  { font-size: 1.1rem; color: rgba(255,255,255,.72); line-height: 1.9; margin-bottom: 18px; }
.philosophy-inner .section-rule { background: var(--gold); }

/* ── SERVICES PAGE ───────────────────────────────────────── */
.services-intro { padding: 60px 48px; text-align: center; }
.services-intro p { font-size: 1.08rem; color: var(--muted); max-width: 600px; margin: 0 auto; line-height: 1.9; }

.service-section { padding: 70px 0; }
.service-section:nth-of-type(even) { background: var(--cream); }
.service-section-inner { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.service-section-header {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 44px; padding-bottom: 22px; border-bottom: 1px solid rgba(44,44,44,.09);
}
.service-section-header h2 { font-style: italic; flex-shrink: 0; }
.flex-rule { flex: 1; height: 1px; background: var(--gold); opacity: .3; }

.svc-items { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 20px; }
.svc-item {
  background: var(--white); padding: 30px 28px;
  border-left: 3px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.service-section:nth-of-type(even) .svc-item { background: var(--white); }
.svc-item:hover { border-left-color: var(--sage); box-shadow: 3px 0 18px rgba(0,0,0,.05); transform: translateX(3px); }
.svc-item h4 { margin-bottom: 4px; font-size: 1.15rem; }
.svc-meta { font-size: .84rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.svc-desc { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.svc-price { font-size: 1.45rem; font-weight: 400; color: var(--charcoal); }

.wax-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(44,44,44,.08); }
.wax-item {
  background: var(--white); padding: 22px 20px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.service-section:nth-of-type(even) .wax-item { background: var(--cream); }
.wax-item h4 { font-size: 1.05rem; font-weight: 400; }
.wax-price { font-size: 1.15rem; color: var(--gold); padding-left: 14px; white-space: nowrap; }

.addons-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 16px;
}
.addon-card {
  background: var(--white); padding: 28px 20px; text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
  border-top: 2px solid transparent;
}
.addon-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.07); border-top-color: var(--gold); }
.addon-card h4 { font-size: 1rem; margin-bottom: 8px; }
.addon-price { font-size: 1.3rem; color: var(--gold); }

/* ── GALLERY PAGE ────────────────────────────────────────── */
.gallery-intro { padding: 60px 48px; text-align: center; }
.gallery-intro p { font-size: 1.08rem; color: var(--muted); max-width: 580px; margin: 0 auto; line-height: 1.9; }

.ba-gallery { padding: 40px 0 90px; }
.ba-pairs-wrap {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: flex; flex-direction: column; gap: 80px;
}
.ba-pair-eyebrow {
  font-size: .82rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.ba-pair-eyebrow::before { content:''; width:30px; height:1px; background:var(--gold); flex-shrink:0; }
.ba-images {
  display: grid; grid-template-columns: 1fr 4px 1fr; align-items: stretch;
}
.ba-divider-bar { background: var(--gold); }
.ba-side { position: relative; overflow: hidden; }
.ba-side img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center;
  transition: transform .6s ease; display: block;
}
.ba-side:hover img { transform: scale(1.03); }
.ba-side-label {
  position: absolute; top: 20px; left: 20px;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--white); background: rgba(44,44,44,.55);
  padding: 6px 12px; backdrop-filter: blur(4px);
}
.ba-side.after .ba-side-label { background: rgba(143,175,138,.8); }
.ba-caption { margin-top: 20px; }
.ba-caption h4 { font-size: 1.1rem; margin-bottom: 5px; }
.ba-caption p  { font-size: 1.05rem; color: var(--muted); }

/* Vertical brow pair */
.ba-images.vertical {
  grid-template-columns: 1fr;
  max-width: 70%;
  margin: 0 auto;
}
.ba-images.vertical .ba-divider-bar {
  height: 4px;
  width: 100%;
}
.ba-images.vertical .ba-side img {
  aspect-ratio: 3/1.4;
  object-position: bottom center;
}

/* ── TESTIMONIALS PAGE ───────────────────────────────────── */
.rating-bar { padding: 70px 48px; background: var(--charcoal); text-align: center; }
.rating-num   { font-size: 7rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.rating-stars { color: var(--gold); font-size: 1.6rem; letter-spacing: .18em; margin-bottom: 12px; }
.rating-sub   { font-size: .86rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); }

.testi-full { padding: 80px 0; }
.testi-full-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 40px;
}
.testi-card {
  background: var(--cream); padding: 48px 44px; position: relative;
}
.testi-card::before {
  content: '\201C'; position: absolute; top: 16px; left: 36px;
  font-size: 7rem; font-style: italic; color: var(--sage);
  opacity: .22; line-height: 1; pointer-events: none;
}
.testi-card .stars  { color: var(--gold); font-size: .92rem; letter-spacing: .1em; margin-bottom: 14px; }
.testi-card .quote  { font-size: 1.12rem; font-style: italic; font-weight: 400; line-height: 1.85; margin-bottom: 26px; position: relative; z-index: 1; }
.testi-card .author { font-size: .83rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-dark); }

/* ── BOOKING PAGE ────────────────────────────────────────── */
.booking-intro { padding: 70px 48px; text-align: center; }
.booking-intro h2 { font-style: italic; margin-bottom: 16px; }
.booking-intro p  { max-width: 560px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; line-height: 1.85; }

.booking-widget { padding: 20px 0 90px; background: var(--cream); }
.booking-widget-inner { max-width: 860px; margin: 0 auto; padding: 0 48px; }
.vagaro-frame {
  background: var(--white); padding: 80px 48px;
  text-align: center; border: 1px solid rgba(44,44,44,.08);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  min-height: 440px; justify-content: center;
}
.vagaro-icon {
  width: 64px; height: 64px; background: var(--sage);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
}
.vagaro-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--white); stroke-width: 2; }
.vagaro-frame h3 { font-size: 1.7rem; margin-bottom: 8px; }
.vagaro-frame p  { color: var(--muted); font-size: 1rem; max-width: 380px; line-height: 1.75; margin-bottom: 8px; }

.booking-policies { padding: 80px 0; }
.policies-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
}
.policy-item { padding: 32px; background: var(--cream); }
.policy-item h4 { font-size: .96rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.policy-item p  { font-size: 1.05rem; color: var(--muted); line-height: 1.8; }

.gift-booking { padding: 80px 48px; background: var(--charcoal); text-align: center; }
.gift-booking h2 { font-style: italic; color: var(--white); margin-bottom: 14px; }
.gift-booking p  { color: rgba(255,255,255,.62); max-width: 500px; margin: 0 auto 36px; font-size: 1.05rem; line-height: 1.85; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-body { padding: 80px 0; }
.contact-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-info h2 { font-style: italic; margin-bottom: 36px; }
.contact-detail { margin-bottom: 32px; }
.contact-detail h4 { font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contact-detail p, .contact-detail address { font-size: 1.05rem; line-height: 1.75; }
.contact-detail a { border-bottom: 1px solid var(--sage-light); transition: border-color var(--ease), color var(--ease); }
.contact-detail a:hover { color: var(--sage-dark); border-bottom-color: var(--sage); }
.contact-accent-img { margin-top: 40px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.contact-form-wrap h2 { font-style: italic; margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  font-family: var(--font); font-size: 1rem;
  border: 1px solid rgba(44,44,44,.15); background: var(--white);
  color: var(--charcoal); outline: none;
  transition: border-color var(--ease); -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

/* ── JOURNAL PAGE ────────────────────────────────────────── */
.journal-soon { padding: 100px 48px 80px; text-align: center; }
.journal-rule  { width: 80px; height: 1px; background: var(--gold); margin: 0 auto 50px; }
.journal-soon h2 { font-style: italic; margin-bottom: 18px; }
.journal-soon p  { max-width: 500px; margin: 0 auto 40px; color: var(--muted); font-size: 1.05rem; line-height: 1.85; }

.journal-preview { padding: 80px 48px; background: var(--cream); }
.journal-preview h2 { font-style: italic; text-align: center; margin-bottom: 50px; }
.journal-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; max-width: var(--max); margin: 0 auto; }
.journal-card { background: var(--white); overflow: hidden; }
.journal-card-img {
  aspect-ratio: 16/9; background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
}
.journal-card-img span { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-dark); opacity: .7; }
.journal-card-body { padding: 28px; }
.journal-card-body h4 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.4; }
.journal-card-body p  { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.read-more {
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage-dark); border-bottom: 1px solid var(--sage); padding-bottom: 2px;
  transition: color var(--ease);
}
.read-more:hover { color: var(--charcoal); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); color: var(--white); padding: 80px 0 40px; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .footer-logo { height: 110px; filter: brightness(0) invert(1); margin-bottom: 22px; }
.footer-brand > p { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,.65); max-width: 280px; }
.footer-socials { display: flex; gap: 22px; margin-top: 24px; }
.footer-socials a { font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); transition: color var(--ease); }
.footer-socials a:hover { color: var(--sage); }
.footer-col h4 { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col li a, .footer-col address { font-size: 1rem; color: rgba(255,255,255,.65); transition: color var(--ease); line-height: 1.85; }
.footer-col li a:hover { color: var(--white); }
.footer-col address a { color: rgba(255,255,255,.65); transition: color var(--ease); }
.footer-col address a:hover { color: var(--white); }
.footer-book { margin-top: 22px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p   { font-size: .86rem; color: rgba(255,255,255,.45); letter-spacing: .04em; }
.footer-bottom a   { color: rgba(255,255,255,.3); transition: color var(--ease); }
.footer-bottom a:hover { color: var(--sage); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-cards, .testi-grid-3, .journal-cards { grid-template-columns: repeat(2,1fr); }
  .addons-grid  { grid-template-columns: repeat(3,1fr); }
  .wax-grid     { grid-template-columns: repeat(2,1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 44px; }
  .policies-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .site-header { padding: 15px 24px; }
  .announce-bar { padding: 8px 20px; font-size: .72rem; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { margin-left: 0; padding: 0 24px; }
  .hero-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .page-hero { padding: 90px 24px 56px; }
  .services-cards, .testi-grid-3, .testi-full-inner, .journal-cards,
  .why-inner, .about-story-inner, .gift-inner, .contact-inner, .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(44,44,44,.1); }
  .stat-item:last-child { border-bottom: none; }
  .addons-grid { grid-template-columns: repeat(2,1fr); }
  .wax-grid { grid-template-columns: 1fr; }
  .policies-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ba-images { grid-template-columns: 1fr; }
  .ba-divider-bar { display: none; }
  .nl-form { flex-direction: column; }
  .why-img-wrap::before { display: none; }
  .about-photo-tag { position: static; margin-top: 16px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .container, .intro-strip, .testi-preview, .cta-band, .about-lead,
  .about-stats, .about-philosophy, .newsletter, .journal-soon, .journal-preview,
  .booking-intro, .booking-widget-inner, .gift-booking { padding-left: 24px; padding-right: 24px; }
  .services-cards, .why-inner, .gift-inner, .testi-full-inner, .ba-pairs-wrap,
  .policies-inner, .service-section-inner, .contact-inner, .about-story-inner,
  .footer-inner { padding-left: 24px; padding-right: 24px; }
  .gallery-intro { padding: 48px 24px; }
}
