:root {
  --espresso: #1a120e;
  --cocoa: #3a2419;
  --butter: #d4a017;
  --butter-2: #e8bc3a;
  --flour: #f2f0ec;
  --line: #ddd6cc;
  --ink: #1c1410;
  --muted: #6b5c50;
  --white: #fff;
  --font: "Figtree", system-ui, sans-serif;
  --display: "Sora", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--flour); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 36px)); margin: 0 auto; }

.site-bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 40% at 100% 0%, rgba(212,160,23,.12), transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 100%, rgba(58,36,25,.06), transparent 50%),
    linear-gradient(165deg, #f5f3ef, #ebe7e1 55%, #e4dfd7);
}

.topbar {
  background: var(--espresso); color: rgba(255,255,255,.72); font-size: .82rem; padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar a:hover { color: var(--butter-2); }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,243,239,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--butter-2), var(--butter));
  color: var(--espresso); font-family: var(--display); font-weight: 800; font-size: .72rem;
  animation: warmPulse 3.2s ease-in-out infinite;
}
@keyframes warmPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.brand strong { display: block; font-family: var(--display); font-size: 1.05rem; letter-spacing: -.02em; }
.brand span { display: block; font-size: .7rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.menu { display: flex; list-style: none; margin: 0; padding: 0; gap: 2px; align-items: center; }
.menu a { padding: 10px 11px; font-weight: 700; font-size: .88rem; color: var(--cocoa); }
.menu a:hover, .menu a.active { color: var(--butter); }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; padding: 10px 12px; font: inherit; font-weight: 700; cursor: pointer; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; font: inherit; font-weight: 800; cursor: pointer; padding: 12px 20px;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-butter {
  background: linear-gradient(135deg, var(--butter-2), var(--butter));
  color: var(--espresso); box-shadow: 0 10px 28px rgba(212,160,23,.35);
}
.btn-dark { background: var(--espresso); color: #fff; }
.btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,.45); color: #fff; }

.hero {
  position: relative; min-height: min(90vh, 860px); display: grid; align-items: end;
  color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: slowZoom 22s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(26,18,14,.9) 8%, rgba(58,36,25,.55) 50%, rgba(212,160,23,.28) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 0 0 72px; max-width: 720px; }
.hero-brand {
  margin: 0 0 14px; font-family: var(--display);
  font-size: clamp(2.3rem, 5.5vw, 4rem); line-height: .96; letter-spacing: -.04em; font-weight: 800;
}
.hero h1 {
  margin: 0 0 12px; font-family: var(--display); font-weight: 700;
  font-size: clamp(1.2rem, 2.3vw, 1.6rem); max-width: 22ch;
}
.hero p { margin: 0 0 26px; color: rgba(255,255,255,.85); max-width: 42ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.section { padding: 84px 0; }
.section-head { margin-bottom: 34px; max-width: 640px; }
.section-head h2 {
  margin: 0 0 10px; font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem); letter-spacing: -.03em; line-height: 1.12;
}
.section-head p { margin: 0; color: var(--muted); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.stat {
  background: rgba(255,255,255,.75); border: 1px solid var(--line); padding: 18px;
  border-top: 3px solid var(--butter);
}
.stat strong { display: block; font-family: var(--display); font-size: 1.75rem; }
.stat span { color: var(--muted); font-size: .88rem; }

.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.service {
  background: rgba(255,255,255,.8); border: 1px solid var(--line); padding: 22px;
  transition: transform .25s;
}
.service:hover { transform: translateY(-4px); }
.service .ikon { font-size: 1.5rem; margin-bottom: 8px; }
.service h3 { margin: 0 0 6px; font-family: var(--display); font-size: 1.15rem; }
.service p { margin: 0; color: var(--muted); }

.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product {
  background: #fff; border: 1px solid var(--line); overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  animation: fadeUp .55s ease both;
}
.product:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(26,18,14,.1); }
.product-media { aspect-ratio: 1; overflow: hidden; background: var(--cocoa); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.product:hover .product-media img { transform: scale(1.05); }
.product-body { padding: 14px; }
.product .tag {
  display: inline-block; background: var(--espresso); color: var(--butter-2);
  padding: 3px 8px; font-size: .7rem; font-weight: 800; text-transform: uppercase; margin-bottom: 6px;
}
.product h3 { margin: 0 0 4px; font-family: var(--display); font-size: 1.05rem; }
.product .price { font-family: var(--display); font-weight: 800; color: var(--butter); }
.product p { margin: 6px 0 0; color: var(--muted); font-size: .88rem; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.product:nth-child(2) { animation-delay: .06s; }
.product:nth-child(3) { animation-delay: .12s; }
.product:nth-child(4) { animation-delay: .18s; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.filters a {
  padding: 8px 14px; border: 1px solid var(--line); background: #fff; font-weight: 700; font-size: .88rem;
}
.filters a.active, .filters a:hover { background: var(--espresso); color: #fff; border-color: var(--espresso); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.g-item { overflow: hidden; min-height: 200px; background: var(--cocoa); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.g-item:hover img { transform: scale(1.05); }

.page-hero {
  background: linear-gradient(135deg, var(--espresso), var(--cocoa) 55%, #5a3a22);
  color: #fff; padding: 64px 0 48px;
}
.page-hero h1 {
  margin: 8px 0 0; font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.03em;
}
.crumb { color: rgba(255,255,255,.65); font-size: .9rem; }
.content-box {
  background: rgba(255,255,255,.88); border: 1px solid var(--line); padding: 28px;
}
.content-box p { color: #4a3c32; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { display: block; font-size: .8rem; font-weight: 800; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); padding: 11px 12px; font: inherit; background: #fff;
}
.field textarea { min-height: 110px; }
.ok { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; padding: 12px; margin-bottom: 12px; }

.cta-band {
  background: var(--espresso); color: #fff; padding: 56px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 50%, rgba(212,160,23,.28), transparent 45%);
}
.cta-band .container { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-band h2 { margin: 0 0 8px; font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-band p { margin: 0; color: rgba(255,255,255,.75); max-width: 42ch; }

.footer { background: var(--espresso); color: rgba(255,255,255,.72); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; margin-bottom: 22px; }
.footer strong { display: block; color: #fff; font-family: var(--display); margin-bottom: 10px; }
.footer a:hover { color: var(--butter-2); }
.copy { border-top: 1px solid rgba(255,255,255,.12); padding-top: 16px; font-size: .88rem; color: rgba(255,255,255,.45); }

@media (max-width: 980px) {
  .products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .menu {
    display: none; position: absolute; top: 76px; left: 18px; right: 18px;
    background: #fff; border: 1px solid var(--line); flex-direction: column; padding: 8px;
  }
  .menu.open { display: flex; }
  .stats, .services, .products, .gallery, .footer-grid, .form-grid { grid-template-columns: 1fr; }
}
