:root {
  --pine: #284c3d;
  --pine-2: #355f4d;
  --sage: #8ba28f;
  --mint: #dfe9df;
  --cream: #f7f3e9;
  --paper: #fffdf8;
  --sand: #d7c6a6;
  --gold: #b99a63;
  --ink: #1e3029;
  --muted: #67736d;
  --line: rgba(40, 76, 61, .18);
  --shadow: 0 26px 70px rgba(34, 58, 48, .12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section-pad { padding: 110px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 248, .92);
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(32, 55, 46, .06);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 84px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
}
.brand-mark svg { width: 30px; height: 30px; fill: none; stroke: var(--pine-2); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.04rem; letter-spacing: .01em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .76rem; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { position: relative; text-decoration: none; font-size: .9rem; font-weight: 650; color: #3f5048; }
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--pine);
  transition: right .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.nav-cta { padding: 11px 18px; border-radius: 999px; background: var(--pine); color: #fff !important; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  padding-top: 90px;
  background:
    radial-gradient(circle at 15% 10%, rgba(223,233,223,.9), transparent 30%),
    linear-gradient(135deg, var(--paper), #f1f5ef 62%, #ebe2d2 130%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 80px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--pine-2);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.03; }
h1 { max-width: 720px; font-size: clamp(3.8rem, 7vw, 7rem); letter-spacing: -.05em; }
h2 { font-size: clamp(2.8rem, 5vw, 5.3rem); letter-spacing: -.04em; }
h3 { font-size: 1.35rem; }
.hero-name { margin: 18px 0 0; color: var(--pine-2); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 2.2vw, 2.1rem); }
.hero-lead { max-width: 640px; margin: 28px 0 0; font-size: 1.07rem; color: #47584f; }
.motto { max-width: 560px; margin: 26px 0 0; padding-left: 20px; border-left: 1px solid var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; color: var(--pine); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  font-size: .91rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--pine); color: #fff; box-shadow: 0 14px 30px rgba(40,76,61,.2); }
.btn-primary:hover { box-shadow: 0 18px 34px rgba(40,76,61,.26); }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.55); color: var(--pine); }
.hero-facts { display: flex; align-items: stretch; gap: 20px; margin-top: 44px; }
.hero-facts > div:not(.fact-separator) { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 10px; }
.hero-facts strong { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; color: var(--pine); }
.hero-facts span { max-width: 115px; color: var(--muted); font-size: .8rem; line-height: 1.25; }
.fact-separator { width: 1px; background: var(--line); }

.hero-visual { position: relative; height: 570px; }
.visual-card {
  position: absolute;
  right: 4%;
  top: 50%;
  width: min(390px, 82%);
  aspect-ratio: .78;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 210px 210px 42px 42px;
  background: linear-gradient(160deg, rgba(255,255,255,.82), rgba(220,232,221,.78));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual-main::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(53,95,77,.13);
  border-radius: inherit;
}
.botanical { position: absolute; width: 95%; right: -20%; bottom: -4%; fill: rgba(102,133,109,.08); stroke: rgba(53,95,77,.33); stroke-width: 1.4; }
.visual-seal {
  position: absolute;
  left: 52px;
  bottom: 52px;
  width: 128px;
  height: 128px;
  display: grid;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,253,248,.84);
  text-align: center;
  box-shadow: 0 14px 34px rgba(42,70,58,.08);
}
.visual-seal span { font-size: .67rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.visual-seal strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 500; }
.needle-line { position: absolute; z-index: 3; width: 1px; height: 300px; background: linear-gradient(to bottom, transparent 0 8%, var(--gold) 8% 100%); transform-origin: center top; opacity: .65; }
.needle-line::before { content: ""; position: absolute; top: 0; left: -2px; width: 5px; height: 26px; border: 1px solid var(--gold); border-radius: 999px; }
.line-one { top: 75px; left: 38%; transform: rotate(20deg); }
.line-two { top: 58px; left: 53%; transform: rotate(8deg); height: 340px; }
.line-three { top: 92px; left: 67%; transform: rotate(-10deg); height: 260px; }
.floating-note { position: absolute; z-index: 4; padding: 10px 16px; border: 1px solid rgba(53,95,77,.14); border-radius: 999px; background: rgba(255,253,248,.82); backdrop-filter: blur(10px); box-shadow: 0 12px 30px rgba(36,67,54,.08); font-size: .78rem; color: var(--pine); }
.note-top { top: 12%; left: 0; }
.note-bottom { right: 0; bottom: 14%; }
.hero-orbit { position: absolute; border: 1px solid rgba(53,95,77,.09); border-radius: 50%; }
.orbit-a { width: 530px; height: 530px; right: -210px; top: 5%; }
.orbit-b { width: 360px; height: 360px; left: -180px; bottom: -130px; }

.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.section-heading { max-width: 760px; }
.section-heading.centered { margin: 0 auto 56px; text-align: center; }
.intro { background: var(--paper); }
.intro-copy { max-width: 690px; padding-top: 18px; }
.intro-copy > p { margin: 0; font-size: clamp(1.35rem, 2.2vw, 2.05rem); line-height: 1.48; font-family: Georgia, "Times New Roman", serif; }
.intro-copy blockquote { margin: 42px 0 0; padding: 26px 0 0; border-top: 1px solid var(--line); color: var(--pine-2); font-size: 1.02rem; font-style: italic; }

.treatments { position: relative; background: var(--cream); }
.treatments::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }
.treatment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.treatment-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(40,76,61,.13);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.58);
  overflow: hidden;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.treatment-card::after { content: ""; position: absolute; width: 90px; height: 90px; right: -45px; bottom: -45px; border: 1px solid rgba(53,95,77,.15); border-radius: 50%; transition: transform .35s ease; }
.treatment-card:hover { transform: translateY(-7px); background: rgba(255,255,255,.92); box-shadow: 0 20px 45px rgba(40,76,61,.09); }
.treatment-card:hover::after { transform: scale(1.45); }
.treatment-card span { font-size: .7rem; font-weight: 800; letter-spacing: .12em; color: var(--sage); }
.treatment-card h3 { max-width: 220px; }

.experience { background: #eef3ed; }
.experience-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; padding: 70px; border: 1px solid rgba(53,95,77,.16); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(239,245,239,.72)); box-shadow: var(--shadow); }
.experience-name { margin: 28px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.experience-specialty { margin: 5px 0 0; color: var(--muted); }
.experience-stats { display: grid; grid-template-columns: repeat(2, 1fr); border-left: 1px solid var(--line); }
.stat { padding: 34px 40px; display: flex; min-height: 190px; flex-direction: column; justify-content: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(4rem, 7vw, 6.7rem); font-weight: 400; line-height: .9; color: var(--pine); }
.stat span { margin-top: 18px; color: var(--muted); font-size: .9rem; }
.icon-stat strong { font-size: 5rem; }

.gallery-section { background: var(--paper); }
.gallery-heading { margin-bottom: 48px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 285px; gap: 18px; }
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(53,95,77,.26);
  border-radius: 26px;
  background: #eef1ed;
  box-shadow: 0 14px 38px rgba(34,58,48,.08);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 28px 10px rgba(255,253,248,.16);
  pointer-events: none;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-tall { grid-row: span 2; }

.contact { background: var(--paper); padding-top: 30px; }
.contact-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; padding: 65px; border-radius: var(--radius-lg); background: var(--pine); color: white; box-shadow: 0 28px 70px rgba(34,58,48,.18); }
.contact-card::after { content: ""; position: absolute; width: 420px; height: 420px; right: -180px; top: -220px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.contact-card .eyebrow { color: #dce8df; }
.contact-card h2 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.contact-copy > p:not(.eyebrow) { margin: 14px 0 0; color: #dfe9e3; }
.contact-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 30px; }
.contact-meta span, .contact-meta a { color: #fff; text-decoration: none; font-weight: 650; }
.contact-actions { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end; gap: 22px; }
.btn-light { background: #fff; color: var(--pine); }
.socials { display: flex; gap: 20px; color: #dce8df; font-size: .88rem; }

.closing { text-align: center; background: linear-gradient(180deg, var(--paper), var(--cream)); }
.closing-inner { max-width: 870px; }
.closing p { margin: 0 0 18px; color: var(--pine-2); font-weight: 800; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; }
.closing h2 { font-size: clamp(2.7rem, 5vw, 5.5rem); }
.text-link { display: inline-flex; gap: 10px; margin-top: 34px; text-decoration: none; color: var(--pine); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.site-footer { padding: 42px 0; border-top: 1px solid var(--line); background: var(--cream); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 30px; align-items: center; }
.footer-grid > div { display: grid; gap: 3px; }
.footer-grid strong { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.footer-grid span, .footer-grid a { color: var(--muted); text-decoration: none; font-size: .84rem; }
.footer-social { display: flex !important; grid-auto-flow: column; gap: 16px !important; }

.back-top { position: fixed; right: 20px; bottom: 20px; z-index: 30; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; background: var(--pine); color: #fff; box-shadow: 0 12px 28px rgba(40,76,61,.22); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s ease; }
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 1; transform: none; }
.reveal.visible { animation: revealUp .7s ease both; }
@keyframes revealUp {
  from { opacity: .35; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }

@media (max-width: 980px) {
  .section-pad { padding: 88px 0; }
  .hero { min-height: auto; padding-top: 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { height: 430px; }
  .visual-card { right: 12%; width: 330px; }
  .note-top { left: 16%; }
  .note-bottom { right: 14%; }
  .split-grid { grid-template-columns: 1fr; gap: 35px; }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-panel { grid-template-columns: 1fr; padding: 52px; }
  .experience-stats { border-left: 0; border-top: 1px solid var(--line); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: 1fr; }
  .contact-actions { align-items: flex-start; }
}

@media (max-width: 780px) {
  .nav-shell { min-height: 72px; }
  .menu-toggle { display: block; z-index: 61; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 88px 24px 40px;
    background: rgba(247,243,233,.98);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .25s ease;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { font-family: Georgia, "Times New Roman", serif; font-size: 1.7rem; font-weight: 500; }
  .site-nav .nav-cta { font-family: inherit; font-size: 1rem; font-weight: 750; }
  .hero-facts { flex-wrap: wrap; }
  .visual-card { right: 8%; }
  .gallery-grid { grid-auto-rows: 245px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-social { grid-auto-flow: initial; justify-content: start; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section-pad { padding: 72px 0; }
  .brand-copy strong { font-size: .93rem; }
  .brand-copy small { font-size: .69rem; }
  .brand-mark { width: 40px; height: 40px; }
  .hero { padding-top: 38px; }
  h1 { font-size: clamp(3.1rem, 16vw, 4.5rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-facts { gap: 14px; }
  .hero-facts > div:not(.fact-separator) { flex: 1 1 130px; }
  .hero-visual { height: 360px; }
  .visual-card { width: 280px; right: 2%; }
  .visual-seal { width: 105px; height: 105px; left: 34px; bottom: 35px; }
  .visual-seal strong { font-size: 1.2rem; }
  .floating-note { font-size: .7rem; }
  .note-top { left: 2%; }
  .note-bottom { right: 0; }
  .treatment-grid { grid-template-columns: 1fr; }
  .treatment-card { min-height: 175px; }
  .experience-panel { padding: 34px 24px; border-radius: 26px; }
  .experience-stats { grid-template-columns: 1fr; }
  .stat { min-height: 145px; padding: 28px 4px; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery-item, .gallery-tall { grid-row: auto; aspect-ratio: 4 / 5; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(4), .gallery-item:nth-child(6) { aspect-ratio: 4 / 3; }
  .contact-card { padding: 36px 24px; border-radius: 26px; }
  .contact-meta { flex-direction: column; gap: 8px; }
  .socials { flex-wrap: wrap; }
  .closing h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
