:root{
  --bg: #f7f1e8;
  --bg-alt: #efe6d8;
  --surface: #ffffff;
  --surface-2: #f2ead9;
  --border: #e2d5bf;
  --text: #362b1f;
  --text-muted: #6b5c48;
  --text-faint: #93856c;
  --accent: #b3552f;
  --accent-2: #4a5d3a;
  --radius-lg: 18px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.16,.8,.24,1);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, Helvetica, Arial, sans-serif;
}
*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}
body{ margin:0; background:var(--bg); color:var(--text); font-family:var(--font-sans); line-height:1.6; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,p{ margin:0; }
.container{ width:100%; max-width:1140px; margin:0 auto; padding:0 clamp(20px,5vw,40px); }

.eyebrow{ display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--accent); margin-bottom:14px; }
.eyebrow::before{ content:""; width:18px; height:2px; background:var(--accent); border-radius:2px; }
h1{ font-size:clamp(36px,5.5vw,58px); font-weight:800; letter-spacing:-.02em; line-height:1.08; }
h2{ font-size:clamp(26px,3.6vw,38px); font-weight:800; letter-spacing:-.015em; line-height:1.15; }
h3{ font-size:19px; font-weight:700; }
.text-lead{ font-size:clamp(16px,1.8vw,18.5px); color:var(--text-muted); line-height:1.7; }

.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:14px 28px; border-radius:10px; font-weight:700; font-size:15px; border:1.5px solid transparent; cursor:pointer; transition:transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease); }
.btn-primary{ background:var(--accent); color:#fff; }
.btn-primary:hover{ transform:translateY(-2px); background:#9c4826; }
.btn-ghost{ background:transparent; border-color:var(--border); color:var(--text); }
.btn-ghost:hover{ border-color:var(--accent); transform:translateY(-2px); }

.site-header{ position:sticky; top:0; z-index:50; background:rgba(247,241,232,.9); backdrop-filter:blur(10px); border-bottom:1px solid transparent; padding:18px 0; transition:border-color .3s var(--ease), padding .3s var(--ease); }
.site-header.scrolled{ border-bottom-color:var(--border); padding:12px 0; }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.logo{ display:flex; align-items:center; gap:10px; font-weight:800; font-size:18px; }
.logo-mark{ width:36px; height:36px; border-radius:9px; background:var(--accent); display:flex; align-items:center; justify-content:center; color:#fff; flex-shrink:0; }
.logo-mark svg{ width:19px; height:19px; }
.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{ font-size:15px; font-weight:600; color:var(--text-muted); transition:color .25s var(--ease); }
.nav-links a:hover{ color:var(--text); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:none; background:none; border:1px solid var(--border); border-radius:8px; width:40px; height:40px; align-items:center; justify-content:center; cursor:pointer; }
.nav-toggle svg{ width:18px; height:18px; }

.hero{ padding:88px 0 96px; }
.hero-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center; }
.hero-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.hero-photo{ aspect-ratio:4/3; border-radius:var(--radius-lg); }
.hero-facts{ display:flex; gap:28px; margin-top:56px; flex-wrap:wrap; }
.hero-fact strong{ display:block; font-size:22px; font-weight:800; }
.hero-fact span{ font-size:13px; color:var(--text-faint); }

.ph-photo{ position:relative; border-radius:var(--radius-lg); background:linear-gradient(155deg, rgba(179,85,47,.16), rgba(74,93,58,.14)); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.ph-photo svg{ width:34%; height:34%; color:var(--accent); opacity:.55; }
.ph-photo .ph-label{ position:absolute; bottom:12px; left:14px; font-size:11.5px; font-weight:600; color:var(--text-faint); background:rgba(255,255,255,.6); padding:3px 9px; border-radius:999px; }

.blueprint{ position:relative; border-radius:var(--radius-lg); background:#fbf7ee; border:1px solid var(--border); overflow:hidden; display:flex; align-items:center; justify-content:center; }
.blueprint svg{ width:100%; height:100%; display:block; }
.blueprint .ph-label{ position:absolute; bottom:12px; left:14px; font-size:11px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--accent); background:rgba(255,255,255,.8); padding:4px 10px; border-radius:999px; }

.section{ padding:96px 0; }
.section-alt{ background:var(--surface-2); }
.section-header{ max-width:600px; margin-bottom:52px; }
.section-header.center{ margin-left:auto; margin-right:auto; text-align:center; }

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

.card{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg); padding:28px; transition:transform .35s var(--ease), border-color .35s var(--ease); }
.card:hover{ transform:translateY(-5px); border-color:var(--accent); }
.card-icon{ width:44px; height:44px; border-radius:11px; background:var(--accent); color:#fff; display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.card-icon svg{ width:21px; height:21px; }
.card h3{ margin-bottom:8px; }
.card p{ color:var(--text-muted); font-size:14.5px; }

.facts-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.fact-box{ border-left:3px solid var(--accent); padding-left:14px; }
.fact-box strong{ display:block; font-size:15px; margin-bottom:2px; }
.fact-box span{ font-size:13.5px; color:var(--text-faint); }

.cta-banner{ border-radius:var(--radius-lg); padding:60px; background:var(--text); color:var(--bg); text-align:center; }
.cta-banner h2{ color:#fff; margin-bottom:14px; }
.cta-banner p{ color:#d8cfc0; margin-bottom:28px; }
.cta-actions{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.cta-banner .btn-ghost{ border-color:#5a4c3a; color:#fff; }

.contact-layout{ display:grid; grid-template-columns:1fr 1fr; gap:56px; }
.contact-list{ margin-top:26px; display:flex; flex-direction:column; gap:16px; }
.contact-list a,.contact-list span{ display:flex; align-items:center; gap:12px; font-weight:600; font-size:15px; }
.contact-list svg{ width:18px; height:18px; color:var(--accent); flex-shrink:0; }
.form-group{ margin-bottom:16px; }
.form-group label{ display:block; font-size:13px; font-weight:700; color:var(--text-muted); margin-bottom:6px; }
.form-control{ width:100%; padding:13px 14px; border-radius:var(--radius-sm); border:1.5px solid var(--border); background:var(--surface); font-family:inherit; font-size:15px; }
.form-control:focus{ outline:none; border-color:var(--accent); }
textarea.form-control{ min-height:110px; resize:vertical; }

.site-footer{ border-top:1px solid var(--border); padding:44px 0; }
.footer-row{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; font-size:13.5px; color:var(--text-faint); }
.demo-badge{ display:inline-flex; align-items:center; gap:6px; font-size:12.5px; font-weight:700; color:var(--accent); background:var(--surface-2); border:1px solid var(--border); padding:5px 12px; border-radius:999px; }


.ph-photo img, .blueprint img{ width:100%; height:100%; object-fit:cover; display:block; }
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); transition-delay:var(--delay,0s); }
.reveal.is-visible{ opacity:1; transform:none; }

@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; }
  .grid-4,.facts-row{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .contact-layout{ grid-template-columns:1fr; }
}
@media (max-width:720px){
  .nav-links{ position:fixed; top:0; right:0; height:100vh; width:min(300px,80vw); background:var(--bg); border-left:1px solid var(--border); flex-direction:column; align-items:flex-start; justify-content:center; gap:26px; padding:40px; transform:translateX(100%); transition:transform .4s var(--ease); z-index:99; }
  .nav-links.open{ transform:translateX(0); }
  .nav-toggle{ display:flex; }
  .nav-cta .btn-ghost{ display:none; }
  .grid-4,.grid-3,.facts-row{ grid-template-columns:1fr; }
  .cta-banner{ padding:40px 22px; }
}
