/* ===================================================================
   LEGACY & LONGEVITY PROTOCOL — Design System v2
   Hand-crafted editorial aesthetic
   =================================================================== */

:root {
  --navy: #0F1A2E;
  --deep: #0C111F;
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --gold-warm: #D4A843;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --sage: #6B8F71;
  --sage-dim: rgba(107, 143, 113, 0.12);
  --cream: #F5F0E3;
  --slate: #8A9BB5;
  --light: #CBD5E1;
  --white: #FFFFFF;
  --red-accent: #C0392B;
  --card-bg: rgba(14, 22, 40, 0.65);
  --border-subtle: rgba(201, 168, 76, 0.1);
  --border-gold: rgba(201, 168, 76, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--deep);
  color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== SUBTLE GRAIN TEXTURE (replaces blue glow) ===== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.018'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: rgba(12, 17, 31, 0.55);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.site-nav.scrolled {
  background: rgba(12, 17, 31, 0.92);
  border-bottom-color: rgba(201, 168, 76, 0.15);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-brand span {
  color: var(--gold);
}

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

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

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

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

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

.nav-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-warm) 50%, #A8892E 100%);
  color: var(--deep) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
  color: var(--deep) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: rgba(201, 168, 76, 0.06);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 72px;
}

.top-bar span {
  color: var(--white);
  font-weight: 700;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  background: linear-gradient(180deg, var(--deep) 0%, #0E1628 50%, var(--navy) 100%);
  overflow: hidden;
}

/* Animated gradient orb */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, rgba(107, 143, 113, 0.03) 40%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbFloat {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  33% { transform: translateX(-45%) translateY(-20px) scale(1.05); }
  66% { transform: translateX(-55%) translateY(10px) scale(0.98); }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
  opacity: 0.6;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 600;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
  position: relative;
  display: inline-block;
}

/* Decorative rule under eyebrow */
.hero-eyebrow::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}

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

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 3vw, 26px);
  color: var(--slate);
  font-weight: 400;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
}

.hero-body {
  font-size: 17px;
  color: var(--light);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.85;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s ease forwards;
}

/* ===== CTA BUTTON + SHIMMER ===== */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-warm) 50%, #A8892E 100%);
  color: var(--deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 48px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeUp 0.8s 1s ease forwards;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep across CTA */
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmerSweep 4s 2s ease-in-out infinite;
}

@keyframes shimmerSweep {
  0% { left: -100%; }
  20% { left: 120%; }
  100% { left: 120%; }
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
}

.cta-btn.no-anim {
  opacity: 1;
  animation: none;
}

.hero-price {
  margin-top: 16px;
  font-size: 14px;
  color: var(--slate);
  opacity: 0;
  animation: fadeUp 0.8s 1.1s ease forwards;
}

.hero-price s {
  color: #5a6577;
}

.hero-price strong {
  color: var(--white);
  font-size: 18px;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 0.8s 1.4s ease forwards;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 0.7; height: 52px; }
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 100px 24px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.container-wide {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-body {
  font-size: 17px;
  color: var(--light);
  line-height: 1.85;
  margin-bottom: 24px;
}

/* ===== PROBLEM SECTION ===== */
.problem {
  background: var(--navy);
  position: relative;
  padding: 110px 24px 120px;
}

.problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(201, 168, 76, 0.25), transparent 90%);
}

.pain-list {
  list-style: none;
  margin: 32px 0;
}

.pain-list li {
  padding: 18px 0 18px 40px;
  position: relative;
  font-size: 17px;
  color: var(--light);
  border-bottom: 1px solid rgba(138, 155, 181, 0.08);
  transition: padding-left 0.3s ease;
}

.pain-list li:hover {
  padding-left: 46px;
}

.pain-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--red-accent);
  font-weight: 700;
  font-size: 22px;
  top: 16px;
  transition: transform 0.3s ease;
}

.pain-list li:hover::before {
  transform: scale(1.2);
}

/* ===== WHAT'S INSIDE ===== */
.inside {
  background: var(--deep);
  padding: 90px 24px 120px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

/* Stagger: first card spans full width for asymmetry */
.pillar-grid .pillar-card:first-child {
  grid-column: 1 / -1;
}

.pillar-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.pillar-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.1);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}

.pillar-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

.pillar-details {
  margin-top: 16px;
  list-style: none;
}

.pillar-details li {
  padding: 5px 0 5px 22px;
  position: relative;
  font-size: 14px;
  color: var(--light);
}

.pillar-details li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.7;
}

/* ===== CREDIBILITY STRIP ===== */
.credibility-strip {
  background: rgba(201, 168, 76, 0.03);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 24px;
  text-align: center;
  overflow: hidden;
}

.credibility-inner {
  max-width: 900px;
  margin: 0 auto;
}

.credibility-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 24px;
  font-weight: 500;
}

.credibility-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.credibility-logos span {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(138, 155, 181, 0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.4s ease;
  cursor: default;
}

.credibility-logos span:hover {
  color: rgba(138, 155, 181, 0.6);
}

/* ===== EVIDENCE ===== */
.evidence {
  background: var(--navy);
  padding: 110px 24px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.evidence-card {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid var(--border-subtle);
  background: var(--card-bg);
  transition: border-color 0.3s ease, transform 0.4s ease;
}

.evidence-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.evidence-card .stat {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.evidence-card .stat-label {
  font-size: 12px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
}

.evidence-card .stat-source {
  font-size: 11px;
  color: rgba(138, 155, 181, 0.4);
  margin-top: 10px;
  font-style: italic;
  display: block;
}

/* ===== WHO THIS IS FOR ===== */
.who {
  background: var(--deep);
  padding: 90px 24px 110px;
}

.who-list {
  list-style: none;
  margin: 32px 0;
}

.who-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  font-size: 17px;
  color: var(--light);
  border-bottom: 1px solid rgba(138, 155, 181, 0.06);
  transition: padding-left 0.3s ease;
}

.who-list li:hover {
  padding-left: 46px;
}

.who-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
  font-size: 18px;
  top: 16px;
  transition: color 0.3s ease;
}

.who-list li:hover::before {
  color: var(--gold);
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    linear-gradient(0deg, var(--deep) 0%, var(--navy) 100%);
  text-align: center;
  padding: 120px 24px 100px;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
  opacity: 0.5;
}

.price-box {
  display: inline-block;
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 40px 56px;
  margin: 40px 0;
  background: var(--card-bg);
  transition: border-color 0.3s ease;
}

.price-box:hover {
  border-color: rgba(201, 168, 76, 0.45);
}

.price-box .original {
  font-size: 20px;
  color: var(--slate);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.price-box .current {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
}

.price-box .note {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 600;
}

/* Dynamic total price display */
.dynamic-total {
  font-size: 14px;
  color: var(--slate);
  margin-top: 12px;
  transition: all 0.3s ease;
}

.dynamic-total .total-amount {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  transition: all 0.3s ease;
}

.dynamic-total.bumped .total-amount {
  color: var(--gold);
}

.guarantee {
  max-width: 560px;
  margin: 32px auto 0;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}

.guarantee strong {
  color: var(--light);
}

/* ===== ORDER BUMP ===== */
.order-bump {
  max-width: 560px;
  margin: 32px auto;
  border: 2px solid rgba(201, 168, 76, 0.25);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, rgba(12, 17, 31, 0.9) 100%);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.order-bump:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.order-bump.is-checked {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.12);
}

.order-bump-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-warm) 100%);
  color: var(--deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  display: inline-block;
}

.order-bump-content {
  padding: 24px 28px;
}

.order-bump-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.order-bump-checkbox {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid rgba(201, 168, 76, 0.4);
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.order-bump-checkbox:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.order-bump-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--deep);
  font-size: 14px;
  font-weight: 800;
}

.order-bump-checkbox:hover {
  border-color: var(--gold);
}

.order-bump-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.3;
}

.order-bump-price {
  color: var(--gold);
  font-weight: 700;
}

.order-bump-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  margin-top: 12px;
  padding-left: 36px;
}

.order-bump-original-price {
  text-decoration: line-through;
  color: rgba(138, 155, 181, 0.5);
  font-size: 13px;
}

/* ===== FAQ ACCORDION ===== */
.faq {
  background: var(--deep);
  padding: 90px 24px 110px;
}

.faq-item {
  border-bottom: 1px solid rgba(138, 155, 181, 0.08);
}

.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--white);
  font-weight: 700;
  padding: 24px 40px 24px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  user-select: none;
}

.faq-q:hover {
  color: var(--gold-light);
}

/* Accordion toggle icon */
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-q::after {
  content: '−';
}

.faq-a {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  padding-bottom: 0;
}

.faq-item.open .faq-a {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 24px;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(138, 155, 181, 0.06);
  background: var(--deep);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(138, 155, 181, 0.4);
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(138, 155, 181, 0.3);
  text-align: center;
  max-width: 340px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 12px;
  color: rgba(138, 155, 181, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease, transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.blog-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.blog-card-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.blog-card-thumb svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  opacity: 0.85;
  filter: drop-shadow(0 0 14px rgba(201, 168, 76, 0.35));
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.blog-card:hover .blog-card-thumb svg {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
  filter: drop-shadow(0 0 28px rgba(201, 168, 76, 0.65));
}

.blog-card-thumb.grad-1 {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(15, 26, 46, 0.9)),
    radial-gradient(circle at 30% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
}

.blog-card-thumb.grad-2 {
  background: linear-gradient(135deg, rgba(15, 26, 46, 0.9), rgba(107, 143, 113, 0.12)),
    radial-gradient(circle at 70% 30%, rgba(107, 143, 113, 0.15) 0%, transparent 50%);
}

.blog-card-thumb.grad-3 {
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.1), rgba(10, 17, 33, 0.95)),
    radial-gradient(circle at 50% 80%, rgba(201, 168, 76, 0.12) 0%, transparent 50%);
}

.blog-card-body {
  padding: 28px 24px 32px;
}

.blog-card-date {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 24px 32px;
}

.blog-card-link:hover {
  color: var(--gold-light);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 560px;
  margin: 40px auto 0;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s ease;
  line-height: 1.6;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(138, 155, 181, 0.35);
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
  color: var(--gold);
  font-size: 15px;
  margin-top: 24px;
}

.form-success.show {
  display: block;
}

/* ===== GUIDE PAGE ===== */
.guide-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.guide-feature {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  padding: 32px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.guide-feature:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.guide-feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.guide-feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}

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

.cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.cta-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 48px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn-outline:hover {
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.15);
}

/* ===== ABOUT PAGE ===== */
.about-section {
  background: var(--navy);
}

.mission-section {
  background: var(--deep);
}

.about-content {
  max-width: 700px;
}

.about-content p {
  font-size: 17px;
  color: var(--light);
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* Drop cap for first paragraph in about */
.about-content p:first-child::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.2em;
  float: left;
  line-height: 0.85;
  margin-right: 8px;
  margin-top: 4px;
  color: var(--gold);
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  padding: 32px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(14, 22, 40, 0.4);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.value-card:hover {
  border-left-color: var(--sage);
  background: rgba(14, 22, 40, 0.6);
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}

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

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--deep) 0%, var(--navy) 100%);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
  opacity: 0.5;
}

.page-hero .section-label {
  margin-bottom: 16px;
}

.page-hero .section-title {
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 16px;
}

.page-hero .section-body {
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ARTICLE CONTENT STYLES ===== */
.article-content p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
  float: left;
  line-height: 0.85;
  margin-right: 8px;
  margin-top: 4px;
  color: var(--gold);
  font-weight: 700;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-nav {
    padding: 0 20px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(12, 17, 31, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid rgba(201, 168, 76, 0.1);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(138, 155, 181, 0.05);
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 14px;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    width: 100%;
    display: block;
    padding: 14px 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-grid .pillar-card:first-child {
    grid-column: auto;
  }

  .credibility-logos {
    gap: 24px;
  }

  .credibility-logos span {
    font-size: 13px;
  }

  .order-bump-content {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 72px 20px;
  }

  .price-box {
    padding: 32px 28px;
  }

  .price-box .current {
    font-size: 42px;
  }

  .cta-btn {
    padding: 16px 36px;
    font-size: 14px;
  }

  .cta-btn-outline {
    padding: 16px 36px;
    font-size: 14px;
  }

  .page-hero {
    padding: 140px 20px 60px;
  }

  .order-bump {
    margin: 24px 16px;
  }
}

/* ===================================================================
   SCROLL ANIMATIONS
   Elements start invisible. JS adds '.is-visible' when in viewport.
   =================================================================== */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drawLine {
  from { width: 0; }
  to { width: 64px; }
}

@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(201, 168, 76, 0.1); }
  50% { box-shadow: 0 0 28px rgba(201, 168, 76, 0.25); }
}

/* Base state: hidden before animation */
.anim-fade-up,
.anim-fade-in,
.anim-slide-left,
.anim-slide-right,
.anim-scale-in {
  opacity: 0;
  will-change: opacity, transform;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .anim-fade-up,
  .anim-fade-in,
  .anim-slide-left,
  .anim-slide-right,
  .anim-scale-in {
    opacity: 1;
    animation: none !important;
  }

  .cta-btn::before {
    animation: none !important;
  }

  .hero::before {
    animation: none !important;
  }
}

/* Triggered state: JS adds .is-visible */
.anim-fade-up.is-visible {
  animation: fadeUpIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-fade-in.is-visible {
  animation: fadeIn 0.7s ease both;
}

.anim-slide-left.is-visible {
  animation: slideInLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-slide-right.is-visible {
  animation: slideInRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-scale-in.is-visible {
  animation: scaleIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }
.delay-5 { animation-delay: 0.5s !important; }
.delay-6 { animation-delay: 0.6s !important; }

/* Gold section label underline draw */
.section-label {
  position: relative;
  display: inline-block;
}