:root {
  --forest: #2f5233;
  --forest-dark: #1f3823;
  --forest-light: #3e6b44;
  --terracotta: #e07a3f;
  --plum: #6b4e71;
  --cream: #faf6ee;
  --cream-deep: #f1e9d8;
  --ink: #24301f;
  --ink-soft: #5a6b52;
  --radius: 18px;
  --shadow: 0 20px 50px -20px rgba(36, 48, 31, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  color: var(--forest-dark);
  line-height: 1.15;
  font-weight: 600;
}

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

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

.placeholder {
  background: repeating-linear-gradient(45deg, #fff3e0, #fff3e0 10px, #ffe8cc 10px, #ffe8cc 20px);
  color: #a15c1f;
  border: 1px dashed #e07a3f;
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 0.85em;
  font-style: italic;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 10px 25px -8px rgba(47, 82, 51, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(47, 82, 51, 0.7); }
.btn-outline {
  background: transparent;
  color: var(--forest-dark);
  border: 1.5px solid var(--forest-dark);
}
.btn-outline:hover { background: var(--forest-dark); color: #fff; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(47, 82, 51, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--forest-dark); }

/* Hero */
.hero {
  position: relative;
  padding: 170px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbf6ee 0%, #f3ead4 100%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  color: var(--terracotta);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.hero h1 em { color: var(--forest-light); font-style: normal; }
.hero p.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(250, 246, 238, 0.95);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--forest-dark);
  box-shadow: 0 10px 25px -10px rgba(0,0,0,0.25);
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--terracotta); }

.trust-strip {
  width: 100%;
  border-top: 1px solid rgba(47,82,51,0.1);
  margin-top: 70px;
  padding: 26px 5vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 28px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.trust-strip span { white-space: nowrap; }

/* Section generic */
section { padding: 100px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head .hero-eyebrow { display: block; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.7rem); }
.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; }

/* Video Story */
.video-story { background: var(--forest-dark); padding-bottom: 70px; }
.video-frame {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  background: #000;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(224, 122, 63, 0.92);
  border: 4px solid rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--terracotta); }
.play-btn svg { margin-left: 4px; }
.video-frame.is-playing .play-btn { opacity: 0; pointer-events: none; }

/* About */
.about { background: var(--forest-dark); color: #f1ece0; }
.about h2, .about h3 { color: #fff; }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.about-stats div { text-align: left; }
.about-stats strong { display: block; font-family: 'Fraunces', serif; font-size: 2.2rem; color: var(--terracotta); }
.about-stats span { font-size: 0.85rem; color: #cfd9c9; text-transform: uppercase; letter-spacing: 1px; }
.about-visual { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.about-visual img { width: 100%; }

/* Products */
.products { background: var(--cream); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px -18px rgba(36,48,31,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -18px rgba(36,48,31,0.45); }
.product-card .image-wrap { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-deep); }
.product-card img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { padding: 20px; }
.product-card h4 { font-size: 1.15rem; margin-bottom: 6px; }
.product-card p { color: var(--ink-soft); font-size: 0.92rem; }
.product-tags { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.product-tags span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--cream-deep);
  color: var(--forest);
}

.lineup-banner {
  margin-top: 60px;
  background: linear-gradient(120deg, var(--forest) 0%, var(--forest-light) 100%);
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.lineup-banner img { border-radius: 16px; }
.lineup-banner h3 { color: #fff; font-size: 1.8rem; margin-bottom: 12px; }
.lineup-banner p { color: #dfe8da; margin-bottom: 22px; }

/* Why us */
.why { background: var(--cream-deep); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: left;
  box-shadow: 0 10px 24px -16px rgba(36,48,31,0.3);
}
.why-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--forest);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.why-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* Contact / CTA */
.contact { background: var(--forest-dark); color: #f1ece0; }
.contact h2 { color: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}
.contact-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.contact-visual img { width: 100%; height: 100%; object-fit: cover; }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid #dcd3bd;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
}
.contact-form textarea { min-height: 110px; resize: vertical; margin-bottom: 18px; }
.g-recaptcha { margin-bottom: 18px; transform: scale(1); transform-origin: left; }
.contact-form button { width: 100%; justify-content: center; }
.form-status { margin-top: 14px; font-size: 0.88rem; text-align: center; min-height: 1.2em; }
.form-status.success { color: var(--forest); font-weight: 600; }
.form-status.error { color: #b3402a; font-weight: 600; }

/* Footer */
footer {
  background: #182b19;
  color: #a9bfa2;
  padding: 50px 0 26px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid .logo img { height: 42px; margin-bottom: 14px; }
.footer-grid p { max-width: 300px; }
.footer-grid h5 { color: #fff; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.8rem;
}

/* 404 */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #fbf6ee 0%, #f3ead4 100%);
}
.error-page-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.error-code {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 10px;
}
.error-page h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 14px; }
.error-page p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 30px; }
.error-page .hero-ctas { justify-content: center; }
.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
}
.social-links a:hover { background: var(--terracotta); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .about .container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-visual { min-height: 220px; }
  .lineup-banner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .trust-strip { column-gap: 20px; row-gap: 10px; font-size: 0.78rem; }
}
