:root{
  --bg:#f7f3ec;
  --bg-soft:#fbf8f3;
  --card:#fffdf9;
  --text:#1f1b16;
  --muted:#675d52;
  --line:rgba(60,42,20,.10);
  --wood:#7b5a3d;
  --wood-dark:#4b3423;
  --accent:#c9a66b;
  --accent-2:#ead7ba;
  --shadow:0 18px 50px rgba(46,31,18,.10);
  --shadow-strong:0 24px 64px rgba(38,25,14,.16);
  --radius:24px;
  --radius-sm:18px;
  --max:1180px;
  --ease:cubic-bezier(.2,.75,.2,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(201,166,107,.08), transparent 28%),
    radial-gradient(circle at top right, rgba(123,90,61,.06), transparent 20%),
    linear-gradient(180deg, #fbf8f3 0%, #f6f0e6 100%);
  line-height:1.55;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.container{
  width:min(calc(100% - 32px), var(--max));
  margin-inline:auto;
}

.wood-noise{
  position:relative;
  overflow:hidden;
}

.wood-noise::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background:
    repeating-linear-gradient(
      100deg,
      rgba(123,90,61,.05) 0px,
      rgba(123,90,61,.05) 1px,
      transparent 1px,
      transparent 11px
    );
  mix-blend-mode:multiply;
}

/* HEADER */

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(14px);
  background:
    linear-gradient(180deg, rgba(77,54,34,.95), rgba(102,74,48,.94)),
    repeating-linear-gradient(
      100deg,
      rgba(255,255,255,.035) 0px,
      rgba(255,255,255,.035) 1px,
      transparent 1px,
      transparent 13px
    );
  box-shadow:0 10px 30px rgba(42,27,15,.12);
  transition:background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.topbar.is-scrolled{
  box-shadow:0 18px 38px rgba(42,27,15,.20);
}

.topbar-wood-edge{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:34px;
  background:var(--bg);
  clip-path:polygon(
    0% 38%,
    5% 54%,
    10% 42%,
    15% 60%,
    21% 44%,
    28% 64%,
    35% 40%,
    42% 58%,
    49% 45%,
    56% 66%,
    63% 43%,
    70% 60%,
    78% 46%,
    86% 58%,
    93% 44%,
    100% 54%,
    100% 100%,
    0% 100%
  );
  opacity:.98;
  pointer-events:none;
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:76px;
  position:relative;
  z-index:1;
  padding-bottom:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-weight:800;
  letter-spacing:.01em;
  color:#fff;
}

.brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  background:linear-gradient(145deg, rgba(201,166,107,.95), rgba(123,90,61,.95));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.45), 0 10px 24px rgba(30,18,10,.22);
  position:relative;
  flex:none;
}

.brand-mark::before,
.brand-mark::after{
  content:"";
  position:absolute;
  background:rgba(255,255,255,.92);
  border-radius:999px;
}

.brand-mark::before{
  width:20px;
  height:3px;
  left:11px;
  top:20px;
  transform:rotate(45deg);
}

.brand-mark::after{
  width:20px;
  height:3px;
  left:11px;
  top:20px;
  transform:rotate(-45deg);
}

.brand small{
  display:block;
  font-size:.78rem;
  color:rgba(255,255,255,.72);
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.nav a{
  color:rgba(255,255,255,.86);
  padding:10px 14px;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}

.nav a:hover{
  background:rgba(255,255,255,.10);
  color:#fff;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:none;
  cursor:pointer;
  padding:15px 22px;
  border-radius:999px;
  font-weight:800;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  font-size:1rem;
  will-change:transform;
}

.btn-primary{
  background:linear-gradient(135deg, var(--wood-dark), var(--wood));
  color:#fff;
  box-shadow:0 16px 28px rgba(75,52,35,.22);
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(75,52,35,.28);
}

.btn-secondary{
  background:rgba(255,255,255,.72);
  color:var(--text);
  border:1px solid rgba(75,52,35,.10);
}

.btn-secondary:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(75,52,35,.10);
}

/* HERO */

.hero{
  padding:64px 0 48px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(201,166,107,.13);
  border:1px solid rgba(201,166,107,.25);
  color:var(--wood-dark);
  font-weight:700;
  font-size:.92rem;
}

.eyebrow-light{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.16);
  color:#fff;
}

h1{
  font-size:clamp(2.3rem, 5vw, 4.5rem);
  line-height:1.02;
  letter-spacing:-.04em;
  margin:18px 0 18px;
  max-width:11ch;
}

.hero p{
  font-size:1.12rem;
  color:var(--muted);
  max-width:56ch;
  margin:0 0 28px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.hero-trust{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.trust-pill{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.76);
  border:1px solid var(--line);
  color:var(--muted);
  font-weight:700;
  font-size:.92rem;
}

.hero-card{
  position:relative;
  background:linear-gradient(155deg, rgba(255,255,255,.92), rgba(248,241,230,.92));
  border:1px solid rgba(88,58,31,.09);
  border-radius:32px;
  padding:28px;
  box-shadow:var(--shadow-strong);
  overflow:hidden;
  transform-style:preserve-3d;
  transition:transform .18s ease, box-shadow .22s ease;
}

.hero-card::after{
  content:"";
  position:absolute;
  inset:auto -50px -50px auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(201,166,107,.30), transparent 65%);
  filter:blur(10px);
}

.hero-mockup{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}

.product-card{
  background:var(--card);
  border-radius:22px;
  padding:14px;
  border:1px solid rgba(75,52,35,.08);
  box-shadow:0 12px 24px rgba(61,40,21,.07);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-media{
  aspect-ratio:1/1;
  border-radius:18px;
  overflow:hidden;
  margin-bottom:12px;
  background:linear-gradient(135deg, rgba(233,221,202,.9), rgba(255,248,239,.98));
  border:1px solid rgba(123,90,61,.08);
  transition:transform .35s ease;
}

.product-card h3{
  margin:0 0 4px;
  font-size:1rem;
}

.product-card p{
  margin:0;
  font-size:.92rem;
  color:var(--muted);
}

/* SECTIONS */

.section{
  padding:34px 0;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}

.section-head h2{
  margin:0;
  font-size:clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing:-.03em;
}

.section-head p{
  margin:0;
  color:var(--muted);
  max-width:56ch;
}

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

.example-card,
.offer-card,
.price-card,
.process-card{
  background:rgba(255,255,255,.80);
  border:1px solid rgba(75,52,35,.08);
  border-radius:26px;
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.example-card{
  overflow:hidden;
}

.example-visual{
  aspect-ratio:16/10;
  overflow:hidden;
  border-bottom:1px solid rgba(75,52,35,.08);
  background:linear-gradient(135deg, rgba(234,215,186,.95), rgba(253,250,244,.98));
}

.shine-wrap{
  position:relative;
}

.shine{
  position:absolute;
  top:-30%;
  left:-25%;
  width:24%;
  height:160%;
  background:linear-gradient(180deg, transparent, rgba(255,255,255,.35), transparent);
  transform:rotate(24deg) translateX(0);
  transition:transform .8s ease;
  pointer-events:none;
}

.card-body{
  padding:22px;
}

.card-body h3{
  margin:0 0 8px;
  font-size:1.18rem;
  letter-spacing:-.02em;
}

.card-body p{
  margin:0;
  color:var(--muted);
}

.offer-card{
  padding:26px;
  position:relative;
  overflow:hidden;
}

.offer-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:5px;
  background:linear-gradient(90deg, var(--accent), var(--wood));
}

.offer-tag{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(201,166,107,.12);
  color:var(--wood-dark);
  font-weight:800;
  font-size:.86rem;
  margin-bottom:14px;
}

.offer-card h3{
  margin:0 0 10px;
}

.offer-card p{
  margin:0;
  color:var(--muted);
}

.offer-card p + p{
  margin-top:12px;
}

.price-wrap{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.price-card{
  padding:26px;
  text-align:center;
}

.price-label{
  color:var(--muted);
  font-weight:700;
  margin-bottom:12px;
}

.price-value{
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1;
  letter-spacing:-.05em;
  margin-bottom:12px;
  font-weight:900;
}

.price-card p{
  margin:0;
  color:var(--muted);
}

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

.process-card{
  padding:22px;
  position:relative;
}

.step{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:900;
  background:linear-gradient(135deg, rgba(201,166,107,.28), rgba(123,90,61,.18));
  color:var(--wood-dark);
  margin-bottom:16px;
}

.process-card h3{
  margin:0 0 8px;
  font-size:1.08rem;
}

.process-card p{
  margin:0;
  color:var(--muted);
}

/* CTA */

.cta{
  padding:52px 0 76px;
}

.cta-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  background:linear-gradient(135deg, rgba(75,52,35,.98), rgba(103,77,51,.98));
  color:#fff;
  border-radius:34px;
  padding:34px;
  box-shadow:0 25px 60px rgba(45,29,15,.26);
  position:relative;
  overflow:hidden;
}

.cta-box::before{
  content:"";
  position:absolute;
  inset:auto auto -80px -80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(201,166,107,.28), transparent 70%);
}

.cta-copy{
  position:relative;
  z-index:1;
  align-self:center;
}

.cta-copy h2{
  margin:0 0 14px;
  font-size:clamp(1.8rem, 3.5vw, 3rem);
  line-height:1.03;
  letter-spacing:-.04em;
}

.cta-copy p{
  margin:0;
  color:rgba(255,255,255,.78);
  max-width:48ch;
}

.form-card{
  position:relative;
  z-index:1;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  padding:22px;
  backdrop-filter:blur(10px);
}

.form-grid{
  display:grid;
  gap:14px;
}

label{
  display:grid;
  gap:8px;
  font-weight:700;
  font-size:.96rem;
}

input, textarea{
  width:100%;
  border:none;
  outline:none;
  border-radius:16px;
  padding:15px 16px;
  background:#fff;
  color:var(--text);
  font:inherit;
  box-shadow:inset 0 0 0 1px rgba(75,52,35,.08);
  transition:box-shadow .2s ease, transform .2s ease;
}

input:focus,
textarea:focus{
  box-shadow:
    inset 0 0 0 2px rgba(201,166,107,.55),
    0 0 0 6px rgba(201,166,107,.12);
  transform:translateY(-1px);
}

textarea{
  min-height:150px;
  resize:vertical;
}

/* FOOTER */

.foot{
  padding:0 0 34px;
}

.foot-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:var(--muted);
  font-size:.94rem;
}

.divider{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(75,52,35,.12), transparent);
  margin:10px 0 26px;
}

/* HOVERS */

.hover-lift:hover{
  transform:translateY(-8px);
  box-shadow:0 26px 50px rgba(40,25,13,.14);
  border-color:rgba(123,90,61,.18);
}

.product-card.hover-lift:hover .product-media{
  transform:scale(1.03);
}

.example-card.hover-lift:hover .shine{
  transform:rotate(24deg) translateX(420%);
}

/* REVEAL */

.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-left{
  transform:translateX(-34px);
}

.reveal-right{
  transform:translateX(34px);
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

.reveal-delay-1{ transition-delay:.08s; }
.reveal-delay-2{ transition-delay:.16s; }
.reveal-delay-3{ transition-delay:.24s; }

/* RESPONSIVE */

@media (max-width: 980px){
  .hero-grid,
  .cta-box{
    grid-template-columns:1fr;
  }

  .grid-3,
  .price-wrap{
    grid-template-columns:1fr;
  }

  .process{
    grid-template-columns:repeat(2, 1fr);
  }

  h1{
    max-width:none;
  }
}

@media (max-width: 720px){
  .topbar-wood-edge{
    height:24px;
  }

  .topbar-inner{
    min-height:auto;
    padding:14px 0 12px;
    align-items:flex-start;
    flex-direction:column;
  }

  .nav{
    width:100%;
  }

  .nav a{
    padding:8px 12px;
  }

  .hero{
    padding-top:34px;
  }

  .hero-card{
    padding:18px;
    border-radius:24px;
  }

  .hero-mockup{
    gap:12px;
  }

  .section{
    padding:28px 0;
  }

  .section-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .process{
    grid-template-columns:1fr;
  }

  .cta-box{
    padding:22px;
    border-radius:26px;
  }

  .foot-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .reveal,
  .reveal-left,
  .reveal-right{
    opacity:1;
    transform:none;
    transition:none;
  }

  .btn,
  .product-card,
  .example-card,
  .offer-card,
  .price-card,
  .process-card,
  .product-media,
  .shine,
  .hero-card{
    transition:none;
  }
}