:root{
  --bg:#fffdfb;
  --paper:#f8f1ec;
  --ink:#242220;
  --muted:#6e6864;
  --accent:#a67a6d;
  --accent-dark:#895f55;
  --line:#e9ddd5;
  --white:#fff;
  --radius:20px;
  --shadow:0 16px 50px rgba(70,48,39,.08);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.55;
}

img{
  display:block;
  max-width:100%;
}

a{color:inherit}

.container{
  width:min(1160px,calc(100% - 40px));
  margin:auto;
}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,253,251,.95);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(233,221,213,.7);
}

.nav-wrap{
  min-height:76px;
  display:flex;
  align-items:center;
  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-family:Georgia,"Times New Roman",serif;
  font-size:22px;
  white-space:nowrap;
}

.brand strong{
  font-size:28px;
  font-weight:500;
}

.brand small{
  display:block;
  font:9px/1.2 Inter,system-ui,sans-serif;
  letter-spacing:.19em;
  margin-top:2px;
}

.brand-mark{
  font-size:29px;
  color:var(--accent);
}

.nav{
  display:flex;
  gap:24px;
  margin-left:auto;
}

.nav a{
  text-decoration:none;
  font-size:14px;
}

.desktop-cta{margin-left:4px}

.nav-toggle{
  display:none;
  margin-left:auto;
  border:0;
  background:none;
  font-size:26px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 20px;
  border-radius:999px;
  text-decoration:none;
  font-weight:650;
  font-size:14px;
  border:1px solid transparent;
}

.btn-primary{
  background:var(--accent);
  color:white;
}

.btn-primary:hover{background:var(--accent-dark)}

.btn-secondary{
  border-color:var(--accent);
  color:var(--accent-dark);
  background:transparent;
}

/* HERO */

.hero{
  background:linear-gradient(90deg,#f7efe9 0%,#fbf7f4 55%,#f3eae5 100%);
  padding:28px 0 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1.18fr;
  align-items:stretch;
  min-height:470px;
}

.hero-copy{
  padding:46px 34px 46px 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.eyebrow{
  font-size:12px;
  letter-spacing:.2em;
  font-weight:700;
  color:#6f615b;
  margin:0 0 10px;
}

.hero h1,
.section h2{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  line-height:1.04;
  margin:0;
}

.hero h1{
  font-size:clamp(40px,4.7vw,64px);
  max-width:560px;
}

.lead{
  font-size:17px;
  color:#4c4744;
  max-width:560px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:16px 0 22px;
}

.hero-contact{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  color:#504943;
  font-size:14px;
}

.hero-contact a{
  text-decoration:none;
  font-weight:700;
}

.hero-media{
  position:relative;
  min-height:470px;
  overflow:hidden;
  border-radius:34px 0 0 0;
}

.hero-media>img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 42%;
}

.hero-note{
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  width:180px;
  padding:34px 22px;
  background:rgba(247,239,233,.92);
  display:flex;
  flex-direction:column;
  gap:24px;
}

.hero-note strong{
  font-family:Georgia,serif;
  font-size:25px;
  font-weight:400;
  color:#765047;
}

.hero-note span{
  font-size:10px;
  letter-spacing:.18em;
}

/* SECTIONS */

.section{padding:72px 0}

.section h2{
  font-size:clamp(34px,4vw,50px);
  margin-bottom:30px;
}

/* TREATMENT CARDS */

.cards{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  align-items:stretch;
}

.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  min-width:0;
}

.card img{
  display:block;
  width:100%;
  height:190px;
  max-height:190px;
  object-fit:cover;
  object-position:center center;
  flex:0 0 190px;
}

.card:nth-child(1) img{
  object-position:52% 45%;
}

.card:nth-child(2) img{
  object-position:50% 50%;
}

.card:nth-child(3) img{
  object-position:50% 50%;
}

.muted-card img{
  object-position:58% 55%;
}

.card-body{
  padding:18px 18px 20px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.card h3{
  font-family:Georgia,serif;
  font-size:22px;
  line-height:1.12;
  margin:0 0 10px;
}

.card p{
  font-size:14px;
  color:var(--muted);
  margin:0 0 18px;
}

.price{
  margin-top:auto;
  display:inline-block;
  align-self:flex-start;
  background:#f3e3dc;
  color:#6f4339;
  border-radius:999px;
  padding:8px 13px;
  font-size:14px;
}

.badge{
  align-self:flex-start;
  background:var(--accent);
  color:#fff;
  padding:5px 10px;
  border-radius:999px;
  font-size:10px;
  letter-spacing:.11em;
  margin-bottom:12px;
}

.soft{background:#fbf7f4}

.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.features>div{
  text-align:center;
  padding:26px 18px;
  border-right:1px solid var(--line);
}

.features>div:last-child{border-right:0}

.features span{
  font-size:32px;
  color:var(--accent);
}

.features h3{
  font-family:Georgia,serif;
  font-size:21px;
  margin:10px 0 4px;
}

.features p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.process{
  background:linear-gradient(90deg,#f7efe9,#fffdfb);
}

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.steps>div{
  display:grid;
  grid-template-columns:54px 1fr;
  column-gap:14px;
  align-items:start;
}

.steps b{
  grid-row:1/3;
  width:46px;
  height:46px;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  display:grid;
  place-items:center;
  font-family:Georgia,serif;
  font-size:22px;
}

.steps h3{
  margin:4px 0;
  font-family:Georgia,serif;
  font-size:23px;
}

.steps p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.price-section{background:#f7eee8}

.price-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.price-grid>div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.price-grid strong{
  font-family:Georgia,serif;
  font-size:25px;
}

.fine-print{
  font-size:13px;
  color:var(--muted);
  margin:14px 0 0;
}

.faq-grid{
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:34px;
}

.faq details{
  border-top:1px solid var(--line);
  padding:16px 0;
}

.faq details:last-child{
  border-bottom:1px solid var(--line);
}

.faq summary{
  cursor:pointer;
  font-weight:650;
}

.faq p{
  color:var(--muted);
  font-size:14px;
}

.quote-card{
  min-height:340px;
  border-radius:28px;
  background:
    radial-gradient(circle at 30% 20%,#f8ebe3 0,transparent 35%),
    linear-gradient(145deg,#ded1c5,#f6eee8);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:44px;
  text-align:center;
}

.quote-card p{
  font-family:Georgia,serif;
  font-style:italic;
  font-size:36px;
  line-height:1.2;
  color:#6f4c43;
}

.contact-section{background:#fff}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:stretch;
}

.contact-grid>div{
  padding:8px 0;
}

.contact-grid p{
  font-size:16px;
}

.contact-grid a:not(.btn){
  font-weight:700;
  text-decoration:none;
}

.map-card{
  min-height:300px;
  border-radius:28px;
  text-decoration:none;
  padding:46px;
  background:
    linear-gradient(rgba(255,255,255,.78),rgba(255,255,255,.78)),
    repeating-linear-gradient(0deg,#eee 0,#eee 1px,transparent 1px,transparent 34px),
    repeating-linear-gradient(90deg,#eee 0,#eee 1px,transparent 1px,transparent 34px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  border:1px solid var(--line);
}

.map-card .pin{
  font-size:40px;
  color:#b76d61;
}

.map-card strong{
  font-family:Georgia,serif;
  font-size:28px;
}

.map-card small{
  margin-top:18px;
  color:var(--accent-dark);
}

.footer{
  background:#efe3dc;
  padding:42px 0 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:26px;
  align-items:center;
  font-size:13px;
}

.copyright{
  margin-top:28px;
  padding-top:16px;
  border-top:1px solid rgba(0,0,0,.08);
  font-size:11px;
  color:#6f6762;
}

/* TABLET */

@media(max-width:980px){
  .desktop-cta{display:none}

  .hero-grid{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .hero-copy{
    padding:42px 0 30px;
  }

  .hero-media{
    min-height:430px;
    border-radius:28px;
  }

  .hero-media>img{
    object-position:50% 42%;
  }

  .cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .card img{
    height:220px;
    max-height:220px;
    flex-basis:220px;
  }

  .features{
    grid-template-columns:repeat(2,1fr);
  }

  .features>div{
    border-right:0;
  }

  .price-grid{
    grid-template-columns:1fr;
  }

  .faq-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .hero-note{
    width:170px;
  }
}

/* MOBILE */

@media(max-width:720px){
  .container{
    width:min(100% - 28px,1160px);
  }

  .nav-wrap{
    min-height:70px;
  }

  .brand{
    font-size:18px;
  }

  .brand strong{
    font-size:23px;
  }

  .brand small{
    font-size:8px;
  }

  .nav-toggle{
    display:block;
  }

  .nav{
    position:absolute;
    left:0;
    right:0;
    top:70px;
    background:#fffdfb;
    border-bottom:1px solid var(--line);
    padding:18px 20px;
    display:none;
    flex-direction:column;
  }

  .nav.open{
    display:flex;
  }

  .hero{
    padding-top:0;
  }

  .hero h1{
    font-size:42px;
  }

  .lead{
    font-size:16px;
  }

  .hero-media{
    min-height:360px;
    border-radius:24px;
  }

  .hero-note{
    width:138px;
    padding:22px 16px;
    gap:18px;
  }

  .hero-note strong{
    font-size:20px;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .card img{
    height:220px;
    max-height:220px;
    flex-basis:220px;
  }

  .features{
    grid-template-columns:1fr;
  }

  .steps{
    grid-template-columns:1fr;
  }

  .section{
    padding:56px 0;
  }

  .section h2{
    font-size:36px;
  }

  .footer-brand{
    font-size:18px;
  }
}
