:root{
  --stone: #E7E5D6;
  --stone-deep: #DBD8C6;
  --ink: #2B2A2A;
  --ink-soft: #55564C;
  --sage: #6E7F5C;
  --sage-deep: #55654A;
  --clay: #B97A6D;
  --clay-deep: #9E5F53;
  --gold: #BE9A4E;
  --card: #F4F2E8;
  --plum-btn: #900C4B;
  --plum-btnhover: #900C4B;
  --max: 1120px;
}

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

html{scroll-behavior:smooth;}

body{
  background: var(--stone);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display{
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

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

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* every anchor target clears the sticky header */
section[id], main[id]{ scroll-margin-top: 84px; }

.eyebrow{
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
}

.skip-link{
  position:absolute; left:-999px; top:auto;
  background: var(--ink); color:#fff;
  padding: 12px 20px; z-index: 100;
  border-radius: 4px;
  font-size: 0.85rem;
}
.skip-link:focus{ left: 16px; top: 16px; }

/* ---------- NAV ---------- */
header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(231,229,214,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43,42,42,0.08);
}
nav.wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-top: 18px; padding-bottom: 18px;
  position: relative;
}
.logo{
  font-family:'Fraunces', serif;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}
.logo em{ font-style: italic; color: var(--sage-deep); }
.nav-links{ display:flex; gap: 32px; align-items:center; }
.nav-links a{
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"]{ color: var(--ink); }
.nav-links a[aria-current="page"]{ font-weight: 600; }

.btn{
  display:inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  border: 1px solid transparent;
}
.btn-primary{ background: var(--plum-btn); color: #fff; }
.btn-primary:hover{ background: var(--sage-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(85,101,74,0.3); }
.btn-ghost{ border: 1px solid rgba(43,42,42,0.25); color: var(--ink); }
.btn-ghost:hover{ border-color: var(--ink); }
.nav-cta{ display:flex; align-items:center; gap:18px; }

.menu-toggle{
  display:none;
  align-items:center; justify-content:center;
  width: 42px; height:42px;
  border-radius: 50%;
  border: 1px solid rgba(43,42,42,0.2);
  background: transparent;
  cursor:pointer;
}
.menu-toggle svg{ width:20px; height:20px; }
.menu-toggle .icon-close{ display:none; }
.menu-toggle[aria-expanded="true"] .icon-open{ display:none; }
.menu-toggle[aria-expanded="true"] .icon-close{ display:block; }

/* focus visibility everywhere */
a:focus-visible, button:focus-visible, input:focus-visible{
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
}

/* ---------- HERO ---------- */
.hero{
  position: relative;
  overflow: hidden;
  padding: 108px 0 96px;
  text-align:center;
}
.hero-photo{
  position:absolute; inset:0;
  z-index:0;
}
.hero-photo img{
  width:100%; height:100%; object-fit:cover;
  opacity: 0.22;
}
.hero-photo::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, var(--stone) 0%, rgba(231,229,214,0.65) 55%, var(--stone) 100%);
}
.breath-field{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  pointer-events:none;
  z-index:1;
}
.ring{
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(110,127,92,0.35);
  animation: breathe 8s ease-in-out infinite;
}
.ring.r1{ width: 260px; height:260px; animation-delay:0s; }
.ring.r2{ width: 420px; height:420px; animation-delay: 0.6s; border-color: rgba(190,154,78,0.28); }
.ring.r3{ width: 600px; height:600px; animation-delay: 1.2s; border-color: rgba(185,122,109,0.22); }
.ring.r4{ width: 780px; height:780px; animation-delay: 1.8s; border-color: rgba(110,127,92,0.15); }

@keyframes breathe{
  0%   { transform: scale(0.86); opacity: 0.35; }
  50%  { transform: scale(1.06); opacity: 0.85; }
  100% { transform: scale(0.86); opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce){
  .ring{ animation: none; opacity: 0.4; }
  html{ scroll-behavior:auto; }
}

.hero-inner{ position:relative; z-index:2; }
.hero .eyebrow{ display:block; margin-bottom: 22px; }
.hero h1{
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 1.02;
  font-weight: 300;
}
.hero h1 .accent{ font-style: italic; color: var(--clay-deep); font-weight:400; }
.hero p.lede{
  max-width: 520px;
  margin: 28px auto 40px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.hero-ctas{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.breath-caption{
  margin-top: 46px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* ---------- PAGE BANNER (services page) ---------- */
.page-banner{
  position:relative;
  overflow:hidden;
  padding: 76px 0 64px;
}
.page-banner-photo{
  position:absolute; inset:0; z-index:0;
}
.page-banner-photo img{ width:100%; height:100%; object-fit:cover; opacity:0.28; }
.page-banner-photo::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, var(--stone) 0%, rgba(231,229,214,0.6) 60%, var(--stone) 100%);
}
.page-banner .wrap{ position:relative; z-index:1; }
.breadcrumb{
  display:flex; gap:8px; align-items:center;
  font-size: 0.82rem; color: var(--ink-soft);
  margin-bottom: 18px;
}
.breadcrumb a{ color: var(--sage-deep); }
.breadcrumb a:hover{ text-decoration: underline; }
.page-banner h1{ font-size: clamp(2.4rem, 5.5vw, 3.6rem); font-weight:300; }
.page-banner p.lede{ max-width:560px; color: var(--ink-soft); margin-top:18px; font-size:1.02rem; }

/* ---------- SECTION SHELL ---------- */
section{ padding: 96px 0; }
section.alt{ background: var(--stone-deep); }
.section-head{ max-width: 620px; margin-bottom: 56px; }
.section-head h2{
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-top: 14px;
}
.section-head p{ color: var(--ink-soft); margin-top: 16px; font-size: 1.02rem; }

/* ---------- ABOUT ---------- */
.about{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
}
.about-copy p{ color: var(--ink-soft); margin-bottom: 18px; font-size: 1.02rem; }
.about-copy p:last-child{ margin-bottom:0; }
.about-visual{
  aspect-ratio: 4/5;
  border-radius: 4px;
  position: relative;
  overflow:hidden;
  background: var(--card);
}
.about-visual img{ width:100%; height:100%; object-fit:cover; }
.about-visual::after{
  content:"exhale";
  position:absolute;
  bottom: 22px; left: 22px;
  font-family:'Fraunces', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

/* ---------- SERVICES TEASER (home) ---------- */
.teaser-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.teaser-card{
  background: var(--card);
  border-radius: 4px;
  overflow:hidden;
}
.teaser-photo{ aspect-ratio: 4/3; overflow:hidden; }
.teaser-photo img{ width:100%; height:100%; object-fit:cover; }
.teaser-body{ padding: 22px 24px 26px; }
.teaser-body h3{ font-size:1.15rem; font-weight:500; margin-bottom:6px; }
.teaser-body p{ font-size:0.92rem; color:var(--ink-soft); margin-bottom:14px; }
.teaser-price{ font-family:'Fraunces', serif; color: var(--gold); font-size:1rem; }
.teaser-cta{ text-align:center; margin-top: 44px; }

/* ---------- SERVICES (full menu) ---------- */
.service-group{ margin-bottom: 44px; }
.service-group:last-child{ margin-bottom: 0; }
.service-group h3{
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(43,42,42,0.12);
}
.service-row{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(43,42,42,0.14);
}
.service-row:last-child{ border-bottom:none; }
.service-name{ font-size: 1.02rem; }
.service-note{ display:block; font-size: 0.85rem; color: var(--ink-soft); margin-top: 3px; }
.service-price{
  font-family:'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
  text-align:right;
}

.services-layout{
  display:grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 56px;
  align-items:start;
}
.services-side{ position:sticky; top: 104px; }
.side-photo{ border-radius:4px; overflow:hidden; aspect-ratio: 3/4; margin-bottom:24px; }
.side-photo img{ width:100%; height:100%; object-fit:cover; }
.side-note{
  background: var(--card);
  border-radius:4px;
  padding: 24px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.side-note strong{ display:block; color:var(--ink); font-family:'Fraunces', serif; font-size:1.05rem; margin-bottom:8px; font-weight:500; }

.addon-banner{
  margin-top: 12px;
  background: var(--card);
  border-radius: 4px;
  padding: 26px 28px;
}
.addon-banner .addon-head{
  display:flex; justify-content:space-between; align-items:baseline; flex-wrap:wrap; gap:10px;
  margin-bottom: 14px;
}
.addon-banner h4{ font-family:'Fraunces', serif; font-size:1.15rem; font-weight:500; }
.addon-price{ color: var(--gold); font-family:'Fraunces', serif; }
.addon-list{
  display:flex; flex-wrap:wrap; gap: 10px 14px;
  list-style:none;
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.addon-list li::before{ content:"·"; margin-right:8px; color: var(--sage-deep); }

/* ---------- EXPERIENCES ---------- */
.exp-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.exp-card{
  background: var(--card);
  border-radius: 4px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
}
.exp-photo{ aspect-ratio: 16/10; overflow:hidden; }
.exp-photo img{ width:100%; height:100%; object-fit:cover; }
.exp-card-body{ padding: 30px 26px 32px; display:flex; flex-direction:column; flex-grow:1; }
.exp-card .eyebrow{ margin-bottom: 10px; }
.exp-card h3{ font-size:1.4rem; font-weight:500; margin-bottom: 8px; }
.exp-price{
  font-family:'Fraunces', serif;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.exp-card p{ color: var(--ink-soft); font-size: 0.95rem; flex-grow:1; }
.scent-list{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(43,42,42,0.14);
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.scent-list span{ display:block; font-size:0.7rem; letter-spacing:0.14em; text-transform:uppercase; color: var(--sage-deep); margin-bottom:8px; font-weight:600; }
.exp-addon{ margin-top: 14px; font-size: 0.85rem; color: var(--clay-deep); }

/* ---------- LOCATION / CTA ---------- */
.location{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:start;
}
.hours-table{ width:100%; margin-top: 20px; border-collapse: collapse; }
.hours-table td{ padding: 9px 0; border-bottom: 1px dashed rgba(43,42,42,0.14); font-size:0.96rem; }
.hours-table td:last-child{ text-align:right; color: var(--ink-soft); }
address{ font-style:normal; color: var(--ink-soft); line-height:1.7; }
.map-embed{
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow:hidden;
  border: 1px solid rgba(43,42,42,0.12);
}
.map-embed iframe{ width:100%; height:100%; border:0; }

.book-cta{
  text-align:center;
  padding: 100px 0;
  position: relative;
  overflow:hidden;
}
.book-cta h2{ font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 300; margin-bottom: 20px; }
.book-cta .accent{ font-style: italic; color: var(--clay-deep); }
.book-cta p{ color: var(--ink-soft); max-width: 480px; margin: 0 auto 34px; }

footer{ padding: 44px 0; border-top: 1px solid rgba(43,42,42,0.1); }
.footer-inner{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap: 16px; }
.footer-inner .logo{ font-size: 1.1rem; }
.footer-links{ display:flex; gap: 22px; font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- CONTACT FORM ---------- */
.contact-layout{
  display:grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items:start;
}
.contact-form{
  background: var(--card);
  border-radius: 4px;
  padding: 36px;
}
.form-field{ margin-bottom: 22px; }
.form-field:last-of-type{ margin-bottom: 0; }
.form-field label{
  display:block;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea{
  width: 100%;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(43,42,42,0.2);
  border-radius: 4px;
  padding: 12px 14px;
}
.form-field input:focus,
.form-field textarea:focus{
  outline: 2px solid var(--sage-deep);
  outline-offset: 1px;
  border-color: var(--sage-deep);
}
.form-field textarea{ min-height: 140px; resize: vertical; }
.form-required{ color: var(--clay-deep); }
.form-submit{ margin-top: 28px; }
.form-submit button{
  font: inherit;
  cursor: pointer;
}

/* Honeypot: hidden from sighted users, still reachable by simple bots */
.hp-field{
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-banner{
  border-radius: 4px;
  padding: 18px 22px;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.form-success{
  background: rgba(110,127,92,0.14);
  border: 1px solid rgba(110,127,92,0.4);
  color: var(--sage-deep);
}
.form-error{
  background: rgba(185,122,109,0.12);
  border: 1px solid rgba(185,122,109,0.4);
  color: var(--clay-deep);
}
.form-error ul{ padding-left: 20px; margin:0; }

.contact-side{
  display:flex;
  flex-direction:column;
  gap: 20px;
}
.contact-card{
  background: var(--stone-deep);
  border-radius: 4px;
  padding: 26px;
}
.contact-card strong{
  display:block;
  font-family:'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-card p, .contact-card a{ color: var(--ink-soft); font-size: 0.95rem; }
.contact-card a{ text-decoration: underline; }

/* ---------- BOOKING NOTE (site owner only, remove after setup) ---------- */
.setup-note{
  background: #fff8e6;
  border: 1px dashed #c7a550;
  color: #6b5a1e;
  font-size: 0.82rem;
  padding: 14px 18px;
  border-radius: 4px;
  max-width: var(--max);
  margin: 18px auto 0;
}

@media (max-width: 860px){
  .about, .location, .services-layout, .contact-layout{ grid-template-columns: 1fr; }
  .services-side{ position:static; }
  .exp-grid, .teaser-grid{ grid-template-columns: 1fr; }

  .nav-links{
    display:none;
    position:absolute;
    top: 100%; left:0; right:0;
    background: var(--stone);
    border-bottom: 1px solid rgba(43,42,42,0.1);
    flex-direction:column;
    align-items:flex-start;
    gap: 0;
    padding: 8px 28px 20px;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding: 14px 0; width:100%; border-bottom: 1px dashed rgba(43,42,42,0.1); }
  .menu-toggle{ display:flex; }
  .nav-cta .btn-primary{ padding: 10px 18px; font-size: 0.78rem; }
}
