
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy: #0d2235;
  --navy2: #1a3a52;
  --gold: #b8975a;
  --cream: #f7f3ed;
  --cream2: #f0ebe2;
  --white: #ffffff;
  --border: #e0d8cc;
  --text: #0d2235;
  --text-mid: #4a5568;
  --text-light: #8a9bb0;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TOP BANNER ── */
.top-banner {
  background: var(--cream2);
  text-align: center;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--navy);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

/* ── NAVIGATION ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 48px;
  position: relative;
}

.nav-logo img {
  height: 52px;
  display: block;
}

.nav-cta-wrap {
  position: absolute;
  right: 48px;
}

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-cta:hover { color: var(--gold); border-color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-bg-left {
  background: var(--cream);
}

.hero-bg-right {
  background: url('11fe257cd156.jpg') center/cover no-repeat;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left { padding-right: 40px; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  color: var(--navy2);
}

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 40px;
  max-width: 460px;
}

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  transition: background 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--navy2); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border: 1px solid var(--navy);
  transition: all 0.3s ease;
  margin-left: 12px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ── SECTION COMMON ── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; }

.section-subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 600px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── QUESTIONS ── */
.questions {
  padding: 100px 0;
  background: var(--white);
}

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

.questions-list {
  list-style: none;
  margin-top: 32px;
}
.questions-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.55;
}
.questions-list li:last-child { border: none; }
.questions-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.questions-box {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 48px;
  position: relative;
}
.questions-box::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: rgba(184,151,90,0.12);
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
}
.questions-box p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

/* ── 5 REASONS ── */
.reasons {
  padding: 100px 0;
  background: var(--white);
}

.reasons .section-eyebrow { color: var(--gold); }
.reasons .section-eyebrow::before { background: var(--gold); }
.reasons .section-title { color: var(--navy); }

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}
.reason-photo {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center top;
  margin-bottom: 20px;
}
.reason-card {
  background: var(--white);
  padding: 0 0 36px 0;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}
.reason-card .reason-num,
.reason-card .reason-title {
  padding: 0 20px;
}
.reason-card:hover {
  background: var(--cream);
  border-bottom-color: var(--gold);
}
.reason-card:hover {
  background: rgba(255,255,255,0.05);
  border-bottom-color: var(--gold);
}

.reason-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: rgba(13,34,53,0.08);
  line-height: 1;
  margin-bottom: 16px;
}
.reason-icon {
  font-size: 26px;
  margin-bottom: 16px;
  display: block;
}
.reason-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.5;
}

/* ── BENEFITS ── */
.benefits {
  padding: 100px 0;
  background: var(--navy);
}
.benefits .section-eyebrow { color: rgba(184,151,90,0.9); }
.benefits .section-eyebrow::before { background: rgba(184,151,90,0.9); }
.benefits .section-title { color: var(--white); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 56px;
}

.benefit-card {
  background: rgba(255,255,255,0.03);
  padding: 44px 36px;
  transition: background 0.3s;
}
.benefit-card:hover { background: rgba(255,255,255,0.07); }

.benefit-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}
.benefit-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.benefit-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 40px;
}
.stat-box {
  background: var(--cream);
  padding: 28px 16px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.about-image {
  position: relative;
  height: 560px;
}
.about-img-main {
  width: 85%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 0; top: 0;
}
.about-img-accent {
  width: 52%;
  height: 260px;
  object-fit: cover;
  position: absolute;
  left: 0; bottom: -32px;
  border: 6px solid var(--white);
  box-shadow: 0 8px 32px rgba(13,34,53,0.12);
}
.about-badge {
  position: absolute;
  top: 32px; left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── PROCESS ── */
.process {
  padding: 100px 0;
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 26px; left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
}

.process-item {
  text-align: center;
  padding: 0 8px;
  position: relative;
}

.process-dot {
  width: 52px; height: 52px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  position: relative;
  z-index: 1;
}
.process-icon { font-size: 18px; margin-bottom: 10px; }
.process-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  line-height: 1.4;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  padding: 44px 36px;
  border-top: 2px solid var(--navy);
}
.stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 20px; }
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: var(--navy);
  margin-bottom: 24px;
}
.testimonial-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── CTA BAND ── */
.cta-band {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-band h2 em { font-style: italic; color: rgba(255,255,255,0.75); }
.cta-band p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}
.btn-light {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 44px;
  transition: background 0.3s;
  cursor: pointer;
  border: none;
}
.btn-light:hover { background: var(--cream); }

/* ── DISTRIBUTOR ── */
.distributor {
  padding: 100px 0;
  background: var(--cream);
}
.distributor-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.distributor-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.distributor-divider {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 28px 0;
}
.distributor-right {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px;
  text-align: center;
}
.distributor-right p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.distributor-right strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}

/* ── FAQ ── */
.faq {
  padding: 100px 0;
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--navy);
  gap: 24px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
}

/* ── CONTACT ── */
.contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-left p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 36px;
}
.contact-info { margin-top: 36px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border: none; }
.contact-info-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.contact-info-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-info-text strong {
  display: block;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 3px;
}
.contact-info-text a { color: var(--navy); text-decoration: none; }
.contact-info-text a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 17px;
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.3s;
}
.form-submit:hover { background: var(--navy2); }
.form-note {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.6;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon { font-size: 44px; margin-bottom: 16px; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-success p { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 56px 48px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-logo img { height: 40px; filter: brightness(10); margin-bottom: 16px; }
.footer-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-content, .questions-inner, .about-inner,
  .distributor-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-bg-right { display: none; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .container { padding: 0 24px; }
  .nav-top { padding: 16px 24px; }
  .about-image { height: 320px; margin-top: 20px; }
  .about-img-accent { display: none; }
}

.form-error {color:#a51e28;margin:12px 0;line-height:1.5;}
.honey-field {position:absolute;left:-10000px;}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}*{transition:none!important;animation:none!important}}
