:root {
  --ink: #181614;
  --paper: #fffdfb;
  --paper-soft: #f7f2ec;
  --cream: #efe7db;
  --wood: #b3712f;
  --wood-light: #d99248;
  --wood-dark: #7a4a1c;
  --line: #e6dfd4;
  --muted: #6b6459;
  --shadow-sm: 0 4px 14px rgba(40, 26, 10, 0.06);
  --shadow-md: 0 16px 40px rgba(40, 26, 10, 0.12);
  --shadow-lg: 0 24px 60px rgba(20, 14, 6, 0.18);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.25rem; margin-bottom: 8px; }

p { margin: 0 0 16px; color: var(--muted); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wood);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--wood);
  display: inline-block;
}

.accent-text {
  background: linear-gradient(100deg, var(--wood-light), #f2c48a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { padding: 100px 0; position: relative; }
.section:nth-of-type(even) { background: var(--paper-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--wood-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary svg { transition: transform 0.2s ease; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--wood); color: var(--wood-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 251, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--wood); }

.main-nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--wood);
  transition: width 0.2s ease;
}
.main-nav a:hover { color: var(--wood-dark); }
.main-nav a:hover::after { width: 100%; }

.header-phone { margin-left: 24px; white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 16px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  padding: 150px 0 130px;
  background:
    linear-gradient(180deg, rgba(12, 9, 6, 0.78), rgba(12, 9, 6, 0.6) 55%, rgba(12, 9, 6, 0.85)),
    url("../assets/depozit-02.jpg") center / cover no-repeat;
  overflow: hidden;
}
.hero-inner { max-width: 760px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  color: #f2c48a;
  padding: 8px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  margin: 0 0 22px;
}
.hero h1 { color: #fff; }
.hero-lead { font-size: 1.15rem; max-width: 600px; color: #e6e2db; }
.hero-actions { display: flex; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.hero .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.1s; }
.reveal-delay-2.in-view { transition-delay: 0.2s; }
.reveal-delay-3.in-view { transition-delay: 0.3s; }

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
}
.feature-list li svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  padding: 7px;
  background: var(--cream);
  color: var(--wood-dark);
  border-radius: 50%;
}

.media-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.stat-card {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 32px;
  display: grid;
  gap: 22px;
}
.stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--wood-light);
}
.stat { font-size: 0.9rem; color: #cfc9bf; }
.stat-note { font-size: 0.75rem; color: #8f887c; margin: 4px 0 0; }

/* Products */
.section-lead { max-width: 620px; }

.price-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #f2c48a;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: 999px;
  margin: 4px 0 8px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.product-card {
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-card-img {
  overflow: hidden;
  height: 170px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-body { padding: 24px; }
.product-dim {
  font-size: 0.85rem;
  color: var(--wood-dark);
  font-weight: 600;
  margin: 0;
}

.product-note {
  margin-top: 36px;
  font-size: 0.95rem;
  padding: 18px 22px;
  background: var(--cream);
  border-radius: 10px;
  border-left: 3px solid var(--wood);
}

/* Contact */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 20px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--wood-dark);
  border-radius: 50%;
}
.contact-text { display: flex; flex-direction: column; gap: 4px; }
.contact-text strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink); }
.contact-hint { font-size: 0.85rem; color: var(--muted); font-style: italic; }
.contact-text a { color: var(--wood-dark); text-decoration: none; font-weight: 500; }
.contact-text a:hover { text-decoration: underline; }

.contact-form {
  display: grid;
  gap: 6px;
  background: var(--paper);
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 12px;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-soft);
  resize: vertical;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--wood);
  background: var(--paper);
}
.contact-form button { margin-top: 18px; justify-content: center; }
.form-note { font-size: 0.85rem; margin-top: 12px; color: var(--wood-dark); }

/* Footer */
.site-footer {
  padding: 40px 0;
  background: var(--ink);
  color: #cfc9bf;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer .logo { color: #fff; }
.site-footer .logo span { color: var(--wood-light); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { color: #cfc9bf; text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { color: #fff; }
.footer-inner p { margin: 0; font-size: 0.82rem; width: 100%; text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }

/* Responsive */
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 16px 24px; border-bottom: 1px solid var(--line); }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 72px 0; }
  .footer-inner { justify-content: center; text-align: center; }
}
