*{box-sizing:border-box}
:root{
  --brand:#d96d00;
  --brand-deep:#b85c00;
  --ink:#22170d;
  --muted:#655748;
  --cream:#f8f1e7;
  --soft:#efe4d2;
  --paper:#fffaf2;
  --line:rgba(34,23,13,.10);
  --shadow:0 18px 46px rgba(73,42,12,.10);
  --radius:24px;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:#fffdf9;
}
a{text-decoration:none;color:inherit}
.container{width:min(1180px,calc(100% - 32px));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,250,244,.94);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.topbar{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brandmark img{
  height:86px;
  display:block;
}
.nav{
  display:flex;
  gap:28px;
  font-weight:600;
  color:#4d4034;
}
.nav a:hover{color:var(--brand)}
.wa-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-weight:700;
  box-shadow:var(--shadow);
}
.mobile-wa{display:none}

.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#efe4d2;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:url("images/hero.svg") center center / cover no-repeat;
}
.hero-inner{
  position:relative;
  z-index:1;
  width:100%;
  padding:84px 0 92px;
}
.hero-copy{
  max-width:760px;
  margin-left:8vw;
}
.hero-logo{
  width:min(620px,100%);
  display:block;
  margin:0 0 10px;
}
.eyebrow,.section-kicker{
  margin:0 0 14px;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
  font-weight:800;
  color:#f4e5cf;
}
h1,h2,h3,h4{margin:0}
.hero h1{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(64px,9vw,118px);
  line-height:.9;
  color:#fff9f0;
  text-shadow:0 2px 10px rgba(80,47,16,.12);
}
.hero h2{
  margin-top:8px;
  font-size:clamp(28px,4vw,44px);
  font-weight:700;
  color:#fff0dd;
}
.lead{
  max-width:760px;
  margin-top:22px;
  font-size:18px;
  line-height:1.85;
  color:#fff5ea;
  text-shadow:0 1px 6px rgba(80,47,16,.08);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  transition:transform .18s ease, opacity .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-solid{
  background:var(--brand);
  color:#fff;
}
.btn-outline{
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.34);
  color:#fff;
}
.wide{width:100%}

.section{padding:92px 0}
.narrow{max-width:900px}
.section-head{margin-bottom:22px}
.section h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(34px,5vw,58px);
  line-height:1.05;
  margin-bottom:16px;
}
.section p,.card p,.contact-copy{
  font-size:17px;
  line-height:1.85;
  color:var(--muted);
}
.section-soft{background:var(--soft)}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.card{
  background:var(--paper);
  border:1px solid rgba(34,23,13,.06);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
}
.num{
  display:inline-block;
  margin-bottom:16px;
  color:var(--brand);
  font-weight:800;
  letter-spacing:1px;
}
.card h4{
  font-size:24px;
  margin-bottom:12px;
}

.quote-band{
  background:linear-gradient(180deg,#fff8ee 0%, #f6ead8 100%);
}
blockquote{
  margin:0;
  max-width:860px;
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:clamp(36px,5vw,62px);
  line-height:1.08;
  color:#2e1e10;
}

.contact-section{background:#fffaf2}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:start;
}
.contact-form{
  background:#fff;
  border:1px solid rgba(34,23,13,.08);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(34,23,13,.13);
  margin-bottom:14px;
  font:inherit;
  color:var(--ink);
  background:#fffdf9;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(217,109,0,.10);
}

.site-footer{
  background:#1d140d;
  color:#f8e9d7;
  padding:26px 0;
}
.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  font-size:14px;
}
.footer-row span{
  display:block;
  margin-top:4px;
  color:#d8b792;
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width:980px){
  .topbar{
    flex-wrap:wrap;
    justify-content:center;
    padding:12px 0;
  }
  .nav{
    width:100%;
    justify-content:center;
    gap:18px;
  }
  .desktop-wa{display:none}
  .mobile-wa{
    display:inline-flex;
    margin-top:18px;
  }
  .cards,.contact-grid{
    grid-template-columns:1fr;
  }
  .hero{
    min-height:auto;
  }
  .hero-inner{
    padding:56px 0 64px;
  }
  .brandmark img{
    height:72px;
  }
}
@media (max-width:640px){
  .hero-actions{
    flex-direction:column;
  }
  .btn{
    width:100%;
  }
}
