
:root{
  --ink:#24302f;
  --muted:#65716f;
  --cream:#fbf6ee;
  --sage:#dce8df;
  --sage-dark:#6f897c;
  --clay:#c47e61;
  --soft:#f3e6d8;
  --white:#ffffff;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter, sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.7;
}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px 7%;
  background:rgba(251,246,238,.86);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(36,48,47,.08);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--ink);
}

.brand-mark{
  width:54px;
  height:54px;
  border-radius:18px 18px 18px 4px;
  display:grid;
  place-items:center;
  background:var(--sage-dark);
  color:white;
  font-family:Fraunces, serif;
  font-size:1.35rem;
  letter-spacing:-1px;
}

.brand strong{
  display:block;
  font-size:.98rem;
}

.brand small{
  color:var(--muted);
  font-size:.78rem;
}

nav{
  display:flex;
  gap:26px;
}

nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  font-size:.95rem;
}

.header-btn,
.primary,
.ghost{
  border-radius:999px;
  padding:14px 22px;
  text-decoration:none;
  font-weight:700;
  transition:.25s ease;
}

.header-btn,
.primary{
  background:var(--clay);
  color:white;
  box-shadow:0 14px 30px rgba(196,126,97,.25);
}

.ghost{
  color:var(--ink);
  background:white;
}

.header-btn:hover,
.primary:hover,
.ghost:hover{
  transform:translateY(-3px);
}

.hero{
  min-height:88vh;
  padding:80px 7% 70px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.78rem;
  font-weight:800;
  color:var(--sage-dark);
  margin-bottom:18px;
}

h1,
h2{
  font-family:Fraunces, serif;
  font-weight:700;
  line-height:1.08;
  letter-spacing:-.03em;
}

h1{
  font-size:clamp(2.7rem, 5vw, 5.6rem);
  max-width:920px;
}

h2{
  font-size:clamp(2rem, 3.4vw, 4rem);
}

.lead{
  color:var(--muted);
  font-size:1.13rem;
  max-width:720px;
  margin:28px 0 34px;
}

.actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hero-card{
  position:relative;
  min-height:560px;
  border-radius:38px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(36,48,47,.18);
}

.hero-card img{
  width:100%;
  height:100%;
  position:absolute;
  object-fit:cover;
  transform:scale(1.03);
  animation:slowZoom 12s ease-in-out infinite alternate;
}

.floating-note{
  position:absolute;
  left:30px;
  right:30px;
  bottom:30px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px);
  border-radius:28px;
  padding:24px;
}

.floating-note strong,
.floating-note span{
  display:block;
}

.floating-note span{
  color:var(--muted);
  margin-top:6px;
}

.intro-strip{
  margin:0 7% 70px;
  background:var(--ink);
  color:white;
  border-radius:34px;
  padding:26px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.intro-strip div{
  padding:14px 18px;
}

.intro-strip strong,
.intro-strip span{
  display:block;
}

.intro-strip span{
  opacity:.72;
  margin-top:4px;
}

.content-section{
  padding:100px 7%;
}

.section-label{
  color:var(--clay);
  font-weight:800;
  margin-bottom:28px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.78rem;
}

.two-col{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
}

.text p{
  color:var(--muted);
  font-size:1.06rem;
  margin-bottom:22px;
}

.symptoms{
  background:var(--sage);
  padding:100px 7%;
}

.symptom-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:42px;
}

.symptom-grid article{
  background:rgba(255,255,255,.72);
  border-radius:30px;
  padding:30px;
  min-height:270px;
  transition:.25s ease;
}

.symptom-grid article:hover{
  transform:translateY(-8px);
  background:white;
}

.symptom-grid span{
  color:var(--clay);
  font-weight:800;
}

.symptom-grid h3{
  margin:22px 0 12px;
  font-size:1.25rem;
}

.symptom-grid p,
.process p,
.booking p{
  color:var(--muted);
}

.image-break{
  padding:80px 7%;
}

.parallax-box{
  min-height:520px;
  border-radius:42px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:56px;
  color:white;
  background:
    linear-gradient(to top, rgba(36,48,47,.78), rgba(36,48,47,.08)),
    url('https://images.unsplash.com/photo-1470252649378-9c29740c9fa8?q=80&w=2000&auto=format&fit=crop') center/cover fixed;
}

.parallax-box p{
  max-width:720px;
  margin-top:18px;
  font-size:1.1rem;
}

.process{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:60px;
}

.process div{
  background:white;
  border-radius:30px;
  padding:30px;
  box-shadow:0 18px 50px rgba(36,48,47,.08);
}

.process span{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--soft);
  color:var(--clay);
  font-weight:800;
  margin-bottom:18px;
}

.booking{
  margin:20px 7% 100px;
  padding:60px;
  border-radius:42px;
  background:linear-gradient(135deg, var(--soft), var(--sage));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
}

.booking p{
  max-width:720px;
  margin-top:18px;
}

.large{
  white-space:nowrap;
  font-size:1.05rem;
}

footer{
  background:var(--ink);
  color:white;
  padding:42px 7%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

footer p,
.footer-mh{
  color:rgba(255,255,255,.72);
}

.footer-mh{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.footer-mh img{
  width:42px;
  height:auto;
}

@keyframes slowZoom{
  from{ transform:scale(1.03); }
  to{ transform:scale(1.12); }
}

.hero-text,
.content-section,
.symptoms article,
.booking{
  animation:fadeUp .85s ease both;
}

@keyframes fadeUp{
  from{ opacity:0; transform:translateY(28px); }
  to{ opacity:1; transform:translateY(0); }
}

@media(max-width:1000px){
  nav{ display:none; }
  .hero,
  .two-col,
  .intro-strip,
  .symptom-grid,
  .process,
  .booking{
    grid-template-columns:1fr;
  }
  .hero-card{
    min-height:420px;
  }
  .booking{
    display:grid;
  }
}

@media(max-width:640px){
  .site-header{
    padding:14px 5%;
  }
  .header-btn{
    display:none;
  }
  .hero,
  .content-section,
  .symptoms,
  .image-break{
    padding-left:5%;
    padding-right:5%;
  }
  .intro-strip,
  .booking{
    margin-left:5%;
    margin-right:5%;
  }
  .parallax-box,
  .booking{
    padding:34px;
    border-radius:30px;
  }
  footer{
    display:block;
  }
  .footer-mh{
    margin-top:18px;
  }
}


.phone-help{
  margin:20px 7% 40px;
  padding:54px 60px;
  border-radius:42px;
  background:var(--white);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  box-shadow:0 18px 60px rgba(36,48,47,.10);
  border:1px solid rgba(36,48,47,.08);
}

.phone-help h2{
  font-size:clamp(1.8rem, 3vw, 3.2rem);
  max-width:900px;
}

.phone-help p{
  color:var(--muted);
  max-width:780px;
  margin-top:18px;
}

.phone-button{
  white-space:nowrap;
  border-radius:999px;
  padding:16px 28px;
  background:var(--sage-dark);
  color:white;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 14px 30px rgba(111,137,124,.25);
  transition:.25s ease;
}

.phone-button:hover{
  transform:translateY(-3px);
}

.footer-mh .mh-horizontal{
  width:210px;
  max-width:70vw;
  background:transparent;
}

@media(max-width:1000px){
  .phone-help{
    display:grid;
    margin-left:7%;
    margin-right:7%;
  }
}

@media(max-width:640px){
  .phone-help{
    margin-left:5%;
    margin-right:5%;
    padding:34px;
    border-radius:30px;
  }
}


.phone-icon{
  margin-right:8px;
  font-size:1rem;
}

.header-btn{
  display:flex;
  align-items:center;
  gap:4px;
}
