/* ===================================================================
   Meraki Bespoke Hair Boutique
   Editorial luxury salon system: warm bone/cream base, near-black ink,
   terracotta italic accent. One deliberate dark break before the footer.
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@600&display=swap');

:root{
  --paper: #f5efe2;
  --paper-2: #ece2cd;
  --ink: #201c16;
  --ink-dim: rgba(32,28,22,0.64);
  --ink-faint: rgba(32,28,22,0.4);
  --line: rgba(32,28,22,0.16);

  --dark: #15120d;
  --dark-2: #1e1a13;
  --bone: #f2ede0;
  --bone-dim: rgba(242,237,224,0.66);
  --bone-faint: rgba(242,237,224,0.4);
  --line-dark: rgba(242,237,224,0.16);

  --rose: #9c4a30;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1360px;
  --pad: clamp(1.5rem, 4vw, 4rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3{
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
h1 em, h2 em, h3 em{ font-style: normal; font-weight: 400; color: var(--rose); padding-bottom: 0.12em; display: inline-block; }

p{ margin: 0; }

.eyebrow{
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

/* grain overlay */
.grain{
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  white-space: nowrap;
  padding: 0.85rem 1.85rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.btn:active{ transform: scale(0.97); }
.btn-primary{ background: var(--ink); color: var(--paper); }
.btn-primary:hover{ background: var(--rose); transform: translateY(-2px); }
.btn-outline{ border-color: var(--line); color: var(--ink); }
.btn-outline:hover{ border-color: var(--ink); background: rgba(32,28,22,0.05); }
.btn-ghost{ color: inherit; opacity: 0.75; font-size: 0.82rem; }
.btn-ghost:hover{ opacity: 1; }
.btn-call{ gap: 0.45rem; padding: 0.6rem 0.9rem; }

.on-dark .btn-primary{ background: var(--bone); color: var(--dark); }
.on-dark .btn-primary:hover{ background: var(--rose); color: var(--bone); }
.on-dark .btn-outline{ border-color: var(--line-dark); color: var(--bone); }
.on-dark .btn-outline:hover{ border-color: var(--bone); background: rgba(242,237,224,0.08); }

/* ---------- header ---------- */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 80px; display: flex; align-items: center;
  background: transparent; border-bottom: 1px solid transparent;
  color: var(--bone);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), color 0.5s var(--ease);
}
.site-header.scrolled{
  background: rgba(245,239,226,0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-color: var(--line);
  color: var(--ink);
}
.header-inner{
  width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; gap: 2.5rem;
}
.brand{ display: flex; align-items: center; gap: 0.6rem; margin-right: auto; }
.brand-mark{ width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.brand-word{ font-family: var(--serif); font-size: 1.15rem; letter-spacing: 0.02em; }

.nav-links{ display: flex; align-items: center; gap: 2rem; }
.nav-links a{
  font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase;
  position: relative; opacity: 0.82;
  transition: opacity 0.3s var(--ease);
}
.nav-links a::after{
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: currentColor; transition: width 0.35s var(--ease);
}
.nav-links a:hover{ opacity: 1; }
.nav-links a:hover::after{ width: 100%; }

.nav-item{ position: relative; }
.nav-dropdown{
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 6px);
  min-width: 260px; padding: 1.25rem 0 0.5rem;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(32,28,22,0.12);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 60;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown{
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.nav-dropdown a{
  display: block; padding: 0.65rem 1.35rem; font-size: 0.78rem; letter-spacing: 0.02em;
  text-transform: none; opacity: 0.85; white-space: nowrap; color: var(--ink);
}
.nav-dropdown a::after{ display: none; }
.nav-dropdown a:hover{ opacity: 1; background: var(--paper-2); color: var(--rose); }

.mobile-submenu{ display: flex; flex-direction: column; gap: 1.1rem; margin-top: -0.75rem; padding-left: 1.25rem; }
.mobile-submenu a{ font-family: var(--sans); font-size: 0.95rem !important; opacity: 0.75; }

.header-actions{ display: flex; align-items: center; gap: 1.25rem; }
.header-actions .btn-primary{ background: var(--paper); color: var(--ink); border: 1px solid var(--line); }
.header-actions .btn-primary:hover{ background: var(--rose); color: var(--paper); border-color: var(--rose); }
.social-links{ display: flex; align-items: center; gap: 0.9rem; }
.social-links a{ display: flex; opacity: 0.82; transition: opacity 0.3s var(--ease); }
.social-links a:hover{ opacity: 1; }

.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
  color: inherit;
}
.nav-toggle span{ display: block; width: 22px; height: 1px; background: currentColor; transition: transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.nav-toggle[aria-expanded="true"] span:first-child{ transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:last-child{ transform: translateY(-6px) rotate(-45deg); }
.mobile-menu{ display: none; }

/* ---------- reveal ---------- */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ---------- hero ---------- */
.hero{
  position: relative; min-height: 100dvh; display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden; color: var(--bone);
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media img{ width: 100%; height: 100%; object-fit: cover; }
.hero-media::after{
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,12,8,0.5) 0%, rgba(15,12,8,0.48) 45%, rgba(13,10,7,0.9) 100%),
    linear-gradient(90deg, rgba(13,10,7,0.7) 0%, rgba(13,10,7,0.2) 55%);
}

.hero-tag{
  position: relative; z-index: 1;
  align-self: flex-start;
  margin: 6.5rem 0 0 var(--pad);
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  backdrop-filter: blur(6px);
}

.hero-content{
  position: relative; z-index: 1;
  max-width: var(--container); width: 100%; margin: 0 auto;
  padding: 0 var(--pad) 3rem;
}
.hero-title{
  font-size: clamp(2.3rem, 5.6vw, 4.8rem);
  line-height: 1.05;
  max-width: 16ch;
}
.hero-title .cap{ letter-spacing: 0.01em; }
.hero-title em{ font-style: normal; }
.hero-sub{ margin-top: 1.5rem; max-width: 42ch; font-size: 1.05rem; color: var(--bone-dim); }
.hero-actions{ margin-top: 2.25rem; display: flex; gap: 1rem; flex-wrap: wrap; }


/* ---------- page hero (interior pages) ---------- */
.page-hero{
  position: relative; min-height: 52vh; display: flex; align-items: flex-end;
  overflow: hidden; color: var(--bone);
}
.page-hero-content{
  position: relative; z-index: 1;
  max-width: var(--container); width: 100%; margin: 0 auto;
  padding: 8rem var(--pad) 4rem;
}
.page-hero-content h1{
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  max-width: 20ch;
}
.page-hero-content h1 em{ font-style: normal; }

/* ---------- about split (image + copy) ---------- */
.about-split{
  display: grid; grid-template-columns: 0.85fr 1fr; gap: 4rem;
  max-width: var(--container); margin: 0 auto; align-items: center;
  padding: clamp(5rem, 9vw, 8rem) var(--pad);
}
.about-media{ position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-media img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-media-grid{
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 0.75rem;
  aspect-ratio: 4/5; overflow: visible;
}
.about-media-grid img{
  position: static; width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 1/1; transition: transform 0.9s var(--ease);
}
.about-media-grid img:hover{ transform: scale(1.06); }
.about-copy h2{ margin-bottom: 1.5rem; }
.about-copy p{ margin-top: 1.25rem; max-width: 52ch; color: var(--ink-dim); font-size: 1.02rem; }
.about-copy p:first-of-type{ margin-top: 0; }
.treatment-location{ font-style: italic; color: var(--ink-faint) !important; font-size: 0.88rem !important; }
.about-copy .btn{ margin-top: 2.25rem; margin-right: 1rem; }
.about-lede{
  font-family: var(--serif); font-style: italic; color: var(--rose);
  font-size: 1.15rem; margin-top: 1.75rem !important;
}

/* ---------- founder ---------- */
.founder{
  display: grid; grid-template-columns: 1fr 0.85fr; gap: 4rem;
  max-width: var(--container); margin: 0 auto; align-items: start;
  padding: clamp(5rem, 9vw, 8rem) var(--pad);
}
.founder-content{ order: -1; }
.founder-media{ position: sticky; top: 6.5rem; aspect-ratio: 4/5; overflow: hidden; }
.founder-media img{ width: 100%; height: 100%; object-fit: cover; }
.founder-lede{
  font-family: var(--serif); font-style: italic; color: var(--rose);
  font-size: 1.15rem; margin-top: 0.75rem;
}
.founder .section-head{ margin-bottom: 0.5rem; }
.founder-copy{ margin-top: 0.5rem; }
.founder-copy p{ margin-top: 1.25rem; max-width: 62ch; color: var(--ink-dim); font-size: 1.02rem; line-height: 1.75; }
.founder-copy p:first-of-type{ margin-top: 0; }
.founder-close{ font-family: var(--serif); font-style: italic; color: var(--rose); font-size: 1.15rem; }

/* ---------- why meraki (numbered list + image) ---------- */
.why-banner{ position: relative; height: 60vh; min-height: 420px; overflow: hidden; }
.why-banner-media{ position: absolute; inset: 0; }
.why-banner-media img{ width: 100%; height: 100%; object-fit: cover; }
.why-banner-media::after{ content: ""; position: absolute; inset: 0; background: rgba(21,18,13,0.4); }
.why-banner-title{
  position: relative; z-index: 1; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--bone); font-size: clamp(2.2rem, 5vw, 3.5rem); text-align: center;
}

.why{
  display: grid; grid-template-columns: 0.85fr 1fr; gap: 4rem;
  max-width: var(--container); margin: 0 auto; align-items: center;
  padding: clamp(5rem, 9vw, 8rem) var(--pad);
}
.why-content h2{ font-size: clamp(2rem, 3.6vw, 3rem); max-width: 14ch; }
.why-content > p{ margin-top: 1.5rem; max-width: 46ch; color: var(--ink-dim); font-size: 1.02rem; line-height: 1.7; }
.why-actions{ margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.why-actions .btn-pill{ margin-top: 0; }
.why-image{ position: relative; aspect-ratio: 4/5; overflow: hidden; }
.why-image img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.btn-pill{
  display: inline-block; background: var(--ink); color: var(--paper);
  padding: 0.9rem 1.75rem; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--ink); transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn-pill:hover{ background: var(--rose); border-color: var(--rose); }
.btn-pill-outline{ background: none; color: var(--ink); }
.btn-pill-outline:hover{ background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* ---------- treatments (services layout) ---------- */
.treatments{ padding: clamp(5rem, 9vw, 8rem) var(--pad) clamp(2.5rem, 5vw, 4rem); max-width: var(--container); margin: 0 auto; background: var(--paper-2); }
.section-head{ margin-bottom: 3.5rem; max-width: 50ch; }
.section-head h2{ font-size: clamp(2rem, 3.6vw, 3rem); }
.section-head p{ margin-top: 0.75rem; color: var(--ink-dim); }

.services-head{ display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.services-head h2{ font-size: clamp(1.9rem, 4.2vw, 2.9rem); line-height: 1; letter-spacing: -0.01em; }
.services-head h2 em{ font-style: normal; }

.services-circles{
  margin-top: 4rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
}
.services-circle{
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line); border-radius: 999px; padding: 0;
  font-family: var(--sans); color: inherit; cursor: pointer; text-align: center;
  transition: border-color 0.35s var(--ease);
}
.services-circle:hover{ border-color: var(--ink); }
.circle-label{
  display: inline-block; text-align: center; color: var(--ink);
  padding: 0.85rem 1.75rem; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  transition: color 0.35s var(--ease);
}
.services-circle:hover .circle-label{ color: var(--rose); }

.services-note{ color: var(--ink-dim); font-size: 0.85rem; }
.services-cta{ margin-top: 1.75rem; display: flex; justify-content: center; }
.services-note a{ color: var(--ink); border-bottom: 1px solid var(--line); transition: border-color 0.3s var(--ease); }
.services-note a:hover{ border-color: var(--ink); }

/* ---------- sustainability (light split) ---------- */
.sustainability{ display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.sustainability-image{ position: relative; min-height: 420px; background: var(--paper); padding: 6rem; }
.sustainability-image img{ width: 100%; height: 100%; object-fit: cover; }
.sustainability-content{
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 6vw, 6rem);
}
.sustainability-content h2{ font-size: clamp(2rem, 3.4vw, 2.9rem); max-width: 14ch; }
.sustainability-content p{ max-width: 46ch; color: var(--ink-dim); font-size: 1.02rem; }

/* ---------- pricing cta strip ---------- */
.pricing-cta-link{
  display: flex; align-items: center; justify-content: center;
  margin-top: 2.5rem; padding: 1rem 0.75rem;
}
.pricing-cta-arrow{
  font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--rose); transition: transform 0.4s var(--ease);
}
.pricing-cta-link:hover .pricing-cta-arrow{ transform: translateX(6px); }

/* image reveals: slide in from the left */
.tile.reveal,
.why-image.reveal,
.sustainability-image.reveal,
.visit-media.reveal,
.about-media.reveal,
.founder-media.reveal,
.reel-item.reveal,
.services-circle.reveal{ transform: translateX(-48px); }
.tile.reveal.in-view,
.why-image.reveal.in-view,
.sustainability-image.reveal.in-view,
.visit-media.reveal.in-view,
.about-media.reveal.in-view,
.founder-media.reveal.in-view,
.reel-item.reveal.in-view,
.services-circle.reveal.in-view{ transform: translateX(0); }

/* image reveals: fade + soft zoom (full-bleed hero/banner photography) */
.hero-fade.reveal{
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.3s var(--ease), transform 1.8s var(--ease);
}
.hero-fade.reveal.in-view{ opacity: 1; transform: scale(1); }

/* ---------- instagram reels ---------- */
.reels{ padding: clamp(5rem, 9vw, 8rem) var(--pad); max-width: var(--container); margin: 0 auto; }
.reels-grid{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.reel-item{
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 4/5; border: 1px solid var(--line); background: var(--paper-2);
}
.reel-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.reel-item:hover img{ transform: scale(1.06); }
.reel-play{
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.reel-play::before{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,18,13,0.55), rgba(21,18,13,0) 45%);
}
.reel-play svg{
  position: relative; width: 2.5rem; height: 2.5rem; fill: var(--bone);
  filter: drop-shadow(0 2px 8px rgba(21,18,13,0.45));
  transition: transform 0.4s var(--ease);
}
.reel-item:hover .reel-play svg{ transform: scale(1.12); }
.reels-cta{ margin-top: 2.5rem; text-align: center; }

.reel-item:nth-child(1).reveal{ transition-delay: 0s; }
.reel-item:nth-child(2).reveal{ transition-delay: 0.08s; }
.reel-item:nth-child(3).reveal{ transition-delay: 0.16s; }
.reel-item:nth-child(4).reveal{ transition-delay: 0.24s; }
.reel-item:nth-child(5).reveal{ transition-delay: 0.32s; }
.reel-item:nth-child(6).reveal{ transition-delay: 0.4s; }

.tile:nth-child(1).reveal{ transition-delay: 0s; }
.tile:nth-child(2).reveal{ transition-delay: 0.1s; }
.tile:nth-child(3).reveal{ transition-delay: 0.2s; }
.tile:nth-child(4).reveal{ transition-delay: 0.1s; }
.tile:nth-child(5).reveal{ transition-delay: 0.2s; }

.services-circle:nth-child(1).reveal{ transition-delay: 0s; }
.services-circle:nth-child(2).reveal{ transition-delay: 0.1s; }
.services-circle:nth-child(3).reveal{ transition-delay: 0.2s; }
.services-circle:nth-child(4).reveal{ transition-delay: 0.3s; }
.services-circle:nth-child(5).reveal{ transition-delay: 0.4s; }

/* ---------- reviews ---------- */
.reviews{
  max-width: var(--container); margin: 0 auto; padding: clamp(4rem, 8vw, 7rem) var(--pad);
  border-bottom: 1px solid var(--line);
}
.reviews-stat{ display: flex; align-items: baseline; justify-content: center; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2.5rem; text-align: center; }
.stat-number{ font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 2.8rem); color: var(--ink); line-height: 1; }
.stat-stars{ color: #f5b301; font-size: 1.1rem; letter-spacing: 0.05em; }
.stat-label{ color: var(--ink-dim); font-size: 0.95rem; }
.stat-label a{ color: var(--ink); border-bottom: 1px solid var(--line); transition: border-color 0.3s var(--ease); }
.stat-label a:hover{ border-color: var(--ink); }

.reviews-carousel{ position: relative; }
.reviews-track{
  display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem; scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar{ display: none; }
.review-card{
  flex: 0 0 auto; width: 280px; scroll-snap-align: start;
  background: var(--paper); border: 1px solid var(--line); padding: 1.5rem;
  display: flex; flex-direction: column;
}
.review-card-head{ display: flex; align-items: center; gap: 0.75rem; }
.review-avatar{
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bone); font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
}
.review-name{ display: block; font-size: 0.92rem; color: var(--ink); }
.review-source{ display: block; font-size: 0.76rem; color: var(--ink-faint); margin-top: 0.1rem; }
.review-stars{ color: #f5b301; font-size: 0.85rem; margin-top: 0.85rem; letter-spacing: 0.05em; }
.review-text{ margin-top: 0.65rem; font-size: 0.9rem; line-height: 1.55; color: var(--ink-dim); flex: 1; }
.review-more{ margin-top: 0.75rem; font-size: 0.82rem; color: var(--rose); align-self: flex-start; }
.review-more:hover{ text-decoration: underline; }

.reviews-arrow{
  position: absolute; top: 40%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.reviews-arrow:hover{ background: var(--ink); color: var(--paper); border-color: var(--ink); }
.reviews-arrow-prev{ left: -22px; }
.reviews-arrow-next{ right: -22px; }

/* ---------- visit ---------- */
.visit{ display: grid; grid-template-columns: 1fr 0.9fr; align-items: stretch; background: var(--paper-2); }
.visit-content{ display: flex; flex-direction: column; justify-content: center; gap: 2.25rem; padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 6vw, 6rem); }
.visit-content h2{ font-size: clamp(2rem, 3.4vw, 2.9rem); }
.visit-details{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem 1.5rem; margin: 0; }
.visit-details dt{ font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.4rem; }
.visit-details dd{ margin: 0; color: var(--ink-dim); }
.visit-details a{ color: var(--ink); border-bottom: 1px solid var(--line); transition: border-color 0.3s var(--ease); }
.visit-details a:hover{ border-color: var(--ink); }
.visit-content .btn{ align-self: flex-start; }
.visit-media{ position: relative; min-height: 420px; background: var(--paper-2); padding: 3rem; }
.visit-media img{ width: 100%; height: 100%; object-fit: cover; }

/* ---------- dark cta break ---------- */
.cta-break{
  position: relative; min-height: 62vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center; color: var(--bone);
}
.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(180deg, rgba(21,18,13,0.78) 0%, rgba(21,18,13,0.6) 40%, rgba(21,18,13,0.92) 85%, rgba(21,18,13,1) 100%);
}
.cta-inner{ position: relative; z-index: 1; max-width: 760px; padding: 3rem var(--pad); }
.cta-inner h2{ font-size: clamp(2.1rem, 4.4vw, 3.6rem); line-height: 1.15; }
.cta-actions{ margin-top: 2.25rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- price list ---------- */
.price-list{ padding: clamp(5rem, 9vw, 8rem) var(--pad); max-width: var(--container); margin: 0 auto; }
.price-list-lede{ font-family: var(--serif); font-style: italic; color: var(--ink-dim); }
.price-note{ margin-top: 1.5rem; color: var(--ink-faint); font-size: 0.85rem; }
.price-cta{ margin-top: 2.5rem; }

.price-accordions{ margin-top: 3.5rem; display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.price-accordion{ background: #5c5850; color: var(--bone); }
.price-accordion summary{
  list-style: none; cursor: pointer; padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--serif); font-size: 1.25rem;
}
.price-accordion summary::-webkit-details-marker{ display: none; }
.price-accordion-icon{ position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.price-accordion-icon::before, .price-accordion-icon::after{
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--bone);
  transform: translate(-50%, -50%);
}
.price-accordion-icon::before{ width: 16px; height: 1px; }
.price-accordion-icon::after{ width: 1px; height: 16px; transition: transform 0.3s var(--ease); }
.price-accordion[open] .price-accordion-icon::after{ transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.price-accordion-body{ padding: 0 2rem 2rem; }
.price-card-item{ padding: 0.85rem 0; border-top: 1px solid var(--line-dark); }
.price-card-item:first-of-type{ border-top: none; }
.pc-name{ font-size: 0.92rem; color: var(--bone); margin: 0 0 0.4rem; }
.pc-tiers{ display: flex; flex-wrap: wrap; gap: 0.3rem 1.25rem; }
.price-tier{ font-size: 0.85rem; color: var(--bone-dim); }
.price-tier em{ font-style: normal; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.68rem; color: #e3b873; margin-right: 0.4rem; }

/* ---------- other treatments (treatment detail pages) ---------- */
.other-treatments{ padding: 0 var(--pad) clamp(5rem, 9vw, 8rem); max-width: var(--container); margin: 0 auto; }
.other-treatments-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.other-treatment-card{
  position: relative; display: block; overflow: hidden; aspect-ratio: 3/4;
  border: 1px solid var(--line);
}
.other-treatment-card img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.other-treatment-card:hover img{ transform: scale(1.06); }
.other-treatment-card::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,18,13,0.72), rgba(21,18,13,0) 55%);
}
.other-treatment-card span{
  position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1.1rem; z-index: 1;
  color: var(--bone); font-family: var(--serif); font-size: 1.05rem; line-height: 1.25;
}

/* ---------- treatment modal ---------- */
/* ---------- footer ---------- */
.site-footer{ background: #5c5850; color: var(--bone); padding: clamp(4rem, 8vw, 6rem) var(--pad) 2.5rem; }
.footer-inner{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem;
  padding-bottom: 3rem;
}
.footer-col h3{
  font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--bone);
  padding-bottom: 1rem; margin-bottom: 1.5rem; border-bottom: 1px solid #e3b873;
  white-space: nowrap;
}
.footer-about p{ color: var(--bone-dim); font-size: 0.92rem; line-height: 1.65; margin: 0 0 1.1rem; }
.footer-about p:last-child{ margin-bottom: 0; }
.footer-about strong{ color: var(--bone); font-weight: 500; }
.footer-services, .footer-quicklinks{ display: flex; flex-direction: column; }
.footer-services a, .footer-quicklinks a{
  color: var(--bone-dim); font-size: 0.92rem; margin-bottom: 1.1rem; transition: color 0.3s var(--ease);
}
.footer-services a:hover, .footer-quicklinks a:hover{ color: var(--bone); }
.footer-visit p{ color: var(--bone-dim); font-size: 0.92rem; margin: 0 0 0.5rem; }
.footer-visit-name{ color: var(--bone); font-weight: 500; }
.footer-visit-label{ color: #e3b873 !important; font-size: 0.72rem !important; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 1.1rem !important; }
.footer-visit-label-spaced{ margin-top: 1.75rem !important; }
.footer-visit a{ color: var(--bone-dim); transition: color 0.3s var(--ease); }
.footer-visit a:hover{ color: var(--bone); }
.footer-visit .btn-outline{ margin-top: 1.25rem; border-color: var(--line-dark); color: var(--bone); }
.footer-visit .btn-outline:hover{ border-color: var(--bone); background: rgba(242,237,224,0.08); }

.footer-bottom{
  max-width: var(--container); margin: 0 auto; padding-top: 2.5rem; border-top: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.footer-brand{ display: flex; align-items: center; gap: 1.5rem; }
.footer-logo{ width: 44px; height: 44px; object-fit: cover; border-radius: 50%; }
.footer-brand a{ color: var(--bone-dim); transition: color 0.3s var(--ease); }
.footer-brand a:hover{ color: var(--bone); }
.footer-copy{ color: var(--bone-faint); font-size: 0.78rem; }

.wwd-credit{
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  color: inherit;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.wwd-credit:hover{ opacity: 1; }
.wwd-credit-mark{
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 1024px){
  .about-split{ grid-template-columns: 1fr; }
  .about-media{ aspect-ratio: 16/9; }
  .founder{ grid-template-columns: 1fr; }
  .founder-media{ position: static; aspect-ratio: 16/9; }
  .why{ grid-template-columns: 1fr; }
  .why-image{ order: -1; aspect-ratio: 16/9; }
  .services-head{ grid-template-columns: 1fr; gap: 1rem; }
  .services-circles{ gap: 0.85rem; }
  .sustainability{ grid-template-columns: 1fr; }
  .sustainability-image{ min-height: 320px; }
  .reels-grid{ grid-template-columns: repeat(3, 1fr); }
  .other-treatments-grid{ grid-template-columns: repeat(2, 1fr); }
  .visit{ grid-template-columns: 1fr; }
  .visit-media{ min-height: 320px; order: -1; }
}

@media (max-width: 768px){
  .nav-links, .header-actions{ display: none; }
  .nav-toggle{ display: flex; }
  .site-header.menu-open{ background: var(--paper); border-color: var(--line); color: var(--ink); }
  .mobile-menu{
    position: fixed; inset: 80px 0 0 0; z-index: 45; background: var(--paper); color: var(--ink);
    flex-direction: column; padding: 2rem var(--pad); gap: 1.75rem; overflow-y: auto;
  }
  .mobile-menu.open{ display: flex; }
  .mobile-menu a{ font-family: var(--serif); font-size: 1.6rem; }
  .mobile-menu .btn{ margin-top: 1rem; align-self: flex-start; }

  .services-circles{ gap: 0.65rem; }
  .circle-label{ padding: 0.7rem 1.1rem; font-size: 0.62rem; letter-spacing: 0.08em; }
  .review-card{ width: 240px; }
  .reviews-arrow{ width: 36px; height: 36px; }
  .reviews-arrow-prev{ left: 0; }
  .reviews-arrow-next{ right: 0; }
  .visit-details{ grid-template-columns: 1fr; }
  .reels-grid{ grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .footer-inner{ grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-about{ grid-column: 1 / -1; }
}

@media (max-width: 480px){
  .header-inner{ padding: 0 1.25rem; }
  .brand-word{ display: none; }
  .footer-inner{ grid-template-columns: 1fr; }
  .footer-about{ grid-column: auto; }
}
