:root {
  --bg: #07120d;          /* deep forest */
  --bg-2: #0b1a13;
  --ink: #f5f1e6;         /* warm cream */
  --ink-dim: rgba(245, 241, 230, 0.66);
  --gold: #d9a441;
  --sage: #7fb89a;
  --emerald: #1d5c41;
  --hairline: rgba(245, 241, 230, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: #08140e; }

h1, h2, h3, .brand { font-family: "Cormorant Garamond", serif; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 40px;
  background: linear-gradient(180deg, rgba(5, 12, 8, 0.72), transparent);
  backdrop-filter: blur(6px);
}
.brand {
  font-size: 1.45rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--ink); text-decoration: none; line-height: 1;
}
.brand span { color: var(--gold); }
.brand em {
  display: block; font-family: "Manrope", sans-serif; font-style: normal;
  font-size: 0.56rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--ink-dim); margin-top: 5px;
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  color: var(--ink-dim); text-decoration: none; font-size: 0.8rem;
  letter-spacing: 0.18em; text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-drop { position: relative; }
.nav-drop .drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  display: none; flex-direction: column; min-width: 250px;
  padding: 12px 0; background: rgba(8, 20, 14, 0.96); backdrop-filter: blur(8px);
  border: 1px solid var(--hairline); border-radius: 14px;
}
.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { display: flex; }
.drop-menu a { padding: 10px 22px; letter-spacing: 0.14em; font-size: 0.74rem; }
.nav-cta {
  color: #08140e; background: var(--gold); text-decoration: none;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 999px; transition: transform 0.25s, background 0.25s;
}
.nav-cta:hover { background: #e8b95e; transform: translateY(-1px); }

/* ---------- Cinematic scrub sections ---------- */
.cinematic { position: relative; height: 480vh; }
#philosophy { height: 420vh; }
.sticky {
  position: sticky; top: 0; height: 100vh; width: 100%;
  overflow: hidden; display: grid; place-items: center; background: #040d08;
}
.sticky canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 48%, rgba(2, 8, 5, 0.6) 100%),
    linear-gradient(180deg, rgba(2, 8, 5, 0.5) 0%, transparent 22%, transparent 72%, rgba(2, 8, 5, 0.66) 100%);
}
.overlay { position: relative; z-index: 10; text-align: center; padding: 0 24px; width: 100%; }
.hero-line {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: max-content; max-width: 92vw;
  opacity: 0; will-change: opacity, transform;
}
/* hero copy sits left, bottle renders right-of-centre in the frames */
#hero .hero-line {
  left: 7vw; transform: translateY(-50%);
  text-align: left; max-width: 56vw;
}
#hero .hero-line h1, #hero .hero-line .display {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}
.hero-line h1, .hero-line .display {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 6.4vw, 5.4rem);
  font-weight: 500; line-height: 1.04; letter-spacing: 0.01em;
  text-shadow: 0 6px 60px rgba(2, 10, 6, 0.85);
}
.hero-line h1 span, .hero-line .display span { font-style: italic; color: var(--gold); }
.eyebrow {
  font-size: 0.74rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 22px;
}
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 12; font-size: 0.7rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--ink-dim); animation: bob 2s ease-in-out infinite; transition: opacity 0.4s;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ---------- Panels ---------- */
.panel { padding: 140px 8vw; max-width: 1400px; margin: 0 auto; }
.panel.alt { background: var(--bg-2); max-width: none; }
.panel.alt > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.kicker {
  font-size: 0.72rem; letter-spacing: 0.46em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.panel h2, .visit h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.9rem); font-weight: 500;
  line-height: 1.08; margin-bottom: 48px;
}
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.panel-copy p { color: var(--ink-dim); font-size: 1.08rem; line-height: 1.85; margin-bottom: 26px; }
.panel-copy strong { color: var(--ink); font-weight: 600; }
.link-arrow {
  color: var(--gold); text-decoration: none; font-size: 0.86rem;
  letter-spacing: 0.22em; text-transform: uppercase; border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.link-arrow:hover { border-color: var(--gold); }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  margin-top: 110px; padding-top: 56px; border-top: 1px solid var(--hairline);
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.4vw, 4rem); font-weight: 600; color: var(--gold);
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-dim);
}

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  display: block; color: inherit; text-decoration: none;
  border: 1px solid var(--hairline); border-radius: 18px;
  padding: 34px 26px 38px; background: rgba(255, 255, 255, 0.018);
  transition: transform 0.35s, border-color 0.35s, background 0.35s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(217, 164, 65, 0.5); background: rgba(217, 164, 65, 0.05); }
.card-no { font-size: 0.7rem; letter-spacing: 0.3em; color: var(--gold); }
.card h3 { font-size: 1.5rem; font-weight: 600; margin: 16px 0 12px; }
.card p { color: var(--ink-dim); font-size: 0.92rem; line-height: 1.7; }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  border-left: 2px solid var(--gold); padding: 8px 0 8px 26px;
}
.quote blockquote {
  font-family: "Cormorant Garamond", serif; font-size: 1.32rem; font-style: italic;
  line-height: 1.5; margin-bottom: 18px;
}
.quote figcaption { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-dim); }
.rating-line { margin-top: 60px; color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.8rem; }

/* ---------- FAQ ---------- */
.faqs { max-width: 860px; }
.faqs details { border-bottom: 1px solid var(--hairline); padding: 26px 0; }
.faqs summary {
  cursor: pointer; list-style: none; font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem; font-weight: 600; display: flex; justify-content: space-between; gap: 18px;
}
.faqs summary::after { content: "+"; color: var(--gold); font-size: 1.6rem; line-height: 1; transition: transform 0.3s; }
.faqs details[open] summary::after { transform: rotate(45deg); }
.faqs details p { color: var(--ink-dim); line-height: 1.8; padding-top: 16px; max-width: 720px; }

/* ---------- Visit ---------- */
.visit {
  background:
    radial-gradient(70% 90% at 50% 110%, rgba(217, 164, 65, 0.14), transparent 65%),
    radial-gradient(60% 70% at 50% -10%, rgba(29, 92, 65, 0.35), transparent 60%),
    var(--bg-2);
  padding: 150px 8vw 130px; text-align: center;
}
.visit-inner { max-width: 1100px; margin: 0 auto; }
.visit-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  margin: 70px 0 80px; text-align: center;
}
.visit-grid h4 {
  font-size: 0.74rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; font-weight: 600;
}
.visit-grid p { color: var(--ink-dim); line-height: 2; }
.visit-grid a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(217,164,65,0.4); transition: color 0.3s; }
.visit-grid a:hover { color: var(--gold); }
.big-cta {
  display: inline-block; background: var(--gold); color: #08140e; text-decoration: none;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.86rem;
  padding: 20px 52px; border-radius: 999px;
  box-shadow: 0 18px 60px rgba(217, 164, 65, 0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}
.big-cta:hover { transform: translateY(-3px); box-shadow: 0 24px 80px rgba(217, 164, 65, 0.4); }

/* ---------- Footer ---------- */
.footer {
  display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center;
  padding: 34px 40px; border-top: 1px solid var(--hairline);
  color: var(--ink-dim); font-size: 0.76rem; letter-spacing: 0.14em;
}
.footer address { font-style: normal; }
.footer a { color: var(--ink); text-decoration: none; }
.subhead {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 1.3rem; color: var(--sage); margin-top: -28px; margin-bottom: 24px;
}

/* ---------- Service article pages ---------- */
.article-hero {
  padding: 170px 8vw 30px; max-width: 980px; margin: 0 auto;
  background: radial-gradient(70% 100% at 50% -30%, rgba(29, 92, 65, 0.35), transparent 70%);
}
.article-hero .kicker { margin-bottom: 16px; }
.article-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem); font-weight: 500; line-height: 1.12;
}
.article { max-width: 980px; margin: 0 auto; padding: 30px 8vw 90px; }
.article p { color: var(--ink-dim); font-size: 1.06rem; line-height: 1.9; margin-bottom: 22px; }
.article strong { color: var(--ink); font-weight: 600; }
.article h2 {
  font-size: 1.8rem; font-weight: 600; margin: 44px 0 16px;
}
.article ul { margin: 0 0 22px 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.article ul li {
  border: 1px solid var(--hairline); border-radius: 999px; padding: 9px 18px;
  color: var(--ink-dim); font-size: 0.9rem;
}
.article .cta-row { margin-top: 44px; display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.article .back-link { color: var(--sage); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; }
.article .back-link:hover { color: var(--gold); }

/* ---------- Reveals ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .panel-grid, .cards, .quotes { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .nav { padding: 16px 20px; }
  .panel { padding: 100px 7vw; }
  .panel-grid, .cards, .quotes, .visit-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 40px 16px; }
  .footer { flex-direction: column; gap: 8px; text-align: center; }
}
/* ============================================================
   v2 REDESIGN PREVIEW additions â€” loaded after styles.css.
   Deleted wholesale if the redesign is rejected.
   ============================================================ */

/* 8 Â· scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60;
  background: transparent; pointer-events: none;
}
.scroll-progress b {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--sage), var(--gold));
}

/* 1 Â· hero trust chips */
.trust-chips {
  position: absolute; z-index: 11; top: 96px; left: 7vw;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.trust-chips a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px;
  background: rgba(8, 20, 14, 0.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(217, 164, 65, 0.35);
  color: var(--ink); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.08em;
  transition: border-color 0.3s, background 0.3s;
}
.trust-chips a:hover { border-color: var(--gold); background: rgba(217, 164, 65, 0.16); }
.trust-chips .star { color: var(--gold); }

/* 7 Â· sticky mobile action bar */
.action-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 65;
  background: rgba(5, 13, 9, 0.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--hairline);
}
.action-bar a {
  flex: 1; text-align: center; padding: 14px 0 max(14px, env(safe-area-inset-bottom));
  color: var(--sage); text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.action-bar a + a { border-left: 1px solid var(--hairline); }
.action-bar a strong { color: var(--ink); font-weight: 600; }
@media (max-width: 820px) {
  .action-bar { display: flex; }
  .footer { padding-bottom: 90px; }
}

/* 4 Â· map embed */
.map-wrap {
  margin: 70px auto 0; max-width: 1100px;
  border: 1px solid var(--hairline); border-radius: 18px; overflow: hidden;
}
.map-wrap iframe { display: block; width: 100%; height: 360px; border: 0; filter: grayscale(0.25) contrast(1.04); }
.dir-row { display: flex; gap: 18px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
.btn-ghost {
  display: inline-block; padding: 14px 34px; border-radius: 999px;
  border: 1px solid rgba(217, 164, 65, 0.5); color: var(--gold);
  text-decoration: none; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn-ghost:hover { background: var(--gold); color: #08140e; }

/* 5 Â· reviews link */
.rating-line a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(217,164,65,0.4); }
.rating-line a:hover { border-color: var(--gold); }

/* 6 Â· footer areas served + links */
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px;
  max-width: 1240px; margin: 0 auto; padding: 60px 40px 40px;
  text-align: left; border-top: 1px solid var(--hairline);
}
.footer-grid h5 {
  font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 600;
}
.footer-grid p, .footer-grid li { color: var(--ink-dim); font-size: 0.88rem; line-height: 1.9; }
.footer-grid ul { list-style: none; }
.footer-grid a { color: var(--ink-dim); text-decoration: none; transition: color 0.3s; }
.footer-grid a:hover { color: var(--gold); }
.footer { border-top: none; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } }

/* 3 Â· service-page breadcrumbs, related treatments, mini FAQ */
.crumbs { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 20px; }
.crumbs a { color: var(--sage); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }
.related { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--hairline); }
.related h2 { font-size: 1.5rem; margin-bottom: 20px; }
.related-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.related-row a {
  border: 1px solid var(--hairline); border-radius: 14px; padding: 18px 20px;
  color: var(--ink); text-decoration: none; font-size: 0.92rem;
  transition: border-color 0.3s, background 0.3s;
}
.related-row a:hover { border-color: rgba(217, 164, 65, 0.5); background: rgba(217, 164, 65, 0.05); }
.related-row a span { display: block; color: var(--sage); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 6px; }



/* 8 Â· reduced motion: honour user preference */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .scroll-hint { animation: none; }
}

/* ============================================================
   BLOG / JOURNAL
   ============================================================ */
.journal-hero {
  padding: 170px 8vw 20px; max-width: 1180px; margin: 0 auto; text-align: center;
  background: radial-gradient(70% 100% at 50% -20%, rgba(29, 92, 65, 0.32), transparent 70%);
}
.journal-hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); font-weight: 500; line-height: 1.06; margin-bottom: 14px; }
.journal-hero p.lede { color: var(--sage); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.post-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px;
  max-width: 1180px; margin: 50px auto 0; padding: 0 8vw 120px;
}
.post-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--hairline); border-radius: 18px; padding: 26px 26px 28px;
  background: rgba(255, 255, 255, 0.018); color: inherit; text-decoration: none;
  transition: transform 0.35s, border-color 0.35s, background 0.35s;
}
.post-card:hover { transform: translateY(-6px); border-color: rgba(217, 164, 65, 0.5); background: rgba(217, 164, 65, 0.05); }
.post-cat {
  font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px;
}
.post-card h2 { font-size: 1.5rem; font-weight: 600; line-height: 1.2; margin-bottom: 12px; }
.post-card p { color: var(--ink-dim); font-size: 0.94rem; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.post-card .post-foot { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-dim); }

/* single post meta line under the H1 */
.post-meta {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  margin-top: 18px; font-size: 0.78rem; letter-spacing: 0.1em; color: var(--ink-dim);
}
.post-meta .by { color: var(--sage); }
.post-meta .dot { opacity: 0.4; }
.post-cat-tag {
  display: inline-block; font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(217,164,65,0.4); border-radius: 999px; padding: 5px 14px;
}
/* lead paragraph of a post */
.article .lede { font-size: 1.18rem; line-height: 1.8; color: var(--ink); }
/* author bio block at end of a post */
.author-box {
  display: flex; gap: 18px; align-items: flex-start;
  margin-top: 56px; padding: 28px; border: 1px solid var(--hairline); border-radius: 18px;
  background: rgba(255,255,255,0.018);
}
.author-box .avatar {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(217,164,65,0.18);
  color: var(--gold); font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-weight: 600;
}
.author-box h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.author-box p { font-size: 0.9rem; color: var(--ink-dim); line-height: 1.6; margin: 0; }
.med-disclaimer {
  margin-top: 40px; padding: 18px 22px; border-left: 2px solid var(--sage); border-radius: 0;
  font-size: 0.82rem; line-height: 1.7; color: var(--ink-dim); background: rgba(127,184,154,0.06);
}

