/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #2C2420;
  background: #FAF6F1;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B85838;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: #1E1612;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: #6B5E57;
  max-width: 560px;
}
.section-header { margin-bottom: 56px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 88, 56, 0.1);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(44, 36, 32, 0.08); }
.nav-inner { display: flex; align-items: center; height: 72px; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #1E1612;
  margin-right: auto;
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #4A3F3A;
  transition: color 0.2s;
}
.nav-links a:hover { color: #B85838; }
.nav-cta {
  background: #B85838;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #9E4A2E; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1E1612;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.pexels.com/photos/34444367/pexels-photo-34444367.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  background-color: #3D2B22;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,22,18,0.82) 0%, rgba(61,43,34,0.70) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8C4A0;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(32px, 5.5vw, 64px);
  color: #FAF6F1;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: #D4C4B8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(250,246,241,0.5);
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: #B85838;
  color: #fff;
  border-color: #B85838;
}
.btn-primary:hover { background: #9E4A2E; border-color: #9E4A2E; transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  color: #FAF6F1;
  border-color: rgba(250,246,241,0.5);
}
.btn-outline-light:hover { border-color: #FAF6F1; background: rgba(250,246,241,0.1); }
.btn-full { width: 100%; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.products { background: #FAF6F1; }
.about { background: #F3EBE3; }
.why-us { background: #FAF6F1; }
.contact { background: #F3EBE3; }

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44,36,32,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(44,36,32,0.1); }
.product-img-wrap { overflow: hidden; aspect-ratio: 3/2; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-body { padding: 28px; }
.product-body h3 {
  font-size: 22px;
  color: #1E1612;
  margin-bottom: 10px;
}
.product-body p { font-size: 15px; color: #6B5E57; line-height: 1.65; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img-col { position: relative; }
.about-img-main { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(44,36,32,0.12); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(44,36,32,0.15);
  border: 4px solid #F3EBE3;
}
.about-text-col { padding-top: 16px; }
.about-text-col p {
  font-size: 16px;
  color: #4A3F3A;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(184,88,56,0.2);
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: #B85838;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: #6B5E57; font-weight: 500; }

/* ===== WHY US / FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(44,36,32,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(44,36,32,0.1); }
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3EBE3;
  border-radius: 14px;
}
.feature-card h3 {
  font-size: 19px;
  color: #1E1612;
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: #6B5E57; line-height: 1.65; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: #1E1612;
  padding: 80px 0;
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #E8C4A0; margin-bottom: 16px; }
.cta-title { font-size: clamp(26px, 4vw, 40px); color: #FAF6F1; margin-bottom: 16px; }
.cta-sub { font-size: 17px; color: #B8A89C; margin-bottom: 32px; line-height: 1.6; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #F3EBE3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1E1612;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-item p, .contact-item a {
  font-size: 15px;
  color: #4A3F3A;
  line-height: 1.6;
}
.contact-item a:hover { color: #B85838; }
.contact-map { margin-top: 8px; border-radius: 12px; overflow: hidden; }
.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 2px 16px rgba(44,36,32,0.07);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #4A3F3A;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E4D8CE;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1E1612;
  background: #FAF6F1;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #B85838;
  box-shadow: 0 0 0 3px rgba(184,88,56,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #E8F5E9;
  border-radius: 10px;
  color: #2E7D32;
  font-size: 14px;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: #1E1612;
  color: #B8A89C;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #FAF6F1;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; color: #8A7E76; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E8C4A0;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: #8A7E76;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #E8C4A0; }
.footer-col address { font-style: normal; font-size: 14px; line-height: 1.7; color: #8A7E76; }
.footer-col p { font-size: 14px; margin-bottom: 8px; }
.footer-col a:hover { color: #E8C4A0; }
.footer-bottom {
  border-top: 1px solid rgba(184,88,56,0.2);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: #6B5E57; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal.revealed {
    opacity: 1;
    transform: none;
  }
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,246,241,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(184,88,56,0.15);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-cta { text-align: center; width: 100%; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-accent { right: 16px; bottom: -20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero-inner { padding: 100px 20px 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
