/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:  #1B2A4A;
  --gold:  #C9A84C;
  --cream: #E8DFC8;
  --offwhite: #F7F4EE;
  --text-dark: #1B2A4A;
  --text-body: #3a3a3a;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius: 4px;
  --max-w: 1100px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: #fff;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.gold-accent { color: var(--gold); }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.section-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

/* ===== NAV ===== */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
}

.nav-logo img {
  height: 88px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  transition: opacity var(--transition) !important;
}
.nav-cta:hover { opacity: 0.88; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  border: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); opacity: 1; }

.btn-navy {
  background: var(--navy);
  color: var(--cream);
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { position: relative; }

.hero-gold-rule {
  display: block;
  width: 3px;
  height: 80px;
  background: var(--gold);
  position: absolute;
  left: -1.5rem;
  top: 0;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero h1 .line-gold { color: var(--gold); }

.hero-sub {
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
}

.hero-logo-wrap img {
  max-width: 280px;
  width: 100%;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--cream);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(27,42,74,0.08);
}

.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}

.trust-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== MISSION / INTRO ===== */
.section-mission {
  background: #fff;
  padding: 5rem 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mission-text h2 { margin-bottom: 1.25rem; }
.mission-text p { margin-bottom: 1rem; color: var(--text-body); }

.mission-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mission-card {
  background: var(--offwhite);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.25rem 1.25rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.mission-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.mission-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.55;
}

/* ===== FEATURED PRODUCTS ===== */
.section-products-preview {
  background: var(--offwhite);
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: #555; max-width: 520px; margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(27,42,74,0.1);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27,42,74,0.12);
}

.product-card-top {
  background: var(--navy);
  padding: 1.75rem 1.5rem;
  position: relative;
}

.product-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.product-card-top h3 {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.3;
}

.product-card-top .product-accent {
  color: var(--gold);
}

.product-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.product-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

/* ===== EMAIL CAPTURE CTA ===== */
.section-email-cta {
  background: var(--navy);
  padding: 5rem 0;
}

.email-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.email-cta-inner h2 { color: #fff; margin-bottom: 1rem; }
.email-cta-inner p { color: var(--cream); margin-bottom: 2.5rem; font-size: 1.05rem; }

.email-form-inline {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.email-form-inline input[type="email"] {
  flex: 1;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  outline: none;
  color: var(--navy);
}

.email-form-inline button {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border: none;
  padding: 0.85rem 1.4rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--sans);
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.email-form-inline button:hover { opacity: 0.88; }

.form-note {
  font-size: 0.78rem;
  color: rgba(232,223,200,0.6);
  margin-top: 0.75rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(232,223,200,0.7);
  line-height: 1.65;
  max-width: 260px;
}

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

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(232,223,200,0.75);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(232,223,200,0.45);
}

.footer-url {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold) !important;
  font-size: 0.9rem;
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
  position: relative;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: var(--cream); max-width: 560px; margin: 1rem auto 0; font-size: 1.05rem; }

/* ===== CHECKLIST PAGE ===== */
.checklist-section {
  padding: 5rem 0;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.checklist-content h2 { margin-bottom: 1.25rem; }
.checklist-content p { margin-bottom: 1rem; color: var(--text-body); }

.checklist-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.checklist-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(27,42,74,0.07);
}

.checklist-list li:last-child { border-bottom: none; }

.check-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-box {
  background: var(--navy);
  border-radius: 8px;
  padding: 2.5rem;
  position: sticky;
  top: 90px;
}

.form-box h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.form-box .form-sub {
  color: var(--cream);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.ml-form-embed {
  /* MailerLite will inject form here */
}

/* Fallback manual form style (if ML embed not loaded) */
.manual-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.manual-form input[type="text"],
.manual-form input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  outline: none;
  transition: border-color var(--transition);
}
.manual-form input:focus { border-color: var(--gold); }
.manual-form input::placeholder { color: rgba(255,255,255,0.3); }

.manual-form button {
  width: 100%;
  padding: 0.9rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--sans);
  transition: opacity var(--transition);
}
.manual-form button:hover { opacity: 0.88; }

.form-disclaimer {
  font-size: 0.75rem;
  color: rgba(232,223,200,0.5);
  margin-top: 0.75rem;
  text-align: center;
  line-height: 1.5;
}

/* ===== PRODUCTS PAGE ===== */
.products-section { padding: 5rem 0; background: var(--offwhite); }

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.product-full-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(27,42,74,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-full-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27,42,74,0.13);
}

.product-full-header {
  background: var(--navy);
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
}

.product-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.product-full-header h3 {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.3;
}

.product-full-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-full-body p {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}

.product-full-includes {
  list-style: none;
  margin-bottom: 1.75rem;
}

.product-full-includes li {
  font-size: 0.87rem;
  color: var(--text-body);
  padding: 0.4rem 0;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  border-bottom: 1px solid rgba(27,42,74,0.06);
}
.product-full-includes li:last-child { border-bottom: none; }

.product-full-includes li::before {
  content: "→";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

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

.product-price-lg {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
}

.bundle-card .product-full-header {
  background: linear-gradient(135deg, var(--navy) 0%, #2a3d5e 100%);
}

.bundle-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Products disclaimer */
.products-disclaimer {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(27,42,74,0.08);
}
.products-disclaimer p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.65;
}

/* ===== ABOUT PAGE ===== */
.about-mission { padding: 5rem 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1.1rem; color: var(--text-body); }
.about-text p:last-child { margin-bottom: 0; }

.about-logo-block {
  background: var(--offwhite);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
  border: 1px solid rgba(27,42,74,0.08);
}

.about-logo-block img {
  max-width: 220px;
  margin: 0 auto 1.5rem;
}

.about-logo-block p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.6;
}

.about-segments { background: var(--offwhite); padding: 5rem 0; }

.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.segment-card {
  background: #fff;
  border-radius: 6px;
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--gold);
}

.segment-letter {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.segment-card h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.segment-card p { font-size: 0.88rem; color: #555; line-height: 1.65; }

.about-values { padding: 5rem 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--offwhite);
  border-radius: 6px;
}

.value-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.1;
}

.value-item h4 { margin-bottom: 0.35rem; font-size: 1rem; }
.value-item p { font-size: 0.87rem; color: #555; line-height: 1.6; }

/* ===== DISCLAIMER BANNER ===== */
.disclaimer-banner {
  background: var(--cream);
  border-top: 1px solid rgba(27,42,74,0.1);
  padding: 0.75rem 0;
}
.disclaimer-banner p {
  font-size: 0.78rem;
  color: var(--navy);
  opacity: 0.65;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-logo-wrap { padding: 2rem; }
  .hero-gold-rule { display: none; }

  .mission-grid,
  .checklist-grid,
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .form-box { position: static; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }

  .segments-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .mission-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3rem; }

  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open { display: flex; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 1rem 1.5rem 1.5rem; border-top: 1px solid rgba(201,168,76,0.2); }
  .nav-links.open li { padding: 0.6rem 0; border-bottom: 1px solid rgba(232,223,200,0.08); }
  .nav-toggle { display: flex; }

  .email-form-inline { flex-direction: column; }
  .email-form-inline input[type="email"] { border-radius: var(--radius); }
  .email-form-inline button { border-radius: var(--radius); }

  .footer-links-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .products-grid,
  .products-full-grid { grid-template-columns: 1fr; }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
}
