:root{
  --bg:#0b0b0c;
  --bg2:#101012;
  --gold:#c8a95a;
  --gold2:#b8943f;
  --text:#f3f1ec;
  --muted:#cfcac0;
  --kraft:#d6c2a2;
  --card:rgba(255,255,255,.03);
  --border:rgba(200,169,90,.28);
  --border2:rgba(255,255,255,.09);
  --shadow:0 18px 40px rgba(0,0,0,.45);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(200,169,90,.18), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(200,169,90,.12), transparent 60%),
    linear-gradient(180deg,var(--bg),var(--bg2));
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.94}
img{max-width:100%;height:auto;display:block}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}
.section{padding:72px 0}
.section.sm{padding:48px 0}

.kicker{letter-spacing:.28em;text-transform:uppercase;font-size:12px;color:var(--muted)}
.h1{
  font-family:ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight:650;
  font-size:clamp(34px,4.2vw,54px);
  line-height:1.05;
  margin:14px 0 14px;
}
.h2{
  font-family:ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight:650;
  font-size:clamp(26px,3vw,36px);
  line-height:1.12;
  margin:0 0 12px;
}
.p{color:var(--muted);font-size:16px;margin:0}
.p.lead{font-size:18px;max-width:64ch}

.nav{
  position:sticky;top:0;z-index:20;
  backdrop-filter:blur(10px);
  background:rgba(10,10,12,.58);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;padding:14px 0;
}
.brand{display:flex;align-items:center;gap:12px}
.brand-mark{
  width:34px;height:34px;border-radius:10px;
  border:1px solid var(--border);
  background:
    radial-gradient(circle at 30% 20%, rgba(200,169,90,.55), rgba(200,169,90,.05) 55%, transparent 70%),
    rgba(255,255,255,.03);
  display:grid;place-items:center;
  box-shadow:0 10px 22px rgba(0,0,0,.35);
}
.brand-mark svg{width:18px;height:18px;opacity:.95}
.brand-name{
  font-family:ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing:.06em;text-transform:uppercase;font-size:14px;
}
.nav-links{display:flex;gap:12px;align-items:center;flex-wrap:wrap;justify-content:flex-end}
.nav-links a{
  color:var(--muted);
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
}
.nav-links a.active,.nav-links a:hover{
  color:var(--text);
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.05);
}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-weight:600;font-size:14px;
  gap:10px;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px);transition:.2s ease}
.btn.primary{
  border:1px solid rgba(200,169,90,.55);
  background:linear-gradient(135deg, rgba(200,169,90,.28), rgba(200,169,90,.06));
}
.btn.primary .dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 6px rgba(200,169,90,.12);
}

.hero{padding:72px 0 28px}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:34px;
  align-items:center;
}
.badge{
  display:inline-flex;gap:10px;align-items:center;
  padding:10px 12px;border-radius:999px;
  border:1px solid rgba(200,169,90,.28);
  background:rgba(200,169,90,.08);
  font-size:13px;
}
.badge .spark{width:8px;height:8px;border-radius:50%;background:var(--gold)}

.card{
  border:1px solid var(--border2);
  background:var(--card);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 26px rgba(0,0,0,.25);
}
.hero-card{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.hero-logo{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.split{display:grid;grid-template-columns:1fr 1fr;gap:20px;align-items:start}

.kraft-panel{
  border-radius:var(--radius);
  padding:18px;
  border:1px solid rgba(214,194,162,.35);
  background:linear-gradient(135deg, rgba(214,194,162,.14), rgba(214,194,162,.05));
}
.kraft-panel .p{color:rgba(243,241,236,.82)}

.product{
  display:flex;flex-direction:column;gap:10px;
}
.product .price{color:var(--text);font-weight:700}
.product .meta{color:var(--muted);font-size:13px}

.hr{
  height:1px;background:rgba(255,255,255,.08);
  margin:18px 0;
}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:22px 0;
  color:rgba(207,202,192,.9);
  font-size:13px;
}
.footer-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;flex-wrap:wrap;
}
.footer a{
  color:rgba(243,241,236,.9);
  text-decoration:underline;
  text-underline-offset:3px;
}

input, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.22);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px;resize:vertical}
small.hint{color:rgba(207,202,192,.85)}

@media (max-width:920px){
  .hero-grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
}
