:root{
  --cream:      #F7F2E9;
  --cream-2:    #EFE7D6;
  --panel:      #EAE0CB;
  --ink:        #2B241C;
  --ink-soft:   #5B5348;
  --muted:      #8A8070;
  --gold:       #B4935A;
  --gold-deep:  #93743F;
  --pink:       #F1D9D6;
  --pink-line:  #E3B9B4;
  --line:       #DCD0B7;
  --line-soft:  rgba(43,36,28,0.12);
  --max: 1180px;
}
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0; background: var(--cream); color: var(--ink);
  font-family: 'Jost', sans-serif; font-weight: 300; -webkit-font-smoothing: antialiased;
}
h1,h2,h3{ font-family:'Cormorant Garamond', serif; font-weight:500; margin:0; color:var(--ink); letter-spacing:.2px; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
img{ max-width:100%; display:block; }
.wrap{ max-width:var(--max); margin:0 auto; padding:0 28px; }
.eyebrow{ font-family:'Jost',sans-serif; font-size:12px; letter-spacing:3px; color:var(--gold-deep); font-weight:500; margin-bottom:14px; }
.rule{ width:46px; height:1px; background:var(--gold); margin:20px 0 24px; }
.rule.center{ margin-left:auto; margin-right:auto; }

header.site{ position:sticky; top:0; z-index:50; background:rgba(247,242,233,0.92); backdrop-filter:blur(6px); border-bottom:1px solid var(--line-soft); }
.header-inner{ max-width:var(--max); margin:0 auto; padding:18px 28px; display:flex; align-items:center; justify-content:space-between; }
.logo{ display:flex; align-items:center; gap:10px; }
.logo img{ display:block; height:36px; width:auto; }
nav.desktop-nav{ display:none; gap:34px; align-items:center; }
nav.desktop-nav a{ font-size:13px; letter-spacing:1px; color:var(--ink-soft); padding:4px 0; border-bottom:1px solid transparent; transition:border-color .2s,color .2s; }
nav.desktop-nav a:hover, nav.desktop-nav a.active{ color:var(--ink); border-color:var(--gold); }
.nav-cta{ display:none; padding:10px 20px; background:var(--gold); color:#fff !important; font-size:12px; letter-spacing:1.5px; border-radius:2px; }
.nav-cta:hover{ background:var(--gold-deep); }
.menu-btn{ width:30px; height:22px; position:relative; background:none; border:none; }
.menu-btn span{ position:absolute; left:0; right:0; height:1px; background:var(--ink); transition:transform .25s, opacity .25s; }
.menu-btn span:nth-child(1){ top:0; }
.menu-btn span:nth-child(2){ top:10px; }
.menu-btn span:nth-child(3){ top:20px; }
.menu-btn.open span:nth-child(1){ transform:translateY(10px) rotate(45deg); }
.menu-btn.open span:nth-child(2){ opacity:0; }
.menu-btn.open span:nth-child(3){ transform:translateY(-10px) rotate(-45deg); }
.mobile-nav{ max-height:0; overflow:hidden; background:var(--cream-2); transition:max-height .3s ease; border-bottom:1px solid var(--line-soft); }
.mobile-nav.open{ max-height:360px; }
.mobile-nav .wrap{ padding:10px 28px 24px; display:flex; flex-direction:column; gap:4px; }
.mobile-nav a{ padding:12px 0; font-size:15px; border-bottom:1px solid var(--line-soft); color:var(--ink-soft); }
.mobile-nav a.cta-link{ color:var(--gold-deep); font-weight:500; }
.mobile-nav a.active{ color:var(--ink); }
@media(min-width:860px){
  nav.desktop-nav{ display:flex; }
  .nav-cta{ display:inline-block; }
  .menu-btn{ display:none; }
}

.btn{ display:inline-flex; align-items:center; justify-content:center; padding:15px 30px; font-size:12px; letter-spacing:2px; font-weight:500; border-radius:2px; transition:all .2s ease; text-align:center; }
.btn-solid{ background:var(--gold); color:#fff; }
.btn-solid:hover{ background:var(--gold-deep); }
.btn-outline{ background:transparent; color:var(--ink); border:1px solid var(--ink); }
.btn-outline:hover{ background:var(--ink); color:var(--cream); }
.btn-row{ display:flex; flex-direction:column; gap:14px; margin-top:34px; }
@media(min-width:560px){ .btn-row{ flex-direction:row; } }

section{ padding:84px 0; }
.section-cream2{ background:var(--cream-2); }
.section-panel{ background:var(--panel); }

.hero{ padding:72px 0 90px; }
.hero h1{ font-size:46px; line-height:1.08; }
.hero h1 em{ font-style:italic; color:var(--gold-deep); }
.hero p.lead{ max-width:480px; margin-top:22px; font-size:17px; line-height:1.7; color:var(--ink-soft); }
@media(min-width:860px){
  .hero .wrap{ display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center; }
  .hero h1{ font-size:60px; }
}
.hero-art{ margin-top:50px; aspect-ratio:4/3; border-radius:4px; overflow:hidden; background:linear-gradient(155deg,var(--pink) 0%, var(--cream-2) 55%, var(--panel) 100%); position:relative; }
.hero-art svg{ width:100%; height:100%; display:block; }
@media(min-width:860px){ .hero-art{ margin-top:0; } }
.hero .wrap.solo{ display:block; max-width:640px; }

.card-grid{ display:grid; gap:22px; margin-top:44px; }
@media(min-width:760px){ .card-grid.two{ grid-template-columns:1fr 1fr; } }
.t-card{ background:var(--cream-2); border:1px solid var(--line-soft); padding:34px 32px; border-radius:3px; }
.t-card .eyebrow{ font-size:11px; }
.t-card h3{ font-size:26px; margin-bottom:12px; }
.t-card p{ color:var(--ink-soft); line-height:1.7; font-size:15px; }
.t-card .learn{ display:inline-block; margin-top:20px; font-size:12px; letter-spacing:1.5px; color:var(--gold-deep); border-bottom:1px solid var(--gold); padding-bottom:3px; }

.split{ display:grid; gap:50px; }
@media(min-width:860px){ .split{ grid-template-columns:1fr 1fr; align-items:center; } }
.feature-list{ margin-top:30px; display:flex; flex-direction:column; gap:22px; }
.feature-list li{ border-top:1px solid var(--line); padding-top:18px; }
.feature-list h3{ font-size:21px; margin-bottom:6px; }
.feature-list p{ color:var(--ink-soft); font-size:14.5px; line-height:1.65; }
.split.solo{ max-width:640px; margin:0 auto; }
@media(min-width:860px){ .split.solo{ grid-template-columns:1fr; } }

.photo-block{ margin:36px 0 0; border-radius:4px; overflow:hidden; border:1px solid var(--line); }
.photo-block img{ width:100%; height:auto; display:block; }
.photo-caption{ margin-top:10px; font-size:12.5px; color:var(--muted); }

.cta-band{ text-align:center; }
.cta-band .rule{ margin-bottom:24px; }
.cta-band h2{ font-size:34px; }
.cta-band p{ margin-top:14px; color:var(--ink-soft); }
.cta-band .btn{ margin-top:34px; }

footer{ background:var(--cream-2); padding:64px 0 30px; border-top:1px solid var(--line-soft); }
.foot-grid{ display:grid; gap:40px; }
@media(min-width:760px){ .foot-grid{ grid-template-columns:1.3fr 1fr 1fr; } }
footer .logo img{ height:46px; }
.foot-tag{ margin-top:16px; color:var(--ink-soft); font-size:14px; max-width:280px; line-height:1.6; }
.foot-social{ display:flex; gap:14px; margin-top:22px; }
.foot-social a{ width:34px; height:34px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; }
.foot-heading{ font-size:11px; letter-spacing:2px; color:var(--gold-deep); margin-bottom:18px; }
.foot-links{ display:flex; flex-direction:column; gap:12px; }
.foot-links a{ font-size:14px; color:var(--ink-soft); }
.foot-links a:hover{ color:var(--ink); }
.foot-addr p{ font-size:14px; color:var(--ink-soft); line-height:1.7; }
.foot-addr .book-now{ display:inline-block; margin-top:18px; padding:11px 22px; border:1px solid var(--gold); color:var(--gold-deep); font-size:12px; letter-spacing:1.5px; border-radius:2px; }
.foot-bottom{ margin-top:54px; padding-top:24px; border-top:1px solid var(--line-soft); display:flex; flex-direction:column; gap:6px; align-items:center; text-align:center; }
.foot-bottom p{ font-size:12px; color:var(--muted); }

.page-head{ padding:60px 0 20px; }
.page-head h1{ font-size:40px; margin-top:4px; }
@media(min-width:860px){ .page-head h1{ font-size:50px; } }
.page-head p.lead{ max-width:560px; margin-top:18px; color:var(--ink-soft); font-size:16.5px; line-height:1.7; }

.treat-block{ padding:56px 0; border-top:1px solid var(--line-soft); }
.treat-block:first-of-type{ border-top:none; }
.treat-block h2{ font-size:32px; margin-top:6px; max-width:460px; }
.treat-block .btn{ margin-top:26px; }
.price-list{ margin-top:40px; display:flex; flex-direction:column; }
.price-row{ display:flex; align-items:baseline; gap:18px; padding:16px 0; border-bottom:1px solid var(--line); }
.price-row .num{ font-size:12px; color:var(--muted); width:20px; flex-shrink:0; }
.price-row .name{ flex:1; font-size:16px; }
.price-row .price{ font-family:'Cormorant Garamond',serif; font-size:19px; color:var(--gold-deep); }

.how-steps{ display:grid; gap:40px; margin-top:44px; }
@media(min-width:760px){ .how-steps{ grid-template-columns:repeat(3,1fr); } }
.how-steps .step .num{ font-family:'Cormorant Garamond',serif; font-size:30px; color:var(--gold); }
.how-steps .step h3{ font-size:22px; margin:10px 0 8px; }
.how-steps .step p{ color:var(--ink-soft); font-size:14.5px; line-height:1.65; }

.note-box{ margin-top:20px; padding:20px 24px; background:var(--panel); border-radius:3px; font-size:13.5px; color:var(--ink-soft); line-height:1.7; }

.qual-grid{ display:grid; gap:20px; margin-top:40px; }
@media(min-width:640px){ .qual-grid{ grid-template-columns:1fr 1fr; } }
.qual-card{ padding:26px; border:1px solid var(--line); border-radius:3px; background:var(--cream); }
.qual-card h3{ font-size:19px; margin-bottom:8px; }
.qual-card p{ font-size:14px; color:var(--ink-soft); line-height:1.6; }

.approach-steps{ display:flex; flex-direction:column; gap:32px; margin-top:40px; }
.approach-steps .step{ display:flex; gap:22px; }
.approach-steps .num{ font-family:'Cormorant Garamond',serif; font-size:26px; color:var(--gold); flex-shrink:0; }
.approach-steps h3{ font-size:20px; margin-bottom:6px; }
.approach-steps p{ font-size:14.5px; color:var(--ink-soft); line-height:1.65; }

.info-strip{ display:flex; flex-direction:column; gap:24px; margin-top:40px; }
.info-strip .item{ border-left:2px solid var(--gold); padding-left:20px; }
.info-strip h3{ font-size:18px; margin-bottom:6px; font-family:'Jost',sans-serif; font-weight:500; letter-spacing:.5px; }
.info-strip p{ font-size:14.5px; color:var(--ink-soft); line-height:1.7; }

.map-box{ margin-top:30px; aspect-ratio:16/9; border-radius:3px; overflow:hidden; border:1px solid var(--line); position:relative; }
.map-box svg{ width:100%; height:100%; display:block; }
.map-box iframe{ width:100%; height:100%; display:block; border:0; }
.map-box .open-link{ position:absolute; top:14px; left:14px; z-index:2; background:#fff; padding:8px 14px; font-size:12px; border-radius:2px; box-shadow:0 1px 4px rgba(0,0,0,.15); }

.contact-grid{ display:grid; gap:56px; }
@media(min-width:900px){ .contact-grid{ grid-template-columns:1fr .85fr; } }
.field{ margin-bottom:22px; }
.field label{ display:block; font-size:11px; letter-spacing:1.5px; color:var(--gold-deep); margin-bottom:9px; font-weight:500; }
.field input,.field select,.field textarea{ width:100%; padding:14px 16px; border:1px solid var(--line); background:var(--cream); font-family:'Jost',sans-serif; font-size:14.5px; color:var(--ink); border-radius:2px; font-weight:300; }
.field input::placeholder,.field textarea::placeholder{ color:var(--muted); }
.field textarea{ resize:vertical; min-height:120px; }
.field input:focus,.field select:focus,.field textarea:focus{ outline:2px solid var(--gold); outline-offset:1px; }
form .btn{ width:100%; }
@media(min-width:480px){ form .btn{ width:auto; } }
.form-note{ margin-top:14px; font-size:12.5px; color:var(--muted); }

.contact-info .item{ padding:18px 0; border-top:1px solid var(--line); }
.contact-info .item:first-child{ border-top:none; }
.contact-info h3{ font-size:18px; margin-bottom:6px; font-family:'Jost',sans-serif; font-weight:500; }
.contact-info p{ font-size:14.5px; color:var(--ink-soft); line-height:1.7; }

.center-text{ text-align:center; }
.max-narrow{ max-width:640px; }
:focus-visible{ outline:2px solid var(--gold-deep); outline-offset:2px; }

.logo-wordmark{ width:auto; height:36px; }
footer .logo-wordmark{ height:46px; }
.hero-copy{ max-width:610px; }
.hero-copy .rule{ margin-top:22px; }
.trust-section{ padding-top:74px; }
.trust-copy{ max-width:680px; }
.form-status{ margin-top:16px; min-height:22px; color:var(--gold-deep); font-size:13px; }
.honeypot{ position:absolute; left:-9999px; }
@media(max-width:859px){
  .hero{ padding-top:68px; }
  .hero-copy{ max-width:540px; }
}
