/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== VARIABLES ===== */
:root {
  --brown: #5a3a24;
  --brown-mid: #8a5a36;
  --cream: #fbf6ec;
  --cream-dark: #f5ebd9;
  --accent: #c47e3e;
  --accent-light: #e0a96d;
  --accent-warm: #d68a4c;
  --gold: #d9a55e;
  --sage: #7a9166;
  --text: #2a2018;
  --text-light: #6b5a4c;
  --border: #ebe0cd;
  --white: #fff;
  --shadow: 0 4px 24px rgba(90,58,36,0.10);
  --shadow-warm: 0 8px 32px rgba(196,126,62,0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent-warm);
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  border: 2px solid var(--accent-warm);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(214,138,76,0.35);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(214,138,76,0.45); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.25s ease;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-full { width: 100%; text-align: center; }
.btn-nav {
  background: var(--accent-warm);
  color: #fff !important;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(214,138,76,0.25);
}
.btn-nav:hover { background: var(--gold); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(214,138,76,0.4); }

/* ===== CONTAINER ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 14px;
}
.section-sub { color: var(--text-light); max-width: 520px; margin: 12px auto 0; font-size: 1.05rem; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 8px; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--brown); }
.logo-icon { font-size: 1.6rem; }
.amp { color: var(--accent-light); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text); transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--brown); }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu a { padding: 10px 0; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-medley.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,26,14,0.55) 0%, rgba(90,58,36,0.45) 50%, rgba(45,26,14,0.65) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; padding: 0 24px; }
.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  background: rgba(217,165,94,0.95);
  padding: 8px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.hero h1 { color: #fff; margin-bottom: 24px; text-shadow: 0 4px 30px rgba(0,0,0,0.5); font-weight: 700; }
.hero-sub { color: rgba(255,255,255,0.92); font-size: 1.2rem; margin-bottom: 40px; text-shadow: 0 2px 12px rgba(0,0,0,0.4); font-weight: 400; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== TRUST BAR ===== */
.trust-bar { background: linear-gradient(135deg, var(--accent-warm) 0%, var(--gold) 100%); padding: 36px 0; }
.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; align-items: center; padding: 0 40px; }
.trust-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #fff; }
.trust-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }
.trust-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }

/* ===== PRODUCTS ===== */
.products { background: var(--cream); }
.product-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.tab {
  padding: 8px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
}
.tab:hover { border-color: var(--accent); color: var(--accent); }
.tab.active { background: var(--accent-warm); color: #fff; border-color: var(--accent-warm); box-shadow: 0 4px 14px rgba(214,138,76,0.3); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(61,43,31,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(61,43,31,0.14); }
.product-card.hidden { display: none; }
.product-img {
  height: 200px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-info { padding: 20px 24px 24px; }
.product-info h3 { margin-bottom: 8px; }
.product-info p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--cream-dark);
  color: var(--brown-mid);
}
.products-cta { text-align: center; margin-top: 40px; font-size: 1.05rem; color: var(--text-light); }
.products-cta a { color: var(--accent); font-weight: 600; }

/* ===== ABOUT ===== */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #3d2b1f, #6b4226);
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder { font-size: 8rem; opacity: 0.6; }
.about-stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.about-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--accent-warm); }
.about-stat-label { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; }
.about-list { list-style: none; margin: 24px 0 32px; }
.about-list li { padding: 8px 0; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); }
.about-list li:first-child { border-top: 1px solid var(--border); }

/* ===== WHY ===== */
.why { background: #fff; }
.why-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-intro { color: var(--text-light); font-size: 1.05rem; margin: 16px 0 36px; max-width: 440px; }
.why-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-warm);
  min-width: 36px;
  margin-top: 2px;
}
.why-text h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.why-text p { font-size: 0.88rem; color: var(--text-light); }
/* Why right image stack */
.why-img-stack { position: relative; }
.why-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
}
.why-img-main img { width: 100%; height: 100%; object-fit: cover; }
.why-img-small {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 180px;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}
.why-img-small img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute;
  top: 24px;
  right: -20px;
  background: linear-gradient(135deg, var(--accent-warm), var(--gold));
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(214,138,76,0.4);
}
.why-badge-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; }
.why-badge-text { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ===== HOW IT WORKS ===== */
.how { background: linear-gradient(135deg, #4a2f1c 0%, #6b4226 50%, #5a3a24 100%); position: relative; }
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(214,138,76,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.how .container { position: relative; }
.how .section-tag { color: var(--gold); }
.how h2 { color: #fff; }
.steps { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; margin-top: 48px; }
.step { text-align: center; padding: 0 40px; max-width: 240px; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.9;
}
.step h3 { color: #fff; margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.step-arrow { font-size: 2rem; color: rgba(255,255,255,0.25); padding: 0 16px; }

/* ===== CONTACT ===== */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { font-size: 1.4rem; margin-top: 2px; }
.contact-method strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 2px; }
.contact-method a { color: var(--accent); font-weight: 500; }
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.checkbox { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; cursor: pointer; padding: 6px 14px; background: #fff; border: 1.5px solid var(--border); border-radius: 50px; transition: all 0.2s; }
.checkbox:hover { border-color: var(--accent); }
.checkbox input { accent-color: var(--brown); }

/* ===== FOOTER ===== */
.footer { background: linear-gradient(135deg, #4a2f1c 0%, #2d1a0e 100%); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; padding-bottom: 48px; }
.footer-brand .logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: #fff; }
.footer-brand .logo-icon { font-size: 1.6rem; margin-right: 8px; }
.footer-brand .amp { color: var(--accent-light); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-top: 12px; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-stat-card { right: 0; bottom: -16px; }
  .about-img-box { height: 320px; }
  .why-split { grid-template-columns: 1fr; gap: 48px; }
  .why-right { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .trust-item { padding: 0 20px; }
  .trust-divider { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 24px; }
  .step-arrow { transform: rotate(90deg); }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; align-items: center; }
  .trust-inner { gap: 24px; }
}
