:root{
  --bg:#f4f0e7;
  --bg-soft:#fbf8f2;
  --surface:#ffffff;
  --surface-alt:rgba(255,255,255,.7);
  --text:#17322d;
  --text-soft:#4f615d;
  --heading:#102b26;
  --primary:#183c34;
  --primary-2:#234940;
  --accent:#b59a67;
  --accent-strong:#9c8353;
  --border:rgba(24,60,52,.12);
  --border-strong:rgba(24,60,52,.18);
  --shadow:0 18px 50px rgba(16,43,38,.08);
  --shadow-soft:0 12px 30px rgba(16,43,38,.06);
  --radius:24px;
  --radius-sm:16px;
  --container:1180px;
  --transition:280ms ease;
  --header-h:84px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(181,154,103,.16), transparent 30%),
    linear-gradient(180deg,#f8f5ee 0%, #f4f0e7 52%, #f9f6ef 100%);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body.no-scroll{overflow:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
input,select,textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:14px;
  padding:15px 16px;
  background:#fff;
  color:var(--text);
  outline:none;
  transition:border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
input:focus,select:focus,textarea:focus{
  border-color:rgba(181,154,103,.65);
  box-shadow:0 0 0 4px rgba(181,154,103,.14);
}
textarea{min-height:130px;resize:vertical}
.container{width:min(calc(100% - 32px), var(--container));margin-inline:auto}
.section{padding:88px 0}
.section-sm{padding:64px 0}
.section-topless{padding-top:28px}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border:1px solid rgba(181,154,103,.26);
  border-radius:999px;
  background:rgba(255,255,255,.64);
  color:var(--primary);
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  backdrop-filter:blur(10px);
}
.eyebrow::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--accent);
}
.section-head{max-width:720px;margin-bottom:32px}
.section-head h1,.section-head h2,.section-head h3,.hero h1,.page-hero h1{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-weight:700;
  letter-spacing:-.02em;
  color:var(--heading);
  margin:14px 0 12px;
  line-height:1.02;
}
.hero h1,.page-hero h1{font-size:clamp(2.7rem, 7vw, 5.2rem)}
.section-head h2{font-size:clamp(2rem, 4.2vw, 3.4rem)}
.section-head p,.hero p,.page-hero p{font-size:1.05rem;color:var(--text-soft);margin:0}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--accent-strong);
  font-weight:800;
  font-size:.85rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.kicker::after{
  content:"";
  width:42px;
  height:1px;
  background:linear-gradient(90deg,var(--accent),transparent);
}
.btn-group{display:flex;gap:14px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  letter-spacing:.01em;
  transition:transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  cursor:pointer;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff;
  box-shadow:0 16px 32px rgba(24,60,52,.2);
}
.btn-primary:hover{box-shadow:0 22px 38px rgba(24,60,52,.24)}
.btn-secondary{
  background:rgba(255,255,255,.78);
  border-color:rgba(24,60,52,.14);
  color:var(--primary);
}
.btn-secondary:hover{
  background:#fff;
  border-color:rgba(24,60,52,.22);
}
.btn-accent{
  background:rgba(181,154,103,.12);
  color:var(--primary);
  border-color:rgba(181,154,103,.28);
}
.badge-list,.inline-list,.check-list{
  display:grid;
  gap:12px;
  padding:0;
  margin:0;
  list-style:none;
}
.inline-list{
  grid-template-columns:repeat(3, minmax(0,1fr));
}
.badge{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border:1px solid var(--border);
  border-radius:18px;
  background:rgba(255,255,255,.74);
  box-shadow:var(--shadow-soft);
}
.badge strong{display:block;color:var(--heading)}
.badge span{color:var(--text-soft);font-size:.95rem}
.badge-icon{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;
  background:rgba(181,154,103,.12);
  color:var(--primary);
  flex:0 0 40px;
}
.site-header{
  position:sticky;top:0;z-index:1000;
  background:rgba(248,245,238,.78);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(24,60,52,.08);
}
.header-inner{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.logo{
  display:flex;align-items:center;gap:14px;flex-shrink:0;
}
.logo-mark{
  width:50px;height:50px;border-radius:16px;overflow:hidden;
  box-shadow:0 8px 20px rgba(24,60,52,.16);
}
.logo-text{
  display:flex;flex-direction:column;line-height:1.05;
}
.logo-text strong{
  font-family:"Cormorant Garamond",Georgia,serif;
  color:var(--heading);
  font-size:1.55rem;
}
.logo-text span{
  color:var(--text-soft);font-size:.86rem;
}
.nav{
  display:flex;align-items:center;gap:10px;
}
.nav-list{
  display:flex;align-items:center;gap:6px;
  list-style:none;padding:0;margin:0;
}
.nav-list a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  color:var(--text);
  font-weight:700;
  font-size:.95rem;
  transition:background var(--transition), color var(--transition);
}
.nav-list a[aria-current="page"], .nav-list a:hover{
  background:rgba(24,60,52,.06);
  color:var(--heading);
}
.nav-cta{display:flex;align-items:center;gap:12px}
.menu-toggle{
  display:none;
  width:48px;height:48px;border-radius:14px;border:1px solid var(--border);
  background:#fff;color:var(--primary);
  align-items:center;justify-content:center;
  box-shadow:var(--shadow-soft);
}
.menu-toggle svg{width:22px;height:22px}
.hero{
  position:relative;
  overflow:hidden;
  padding:72px 0 64px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:34px;
  align-items:center;
}
.hero-copy p{
  max-width:700px;
  font-size:1.08rem;
}
.hero-actions{margin:28px 0 26px}
.hero-trust{
  display:flex;flex-wrap:wrap;gap:12px;margin-top:24px;
}
.trust-chip{
  display:inline-flex;align-items:center;gap:10px;
  padding:12px 16px;border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(24,60,52,.1);
  color:var(--text);
  font-weight:700;
}
.hero-card{
  position:relative;
  padding:28px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(24,60,52,.98), rgba(18,45,39,.96));
  color:#edf2ef;
  box-shadow:0 30px 60px rgba(16,43,38,.22);
  overflow:hidden;
}
.hero-card::after{
  content:"";
  position:absolute;
  inset:auto -30px -30px auto;
  width:160px;height:160px;border-radius:50%;
  background:radial-gradient(circle, rgba(181,154,103,.24), transparent 62%);
}
.hero-card .mini-label{
  color:#d7c59f;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
  font-weight:800;
}
.hero-card h2{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:2rem;
  line-height:1.06;
  margin:10px 0 14px;
}
.hero-card p{color:rgba(237,242,239,.84);margin:0 0 22px}
.hero-card-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.hero-card-item{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.1);
}
.hero-card-item strong{display:block;font-size:.95rem}
.hero-card-item span{display:block;font-size:.87rem;color:rgba(237,242,239,.74);margin-top:6px}
.panel{
  padding:28px;
  border-radius:28px;
  background:rgba(255,255,255,.7);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.panel-dark{
  background:linear-gradient(180deg,rgba(24,60,52,.98),rgba(18,45,39,.98));
  color:#fff;
  border-color:rgba(255,255,255,.08);
}
.panel-dark h3,.panel-dark h2,.panel-dark p,.panel-dark li,.panel-dark strong{color:inherit}
.grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.grid-4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}
.card{
  padding:26px;
  border-radius:24px;
  background:rgba(255,255,255,.78);
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
  transition:transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 40px rgba(16,43,38,.1);
  border-color:rgba(181,154,103,.26);
}
.card h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  color:var(--heading);
  font-size:1.7rem;
  margin:0 0 10px;
}
.card p{margin:0;color:var(--text-soft)}
.card-top{
  display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:18px;
}
.card-icon{
  width:54px;height:54px;border-radius:18px;
  display:grid;place-items:center;
  background:rgba(181,154,103,.12);
  color:var(--primary);
}
.card-tag{
  display:inline-flex;align-items:center;
  min-height:32px;padding:0 12px;border-radius:999px;
  background:rgba(24,60,52,.06);color:var(--primary);
  font-size:.82rem;font-weight:800;
}
.check-list li{
  display:flex;gap:12px;align-items:flex-start;
  color:var(--text-soft);
}
.check-list li::before{
  content:"";
  width:9px;height:9px;border-radius:999px;background:var(--accent);
  margin-top:9px;flex:0 0 9px;
}
.metric-strip{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.metric{
  padding:22px 18px;
  border-radius:22px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.76);
  text-align:left;
  box-shadow:var(--shadow-soft);
}
.metric strong{
  display:block;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:2.1rem;
  color:var(--heading);
  line-height:1;
}
.metric span{display:block;margin-top:8px;color:var(--text-soft)}
.split{
  display:grid;
  grid-template-columns:1fr .96fr;
  gap:28px;
  align-items:start;
}
.process{
  display:grid;
  gap:16px;
}
.process-step{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:16px;
  padding:20px;
  border-radius:22px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.76);
  box-shadow:var(--shadow-soft);
}
.step-number{
  width:46px;height:46px;border-radius:16px;
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff;display:grid;place-items:center;
  font-weight:800;
}
.process-step h3{
  margin:4px 0 6px;
  color:var(--heading);
  font-size:1.16rem;
}
.process-step p{margin:0;color:var(--text-soft)}
.quote{
  padding:28px;
  border-radius:26px;
  border:1px solid rgba(181,154,103,.22);
  background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.68));
  box-shadow:var(--shadow);
}
.quote p{
  margin:0;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:1.85rem;
  line-height:1.18;
  color:var(--heading);
}
.quote small{display:block;margin-top:16px;color:var(--text-soft);font-weight:700}
.testimonial{
  display:grid;gap:18px;
}
.testimonial .stars{
  display:flex;gap:6px;color:var(--accent-strong)
}
.testimonial blockquote{
  margin:0;
  font-size:1.04rem;
  color:var(--text);
}
.testimonial footer{
  display:flex;flex-direction:column;gap:3px;color:var(--text-soft);font-size:.94rem;
}
.placeholder-badge{
  display:inline-flex;align-items:center;
  min-height:30px;padding:0 10px;border-radius:999px;
  background:rgba(181,154,103,.12);color:var(--accent-strong);
  font-size:.78rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em;
}
.faq{
  display:grid;gap:14px;
}
.faq-item{
  border:1px solid var(--border);
  border-radius:20px;
  background:rgba(255,255,255,.8);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.faq-question{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding:22px 22px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  font-weight:800;color:var(--heading);
  cursor:pointer;
}
.faq-question span:last-child{
  flex:0 0 34px;height:34px;border-radius:12px;
  display:grid;place-items:center;background:rgba(24,60,52,.06);
  transition:transform var(--transition), background var(--transition);
}
.faq-item.active .faq-question span:last-child{
  transform:rotate(45deg);
  background:rgba(181,154,103,.16);
}
.faq-answer{
  padding:0 22px 22px 22px;
  color:var(--text-soft);
  display:none;
}
.faq-item.active .faq-answer{display:block}
.cta-band{
  padding:38px;
  border-radius:32px;
  background:
    radial-gradient(circle at top right, rgba(181,154,103,.24), transparent 30%),
    linear-gradient(135deg, #14352e 0%, #1c463c 100%);
  color:#fff;
  box-shadow:0 28px 58px rgba(16,43,38,.22);
}
.cta-band h2{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(2rem,4vw,3.1rem);
  line-height:1.02;
  margin:8px 0 14px;
}
.cta-band p{max-width:700px;color:rgba(255,255,255,.84);margin:0 0 22px}
.form-card{
  padding:28px;border-radius:28px;background:rgba(255,255,255,.86);
  border:1px solid var(--border);box-shadow:var(--shadow);
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.form-grid .full{grid-column:1/-1}
.help-text{margin:10px 0 0;color:var(--text-soft);font-size:.9rem}
.contact-side{
  display:grid;gap:16px;
}
.contact-item{
  padding:20px;
  border-radius:22px;
  background:rgba(255,255,255,.78);
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}
.contact-item strong{display:block;color:var(--heading);margin-bottom:6px}
.contact-item p,.contact-item a{color:var(--text-soft);margin:0}
.notice{
  padding:18px 18px;
  border-radius:18px;
  background:rgba(181,154,103,.12);
  border:1px solid rgba(181,154,103,.2);
  color:var(--text);
}
.notice strong{color:var(--heading)}
.page-hero{
  padding:54px 0 24px;
}
.page-hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:26px;
  align-items:end;
}
.hero-panel{
  height:100%;
  min-height:260px;
  padding:26px;
  border-radius:28px;
  background:
    radial-gradient(circle at top right, rgba(181,154,103,.22), transparent 32%),
    linear-gradient(180deg, rgba(24,60,52,.98), rgba(18,45,39,.96));
  color:#fff;
  box-shadow:0 24px 50px rgba(16,43,38,.18);
}
.hero-panel h2{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:2rem;
  line-height:1.08;
  margin:0 0 12px;
}
.hero-panel p{color:rgba(255,255,255,.82);margin:0 0 20px}
.hero-panel ul{
  margin:0;padding:0;list-style:none;display:grid;gap:12px
}
.hero-panel li{
  display:flex;gap:12px;align-items:flex-start
}
.hero-panel li::before{
  content:"";
  width:8px;height:8px;border-radius:999px;background:var(--accent);
  margin-top:10px;flex:0 0 8px;
}
.service-card{
  display:grid;gap:18px;height:100%;
}
.service-card .price-note{
  color:var(--accent-strong);
  font-weight:800;
  font-size:.88rem;
}
.footer{
  padding:34px 0 24px;
  border-top:1px solid rgba(24,60,52,.08);
  background:rgba(250,247,241,.7);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:start;
}
.footer-links{
  display:flex;flex-wrap:wrap;gap:10px;
}
.footer-links a{
  display:inline-flex;align-items:center;min-height:40px;padding:0 14px;
  border-radius:999px;background:rgba(24,60,52,.05);font-weight:700;color:var(--primary)
}
.footer-meta{
  display:flex;justify-content:space-between;gap:16px;align-items:center;flex-wrap:wrap;
  padding-top:18px;margin-top:22px;border-top:1px solid rgba(24,60,52,.08);
  color:var(--text-soft);font-size:.92rem;
}
.wa-float{
  position:fixed;right:18px;bottom:18px;z-index:1100;
}
.wa-float a{
  width:62px;height:62px;border-radius:50%;
  display:grid;place-items:center;
  background:linear-gradient(135deg,#1c463c,#14352e);
  color:#fff;
  box-shadow:0 20px 36px rgba(16,43,38,.24);
  border:1px solid rgba(255,255,255,.14);
  transition:transform var(--transition), box-shadow var(--transition);
}
.wa-float a:hover{transform:translateY(-3px);box-shadow:0 24px 42px rgba(16,43,38,.28)}
.wa-float svg{width:26px;height:26px}
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}
.anchor-offset{scroll-margin-top:calc(var(--header-h) + 20px)}
.text-center{text-align:center}
.centered{margin-inline:auto}
.subtle{color:var(--text-soft)}
hr.sep{
  border:none;height:1px;background:rgba(24,60,52,.08);margin:26px 0
}
@media (max-width: 1100px){
  .hero-grid,.split,.page-hero-grid,.footer-grid{grid-template-columns:1fr}
  .grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .metric-strip{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 860px){
  :root{--header-h:74px}
  .nav{
    position:fixed;inset:74px 16px auto 16px;z-index:999;
    padding:18px;border-radius:24px;
    background:rgba(251,248,242,.98);
    border:1px solid var(--border);
    box-shadow:0 28px 48px rgba(16,43,38,.14);
    display:none;
  }
  .nav.open{display:grid;gap:14px}
  .nav-list{flex-direction:column;align-items:stretch}
  .nav-list a{justify-content:center}
  .nav-cta{flex-direction:column}
  .menu-toggle{display:flex}
  .header-inner .btn-primary{display:none}
  .hero{padding-top:48px}
  .hero-card-grid,.grid-2,.grid-3,.grid-4,.form-grid,.inline-list{grid-template-columns:1fr}
  .metric-strip{grid-template-columns:1fr}
  .section{padding:72px 0}
  .hero-card,.cta-band,.panel,.form-card{padding:24px}
}
@media (max-width: 640px){
  .container{width:min(calc(100% - 24px), var(--container))}
  .hero h1,.page-hero h1{font-size:clamp(2.35rem, 12vw, 3.4rem)}
  .section-head h2{font-size:clamp(1.8rem, 8vw, 2.6rem)}
  .hero-copy p,.section-head p,.page-hero p{font-size:1rem}
  .hero-trust{display:grid}
  .trust-chip{width:100%;justify-content:flex-start}
  .btn{width:100%}
  .btn-group{display:grid}
  .badge{padding:16px}
  .faq-question{padding:20px}
  .faq-answer{padding:0 20px 20px}
  .cta-band{padding:28px}
}
