/* =============================================
   OVENZA — Main Stylesheet
   Warm & Cozy Premium Kitchen Brand
============================================= */

:root {
  --cream: #FAF7F2;
  --warm-white: #FDF9F4;
  --sand: #EAD9C0;
  --caramel: #B87333;
  --caramel-light: #D4956A;
  --espresso: #1E120A;
  --espresso-mid: #3D2314;
  --brown: #6B3C1F;
  --muted: #8C6B52;
  --warm-bg: #F5EDE0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--espresso);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.section-pad { padding: 100px 0; }

/* =============================================
   TYPOGRAPHY
============================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
}

h1 { font-size: clamp(42px, 5.5vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }

em { font-style: italic; color: var(--caramel); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--sand); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header.light .section-title { color: white; }

.section-title { color: var(--espresso); }
.section-title.light { color: white; }

/* =============================================
   BUTTONS
============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--espresso);
  color: white;
}
.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,18,10,0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
}
.btn-ghost:hover {
  background: var(--espresso);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 14px 40px;
}
.btn-outline-light:hover {
  background: white;
  color: var(--espresso);
}

.btn-lg { padding: 18px 48px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   NAVIGATION
============================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,115,51,0.12);
  transition: var(--transition);
}

.nav.scrolled {
  height: 60px;
  box-shadow: 0 4px 24px rgba(30,18,10,0.08);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--caramel);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--espresso);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--espresso) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  letter-spacing: 1px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--brown) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--espresso);
  transition: var(--transition);
}

/* =============================================
   HERO
============================================= */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 8% 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.hero-circle.c1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,115,51,0.12), transparent);
  top: -100px; right: -100px;
}
.hero-circle.c2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(234,217,192,0.5), transparent);
  bottom: 50px; left: 30%;
}
.hero-circle.c3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(107,60,31,0.08), transparent);
  top: 40%; left: -50px;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
}

.eyebrow-line {
  display: block;
  height: 1px; width: 32px;
  background: var(--caramel);
}

.hero-title { margin-bottom: 24px; }

.hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--espresso);
}

.trust-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--sand);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,115,51,0.15);
}
.hero-ring.r1 { width: 380px; height: 380px; animation: spin 30s linear infinite; }
.hero-ring.r2 { width: 480px; height: 480px; animation: spin 40s linear infinite reverse; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(30,18,10,0.12);
  border: 1px solid rgba(234,217,192,0.6);
  position: absolute;
}

.hero-card.main-card {
  padding: 36px;
  text-align: center;
  z-index: 3;
}

.hero-card.float-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
}

.hero-card.fc1 { top: 50px; right: 20px; animation: float 4s ease-in-out infinite; }
.hero-card.fc2 { bottom: 80px; left: 10px; animation: float 4s ease-in-out infinite 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.card-icon { font-size: 72px; display: block; margin-bottom: 12px; }
.card-icon.sm { font-size: 24px; }
.card-label { font-family: var(--font-display); font-size: 18px; color: var(--espresso); }
.card-label.sm { font-size: 13px; font-family: var(--font-body); color: var(--muted); font-weight: 500; }
.card-price { font-size: 28px; font-family: var(--font-display); font-weight: 600; color: var(--caramel); margin-top: 6px; }

/* =============================================
   MARQUEE
============================================= */

.marquee-strip {
  background: var(--espresso);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.marquee-track .dot { color: var(--caramel); font-size: 10px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   FEATURES
============================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  border: 1px solid rgba(234,217,192,0.6);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  animation: fadeUp 0.6s ease both;
  animation-delay: var(--delay);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(30,18,10,0.1);
  border-color: var(--sand);
}

.feature-icon-wrap {
  width: 52px; height: 52px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon { font-size: 22px; }

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--espresso);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* =============================================
   PRODUCTS PREVIEW (HOME)
============================================= */

.bg-dark { background: var(--espresso-mid); }
.bg-warm { background: var(--warm-bg); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover { transform: translateY(-6px); }

.product-card.featured {
  border-color: rgba(184,115,51,0.5);
  background: rgba(184,115,51,0.08);
}

.product-img {
  height: 200px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--caramel);
  color: white;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  font-weight: 500;
}

.product-info { padding: 24px; }

.product-cat {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.product-card h3 {
  font-size: 22px;
  color: white;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--caramel-light);
}

.product-btn {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: var(--transition);
  font-weight: 500;
}
.product-btn:hover { border-color: var(--caramel-light); color: var(--caramel-light); }

.products-cta {
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   TESTIMONIALS
============================================= */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: white;
  border: 1px solid rgba(234,217,192,0.6);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.review-card.highlight {
  background: var(--espresso);
  border-color: var(--espresso);
}

.review-card:hover { transform: translateY(-4px); }

.review-stars {
  color: var(--caramel);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card p {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--espresso);
  margin-bottom: 20px;
}

.review-card.highlight p { color: rgba(255,255,255,0.85); }

.reviewer {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.review-card.highlight .reviewer { color: rgba(255,255,255,0.4); }

/* =============================================
   CTA BANNER
============================================= */

.cta-banner {
  background: var(--caramel);
  padding: 100px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content { position: relative; z-index: 2; }

.cta-banner h2 {
  color: white;
  margin-bottom: 16px;
}
.cta-banner h2 em { color: var(--espresso); font-style: italic; }
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 36px;
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-circle.cc1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.cta-circle.cc2 { width: 300px; height: 300px; bottom: -120px; left: -80px; }

/* =============================================
   PAGE HERO (inner pages)
============================================= */

.page-hero {
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 0 8% 60px;
  position: relative;
  overflow: hidden;
  background: var(--espresso-mid);
  padding-top: 120px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(184,115,51,0.2), transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 { color: white; }

/* =============================================
   STORY (About)
============================================= */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-img-wrap { position: relative; }

.story-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--warm-bg), var(--sand));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}

.story-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--espresso);
  color: var(--sand);
  padding: 16px 24px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
}

.story-text h2 { margin-bottom: 24px; }
.story-text p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }

/* STATS */
.stats-section { padding: 80px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 600;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 500;
  margin-bottom: 4px;
}
.stat-desc { font-size: 13px; color: var(--muted); }

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.value-item {
  padding: 36px;
  border-left: 2px solid var(--sand);
  transition: var(--transition);
}
.value-item:hover { border-color: var(--caramel); }

.value-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: rgba(184,115,51,0.2);
  margin-bottom: 12px;
  line-height: 1;
}
.value-item h3 { margin-bottom: 10px; }
.value-item p { color: var(--muted); font-size: 15px; }

/* =============================================
   PRODUCTS FULL PAGE
============================================= */

.product-full-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--sand);
}
.product-full-card:last-child { border-bottom: none; }
.product-full-card.reverse { direction: rtl; }
.product-full-card.reverse > * { direction: ltr; }

.pfc-visual {
  position: relative;
  background: linear-gradient(145deg, var(--warm-bg), var(--sand));
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pfc-img { font-size: 120px; }

.pfc-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--espresso);
  color: white;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 500;
}
.pfc-badge.new { background: var(--caramel); }
.pfc-badge.gift { background: var(--brown); }

.pfc-cat {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
  margin-bottom: 12px;
}

.pfc-info h2 { margin-bottom: 12px; }

.pfc-rating {
  font-size: 14px;
  color: var(--caramel);
  margin-bottom: 20px;
}
.pfc-rating span { color: var(--muted); font-size: 13px; }

.pfc-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
}

.pfc-features {
  list-style: none;
  margin-bottom: 32px;
}
.pfc-features li {
  font-size: 14px;
  color: var(--espresso-mid);
  padding: 6px 0;
  border-bottom: 1px solid rgba(234,217,192,0.5);
}

.pfc-price-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pfc-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--caramel);
}

/* AMAZON TRUST */
.amazon-trust { padding: 60px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.trust-block { text-align: center; }
.trust-block .trust-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.trust-block h4 { font-size: 16px; margin-bottom: 8px; color: var(--espresso); }
.trust-block p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* =============================================
   CONTACT PAGE
============================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--muted); margin-bottom: 40px; font-size: 16px; }

.contact-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 15px;
  color: var(--espresso);
}
.contact-item a:hover { color: var(--caramel); }

.contact-note {
  padding: 16px 20px;
  background: var(--warm-bg);
  border-left: 3px solid var(--caramel);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.contact-note strong { color: var(--espresso); }
.contact-note a { color: var(--caramel); }

/* FORM */
.contact-form-wrap {
  background: white;
  border: 1px solid rgba(234,217,192,0.6);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--espresso);
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--caramel);
  background: white;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  text-align: center;
  padding: 40px;
}
.success-icon {
  width: 60px; height: 60px;
  background: var(--warm-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--caramel);
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 28px; margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-item {
  padding: 32px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(234,217,192,0.5);
}
.faq-item h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--espresso);
}
.faq-item p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* =============================================
   FOOTER
============================================= */

.footer {
  background: var(--espresso);
  color: rgba(255,255,255,0.6);
  padding: 60px 5% 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--caramel-light);
  font-weight: 500;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   ANIMATIONS
============================================= */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
============================================= */

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 20px 5%;
    gap: 0;
    border-bottom: 1px solid var(--sand);
    box-shadow: 0 8px 24px rgba(30,18,10,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(234,217,192,0.4); }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-cta { margin: 12px 0; border-radius: var(--radius); padding: 12px 20px; }

  .nav-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 120px 6% 60px;
    min-height: auto;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-img-accent { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .product-full-card { grid-template-columns: 1fr; gap: 32px; direction: ltr !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-banner { padding: 60px 6%; }
  .page-hero { min-height: 280px; padding-top: 100px; padding: 100px 6% 40px; }
}
