:root {
  --bg: #120d09;
  --bg-soft: #1f1610;
  --surface: #f6efe5;
  --surface-soft: #efe1cd;
  --ink: #1d140d;
  --ink-soft: #4d3a2d;
  --accent: #cf9f4b;
  --accent-soft: #f0d29d;
  --stroke: rgba(207, 159, 75, 0.28);
  --shadow: rgba(12, 8, 5, 0.35);
  --radius: 18px;
  --font-head: 'Cinzel', serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.03rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -10%, rgba(207, 159, 75, 0.2), transparent 34%),
    radial-gradient(circle at 85% -20%, rgba(130, 82, 38, 0.23), transparent 40%),
    linear-gradient(180deg, #f8f1e7 0%, #f8f1e7 34%, #f0e4d3 100%);
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.section {
  padding: clamp(3.8rem, 6vw, 6rem) 0;
}

.section-title {
  margin: 0 0 1.2rem;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  letter-spacing: 0.02em;
  color: var(--ink);
  text-align: center;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 12, 9, 0.55);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  background: rgba(17, 12, 9, 0.86);
  border-color: rgba(207, 159, 75, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.header-inner {
  min-height: 4.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-img {
  height: 3.2rem;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.nav a {
  color: #f2dfc0;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.9;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  opacity: 1;
  color: var(--accent-soft);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.3rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: #f2dfc0;
  border-radius: 99px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 94vh;
  margin-top: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #f8ede0;
  background: #120d09 url('hero-banner.png') center / cover no-repeat fixed;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(8, 6, 4, 0.92) 16%, rgba(25, 16, 10, 0.76) 50%, rgba(20, 13, 8, 0.9) 100%);
}

.hero-overlay {
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 280px;
  background: radial-gradient(circle, rgba(207, 159, 75, 0.23), transparent 70%);
  filter: blur(24px);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 4.4rem;
  will-change: transform;
}

.hero-kicker {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.hero h1 {
  margin: 0.65rem 0 0;
  max-width: 760px;
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 6vw, 4.55rem);
  line-height: 1.1;
}

.hero-tagline {
  max-width: 700px;
  margin: 1.25rem 0 0;
  color: rgba(246, 231, 211, 0.93);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-stats {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.9rem;
  max-width: 780px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(207, 159, 75, 0.25);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--accent-soft);
}

.hero-stats span {
  font-size: 0.86rem;
  color: rgba(255, 242, 221, 0.88);
}

/* Body sections */
.about,
.mission,
.products,
.showcase,
.why-us,
.contact {
  position: relative;
}

.section:nth-of-type(even):not(.hero) {
  background: linear-gradient(180deg, rgba(223, 203, 174, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.about-lead,
.mission-text,
.contact-intro {
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Products */
.products-grid {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.75);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 30px rgba(21, 14, 8, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  transform-style: preserve-3d;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(21, 14, 8, 0.18);
  border-color: var(--stroke);
}

.product-image {
  aspect-ratio: 1.08;
  overflow: hidden;
  background: #e5cfb4;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-card h3 {
  margin: 1rem 1rem 0.2rem;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--ink);
}

.product-card p {
  margin: 0 1rem;
  color: #674f3c;
  font-size: 0.94rem;
}

.product-link {
  margin: 0.95rem 1rem 1rem;
  color: #8d5818;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.87rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-link:hover {
  color: #70440f;
}

/* Video showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.4rem;
  align-items: center;
}

.showcase-copy p {
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}

.showcase-copy .section-title {
  text-align: left;
}

.showcase-video-wrap {
  border-radius: var(--radius);
  padding: 0.8rem;
  background: linear-gradient(145deg, rgba(255, 248, 235, 0.9), rgba(237, 219, 190, 0.55));
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 45px var(--shadow);
}

.showcase-video {
  width: 100%;
  border-radius: calc(var(--radius) - 8px);
  background: #150e09;
}

/* Why us */
.why-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.why-card {
  padding: 1.25rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 30px rgba(15, 10, 6, 0.07);
}

.why-number {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(165deg, #a76c25, #d8a95c);
  color: #fff7e6;
  font-family: var(--font-head);
  font-size: 1.12rem;
  margin-bottom: 0.65rem;
}

.why-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-head);
}

.why-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* Buttons and contact */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 44px;
  padding: 0.8rem 1.45rem;
  border-radius: 11px;
  border: 1px solid transparent;
  background: linear-gradient(130deg, #a8691f, #d5aa62);
  color: #fff9eb;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn.btn-secondary {
  background: transparent;
  border-color: rgba(240, 210, 157, 0.5);
  color: #f6dfb8;
}

.contact {
  text-align: center;
}

/* Footer */
.footer {
  position: relative;
  padding: 3rem 0 2.4rem;
  color: #f5e2c1;
  background:
    radial-gradient(circle at 80% 0%, rgba(214, 166, 87, 0.18), transparent 36%),
    linear-gradient(180deg, #110c08 0%, #1d130c 100%);
  border-top: 1px solid rgba(207, 159, 75, 0.2);
}

.footer-inner {
  text-align: center;
}

.footer-tagline {
  margin: 0 0 1.2rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
}

.footer-links,
.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  margin-bottom: 0.65rem;
}

.footer-links a,
.footer-social a {
  color: #efd4aa;
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #fff2da;
}

.footer-contact {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-contact p {
  margin: 0.2rem 0;
}

.footer-copy {
  margin: 0.8rem 0 0;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .showcase-copy .section-title {
    text-align: center;
  }

  .showcase-copy {
    text-align: center;
  }
}

@media (max-width: 800px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 4.65rem 0 auto;
    background: rgba(20, 14, 10, 0.98);
    border-bottom: 1px solid rgba(207, 159, 75, 0.24);
    display: grid;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .nav a {
    padding: 0.9rem 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero {
    min-height: 90vh;
    background-attachment: scroll;
  }

  .hero-content {
    padding-top: 5.4rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 3.2rem 0;
  }

  .logo-img {
    height: 2.8rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}
