:root{
  --bg: #ffffff;
  --bg-alt: #f7f6f3;
  --surface: #ffffff;
  --surface-2: #f1efe9;
  --border: #e7e4dc;
  --text: #1f1e1c;
  --text-muted: #63605a;
  --text-faint: #9a9690;
  --accent: #3c6e58;
  --accent-2: #c0754f;
  --radius-lg: 16px;
  --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:1160px; margin:0 auto; padding:0 clamp(20px,5vw,40px); }

.eyebrow{ display:inline-flex; align-items:center; gap:8px; font-size:12.5px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--accent); margin-bottom:14px; }
h1{ font-size:clamp(34px,5vw,54px); font-weight:600; letter-spacing:-.02em; line-height:1.1; }
h2{ font-size:clamp(24px,3.2vw,34px); font-weight:600; letter-spacing:-.01em; }
h3{ font-size:16.5px; font-weight:600; }
.text-lead{ font-size:clamp(15.5px,1.6vw,17.5px); color:var(--text-muted); line-height:1.7; }

.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:14px 30px; border-radius:999px; font-weight:600; font-size:14.5px; 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(--text); color:#fff; }
.btn-primary:hover{ transform:translateY(-2px); background:var(--accent); }
.btn-ghost{ background:transparent; border-color:var(--border); color:var(--text); }
.btn-ghost:hover{ border-color:var(--text); }
.btn-sm{ padding:9px 18px; font-size:13px; }

.site-header{ position:sticky; top:0; z-index:50; background:rgba(255,255,255,.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--border); padding:16px 0; }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.logo{ font-weight:700; font-size:19px; letter-spacing:-.01em; }
.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{ font-size:14.5px; font-weight:500; 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:70px 0 90px; }
.hero-grid{ display:grid; grid-template-columns:1fr 1.15fr; gap:48px; align-items:center; }
.hero-actions{ display:flex; gap:12px; margin-top:28px; flex-wrap:wrap; }

.ph-photo{ position:relative; border-radius:var(--radius-lg); background:linear-gradient(160deg, rgba(60,110,88,.10), rgba(192,117,79,.12)); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; overflow:hidden; }
.ph-photo svg{ width:30%; height:30%; color:var(--accent); opacity:.5; }
.ph-photo .ph-label{ position:absolute; bottom:10px; left:12px; font-size:11px; font-weight:600; color:var(--text-faint); background:rgba(255,255,255,.8); padding:3px 9px; border-radius:999px; }
.ph-photo .ph-tag{ position:absolute; top:12px; left:12px; font-size:11px; font-weight:700; background:var(--text); color:#fff; padding:4px 10px; border-radius:999px; }

.still-life{ position:relative; border-radius:var(--radius-lg); background:#faf8f4; border:1px solid var(--border); overflow:hidden; display:flex; align-items:center; justify-content:center; }
.still-life svg{ width:78%; height:78%; }
.still-life .ph-tag{ position:absolute; top:12px; left:12px; font-size:11px; font-weight:700; background:var(--text); color:#fff; padding:4px 10px; border-radius:999px; }

.section{ padding:88px 0; }
.section-alt{ background:var(--bg-alt); }
.section-header{ margin-bottom:44px; display:flex; align-items:flex-end; justify-content:space-between; gap:20px; flex-wrap:wrap; }

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

.cat-card{ position:relative; border-radius:var(--radius-lg); overflow:hidden; }
.cat-card .ph-photo{ aspect-ratio:3/4; border-radius:var(--radius-lg); }
.cat-card h3{ margin-top:12px; }
.cat-card span{ font-size:13px; color:var(--text-faint); }

.product-card{ border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; background:var(--surface); transition:transform .3s var(--ease), box-shadow .3s var(--ease); }
.product-card:hover{ transform:translateY(-4px); box-shadow:0 16px 34px -18px rgba(0,0,0,.18); }
.product-card .ph-photo{ aspect-ratio:1/1; border-radius:0; border:none; border-bottom:1px solid var(--border); }
.product-info{ padding:16px 18px 20px; }
.product-info h3{ margin-bottom:4px; }
.product-price{ display:flex; align-items:center; justify-content:space-between; margin-top:10px; }
.product-price strong{ font-size:16px; }

.usp-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; padding:44px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.usp-item{ display:flex; flex-direction:column; gap:6px; align-items:flex-start; }
.usp-item svg{ width:22px; height:22px; color:var(--accent); margin-bottom:4px; }
.usp-item strong{ font-size:14.5px; }
.usp-item span{ font-size:13px; color:var(--text-faint); }

.cta-banner{ border-radius:var(--radius-lg); padding:60px; background:var(--surface-2); text-align:center; }
.cta-banner h2{ margin-bottom:12px; }
.cta-banner p{ color:var(--text-muted); margin-bottom:26px; }

.site-footer{ border-top:1px solid var(--border); padding:40px 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:12px; font-weight:700; color:var(--accent); background:var(--surface-2); border:1px solid var(--border); padding:5px 12px; border-radius:999px; }

.filter-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:32px; }
.filter-pill{ font-size:13.5px; font-weight:600; padding:8px 16px; border-radius:999px; border:1.5px solid var(--border); color:var(--text-muted); }
.filter-pill.active{ background:var(--text); color:#fff; border-color:var(--text); }


.ph-photo img, .still-life img{ width:100%; height:100%; object-fit:cover; display:block; }
.reveal{ opacity:0; transform:translateY(26px); 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,.usp-row{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,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,.usp-row{ grid-template-columns:1fr; }
  .cta-banner{ padding:40px 22px; }
  .section-header{ flex-direction:column; align-items:flex-start; }
}
