/* ==========================================================================
   NGUYỄN HOÀNG ÂN — AMWAY JOURNEY
   Design system: Personal Legacy × Quiet Luxury × Editorial Storytelling
   ========================================================================== */

:root {
  /* Colors */
  --ivory: #F7F4EE;
  --warm-white: #FCFAF7;
  --navy-deep: #10243A;
  --navy-charcoal: #182633;
  --gold-champagne: #C4A46B;
  --gold-muted: #7F5F35;
  --text-dark: #222222;
  --text-muted: #6E6A63;
  --text-on-dark: #F7F4EE;
  --text-on-dark-muted: #B9C2CC;
  --border-soft: rgba(34, 34, 34, 0.10);
  --border-soft-dark: rgba(247, 244, 238, 0.14);

  /* Type */
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --content-max: 1320px;
  --text-max: 800px;
  --section-pad-y: 140px;
  --section-pad-y-sm: 100px;
  --pad-x: 40px;

  /* Motion */
  --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-slow: 900ms;
  --dur-med: 650ms;
}

@media (max-width: 900px) {
  :root {
    --section-pad-y: 88px;
    --section-pad-y-sm: 64px;
    --pad-x: 22px;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

body {
  background: var(--warm-white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.body-lg,
.editorial-body p,
.story-card-text {
  text-align: justify;
  text-align-last: left;
}

.text-col--center p,
.text-col--center .body-lg,
.editorial-hero .body-lg,
.progressive p,
.quote-giant,
.final-cta-sub {
  text-align: center;
}

::selection { background: var(--gold-champagne); color: var(--navy-deep); }

:focus-visible {
  outline: 2px solid var(--gold-muted);
  outline-offset: 3px;
}

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.text-col {
  max-width: var(--text-max);
}
.text-col--center { margin: 0 auto; text-align: center; }

section { position: relative; }

.section-pad { padding: var(--section-pad-y) 0; }
.section-pad-sm { padding: var(--section-pad-y-sm) 0; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
  display: inline-block;
  margin-bottom: 22px;
}
.eyebrow--on-dark { color: var(--gold-champagne); }

h1, h2, h3, .headline {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.005em;
  color: var(--text-dark);
}
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3 { color: var(--text-on-dark); }

.headline--xl {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  text-transform: uppercase;
}
.headline--lg {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  text-transform: uppercase;
}
.headline--md {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.body-lg {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.8;
  color: var(--text-dark);
}
.body-muted { color: var(--text-muted); }

.quote-block {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.35;
  color: var(--navy-deep);
  position: relative;
  padding-left: 28px;
  border-left: 2px solid var(--gold-champagne);
}
.on-dark .quote-block { color: var(--text-on-dark); border-left-color: var(--gold-champagne); }

.quote-giant {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  line-height: 1.28;
  text-transform: uppercase;
}

.signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--navy-deep);
}

/* ---------- Buttons ---------- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 38px;
  border: 1px solid var(--gold-champagne);
  background: transparent;
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--dur-med) var(--ease-editorial), color var(--dur-med) var(--ease-editorial);
}
.btn-cta:hover, .btn-cta:focus-visible { background: var(--gold-champagne); color: var(--navy-deep); }
.btn-cta--light { color: var(--navy-deep); border-color: var(--navy-deep); }
.btn-cta--light:hover, .btn-cta--light:focus-visible { background: var(--navy-deep); color: var(--text-on-dark); }

.link-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy-deep);
  border-bottom: 1px solid var(--gold-champagne);
  padding-bottom: 3px;
  transition: gap var(--dur-med) var(--ease-editorial), opacity var(--dur-med);
}
.link-text:hover { gap: 14px; }
.on-dark .link-text { color: var(--text-on-dark); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: background var(--dur-med) var(--ease-editorial), padding var(--dur-med) var(--ease-editorial), border-color var(--dur-med) var(--ease-editorial);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.site-header:not(.is-scrolled)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,36,58,0.55) 0%, rgba(16,36,58,0.05) 100%);
  z-index: 0;
  pointer-events: none;
}
.site-header.is-scrolled {
  background: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 0;
  border-bottom-color: var(--border-soft);
}
.site-header.is-scrolled .brand-name,
.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .nav-cta { color: var(--navy-deep); }

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-on-dark);
  transition: color var(--dur-med) var(--ease-editorial);
}
.site-header:not(.is-scrolled) .brand-name,
.site-header:not(.is-scrolled) .nav-link,
.site-header:not(.is-scrolled) .nav-cta { color: var(--text-on-dark); }
.brand-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold-champagne);
  margin-top: 4px;
}

.nav-desktop { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 34px; }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-on-dark);
  position: relative;
  transition: color var(--dur-med) var(--ease-editorial);
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold-champagne);
  transition: width var(--dur-med) var(--ease-editorial);
}
.nav-link:hover::after, .nav-link:focus-visible::after { width: 100%; }

.nav-cta {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--gold-champagne);
  border-radius: 2px;
  transition: background var(--dur-med), color var(--dur-med);
}
.nav-cta:hover { background: var(--gold-champagne); color: var(--navy-deep); }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 32px; height: 22px;
  position: relative;
  z-index: 101;
}
.nav-toggle span {
  position: absolute; left: 0; right: 0;
  height: 1.5px;
  background: var(--text-on-dark);
  transition: transform var(--dur-med) var(--ease-editorial), opacity var(--dur-med), background var(--dur-med);
}
.site-header:not(.is-scrolled) .nav-toggle span { background: var(--text-on-dark); }
.site-header.is-scrolled .nav-toggle span { background: var(--navy-deep); }
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
body.nav-open .nav-toggle span { background: var(--warm-white) !important; }

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  transform: translateY(-100%);
  transition: transform var(--dur-slow) var(--ease-editorial);
}
body.nav-open .nav-mobile { transform: translateY(0); }
.nav-mobile ul { display: flex; flex-direction: column; gap: 26px; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-on-dark);
}
.nav-mobile .nav-cta { align-self: flex-start; margin-top: 36px; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(196,164,107,0.14), transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-charcoal) 100%);
  z-index: 0;
}
.hero .container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 60px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-text .headline--xl { margin-bottom: 28px; }
.hero-text .body-lg { color: var(--text-on-dark-muted); max-width: 480px; margin-bottom: 40px; }
.hero-text .body-lg p + p { margin-top: 14px; }
.hero-quote { margin-bottom: 40px; max-width: 480px; }
.hero-signature { display: flex; flex-direction: column; gap: 4px; }
.hero-signature .signature { color: var(--text-on-dark); }
.hero-signature small { color: var(--text-on-dark-muted); font-size: 13px; letter-spacing: 0.03em; }

.hero-media {
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  overflow: hidden;
  align-self: center;
}
.hero-media img,
.story-grid img,
.community-gallery img,
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 0; right: 0;
  display: flex; justify-content: center;
  z-index: 2;
}
.scroll-indicator a {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.scroll-indicator svg { animation: bob 2.4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) { .scroll-indicator svg { animation: none; } }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero .container { grid-template-columns: minmax(0, 1fr); padding-top: 140px; gap: 40px; }
  .hero-media { order: -1; aspect-ratio: 5/4; }
}

/* ---------- Image placeholder ---------- */
.img-placeholder {
  position: relative;
  width: 100%; height: 100%;
  min-height: 220px;
  background: linear-gradient(150deg, #FFFDF9 0%, #FBF3E3 45%, #F3E4C4 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  overflow: hidden;
}
.img-placeholder--dark {
  background: linear-gradient(150deg, #22344A 0%, #17293C 60%, #10243A 100%);
}
.img-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(16,36,58,0.30), transparent 55%);
}
.img-placeholder span {
  position: relative; z-index: 1;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(16,36,58,0.60);
  font-family: var(--font-sans);
  line-height: 1.5;
}
.img-placeholder--dark span { color: rgba(247,244,238,0.55); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-editorial), transform var(--dur-slow) var(--ease-editorial);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 44px;
}
.timeline::before {
  content: '';
  position: absolute; left: 6px; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--border-soft);
}
.on-dark .timeline::before { background: var(--border-soft-dark); }
.timeline-item {
  position: relative;
  padding-bottom: 46px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -44px; top: 6px;
  width: 13px; height: 13px;
  border-radius: 50%;
  border: 1px solid var(--gold-muted);
  background: var(--warm-white);
  transition: background var(--dur-med), box-shadow var(--dur-med);
}
.on-dark .timeline-dot { background: var(--navy-deep); }
.timeline-item.is-active .timeline-dot {
  background: var(--gold-champagne);
  box-shadow: 0 0 0 4px rgba(196,164,107,0.18);
}
.timeline-year {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.timeline-text { color: var(--text-muted); font-size: 15.5px; }
.on-dark .timeline-text { color: var(--text-on-dark-muted); }

/* ---------- Story section (2 columns) ---------- */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.story-grid--reverse { direction: rtl; }
.story-grid--reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .story-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .story-grid--reverse { direction: ltr; }
}

.big-quote-standalone {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.3;
  text-align: center;
  max-width: 780px;
  margin: 44px auto 0;
}

/* ---------- Sections: bg variants ---------- */
.bg-ivory { background: var(--ivory); }
.bg-warm { background: var(--warm-white); }
.bg-navy { background: var(--navy-deep); color: var(--text-on-dark); }
.bg-navy .body-lg, .bg-navy p { color: var(--text-on-dark-muted); }

/* ---------- Philosophy section ---------- */
.philosophy {
  padding: 180px 0;
  text-align: center;
  background: var(--navy-deep);
  color: var(--text-on-dark);
}
.philosophy .quote-giant { color: var(--text-on-dark); margin-bottom: 40px; }
.philosophy .body-lg { max-width: 620px; margin: 0 auto; color: var(--text-on-dark-muted); }
.philosophy .body-lg p { margin-bottom: 10px; }

/* ---------- Two values cards ---------- */
.two-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
}
@media (max-width: 900px) { .two-cards { grid-template-columns: minmax(0, 1fr); } }
.value-card {
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
  padding: 52px 44px;
}
.value-card h3 { font-size: 1.5rem; margin-bottom: 20px; }
.value-card ul { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.value-card li { color: var(--text-muted); font-size: 15px; padding-left: 18px; position: relative; }
.value-card li::before { content: '—'; position: absolute; left: 0; color: var(--gold-muted); }
.value-card .flow {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 12.5px; letter-spacing: 0.04em; color: var(--gold-muted);
  text-transform: uppercase; font-weight: 600; margin-bottom: 22px;
}
.upload-slot {
  margin-top: 26px;
  border: 1px dashed var(--border-soft);
  padding: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ---------- BK28 community ---------- */
.brand-statement {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1.35;
  margin: 20px 0 64px;
}
.brand-statement .line-1 { color: var(--gold-champagne); font-size: 0.55em; letter-spacing: 0.1em; display: block; margin-bottom: 10px; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-soft-dark);
  border: 1px solid var(--border-soft-dark);
}
.value-tile {
  background: var(--navy-deep);
  padding: 40px 24px;
  text-align: center;
}
.value-tile h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-champagne);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.value-tile p { font-size: 13.5px; color: var(--text-on-dark-muted); }
@media (max-width: 900px) {
  .value-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
@media (max-width: 560px) {
  .value-grid { grid-template-columns: minmax(0, 1fr); }
}

.trajectory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-soft-dark);
  border: 1px solid var(--border-soft-dark);
}
@media (max-width: 900px) {
  .trajectory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .trajectory-grid { grid-template-columns: minmax(0, 1fr); }
}

.community-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 60px;
}
.community-gallery .img-placeholder { aspect-ratio: 4/3; }
@media (max-width: 700px) { .community-gallery { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

/* ---------- People stories ---------- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
@media (max-width: 900px) { .stories-grid { grid-template-columns: minmax(0, 1fr); max-width: 460px; margin: 0 auto; } }
.story-card {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
}
.story-card .img-placeholder { aspect-ratio: 1/1; }
.story-card img { object-position: center 15%; }
.story-card-body { padding: 32px 28px; }
.story-card-name { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 4px; }
.story-card-role { font-size: 12.5px; color: var(--gold-muted); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.story-card-quote { font-family: var(--font-serif); font-style: italic; color: var(--text-dark); font-size: 1.05rem; margin-bottom: 14px; }
.story-card-text { color: var(--text-muted); font-size: 14.5px; }

/* ---------- Progressive text (Why Amway Today) ---------- */
.progressive {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.progressive p { font-size: 1.05rem; color: var(--text-muted); }
.progressive .arrow { color: var(--gold-muted); font-size: 1.2rem; }

/* ---------- Gratitude letter ---------- */
.letter {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 56px;
  border: 1px solid var(--border-soft);
  background: var(--ivory);
}
@media (max-width: 640px) { .letter { padding: 40px 26px; } }

/* ---------- Final message / CTA ---------- */
.final-cta {
  background: var(--navy-deep);
  color: var(--text-on-dark);
  text-align: center;
  padding: var(--section-pad-y) 0;
}
.final-cta .eyebrow { color: var(--gold-champagne); }
.final-cta .quote-giant { margin: 18px 0 44px; }
.final-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.final-cta-sub { color: var(--text-on-dark-muted); font-size: 14px; letter-spacing: 0.02em; }

/* ---------- Disclaimer ---------- */
.disclaimer {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: var(--text-max);
  margin: 32px auto 0;
  padding: 18px 22px;
  border-left: 2px solid var(--border-soft);
}
.on-dark .disclaimer { color: var(--text-on-dark-muted); border-left-color: var(--border-soft-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-charcoal);
  color: var(--text-on-dark-muted);
  padding: 80px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border-soft-dark);
}
.footer-brand .brand-name { color: var(--text-on-dark); font-size: 1.3rem; }
.footer-brand p { margin-top: 14px; font-size: 14px; max-width: 320px; }
.footer-col h5 {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-champagne); margin-bottom: 18px; font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; transition: color var(--dur-med); }
.footer-col a:hover { color: var(--text-on-dark); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 12.5px; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
}

/* ---------- CTA modal ---------- */
.cta-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(16,36,58,0.62);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-editorial);
  padding: 24px;
}
.cta-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.cta-modal {
  background: var(--warm-white);
  max-width: 420px; width: 100%;
  padding: 48px 40px;
  position: relative;
  transform: translateY(16px);
  transition: transform var(--dur-med) var(--ease-editorial);
}
.cta-modal-overlay.is-open .cta-modal { transform: translateY(0); }
.cta-modal h3 { font-size: 1.6rem; margin-bottom: 10px; }
.cta-modal p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 30px; }
.cta-modal-options { display: flex; flex-direction: column; gap: 14px; }
.cta-modal-option {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border-soft);
  transition: border-color var(--dur-med), background var(--dur-med);
}
.cta-modal-option:hover { border-color: var(--gold-champagne); background: var(--ivory); }
.cta-modal-option strong { display: block; font-size: 14.5px; }
.cta-modal-option span { display: block; font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }
.cta-modal-close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none; width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
}

/* ---------- Why Amway long-form page ---------- */
.editorial-hero {
  background: var(--navy-deep);
  color: var(--text-on-dark);
  padding: 180px 0 90px;
  text-align: center;
}
.editorial-hero .eyebrow { color: var(--gold-champagne); }
.editorial-hero .headline--xl { color: var(--text-on-dark); max-width: 900px; margin: 0 auto 26px; }
.editorial-hero .body-lg { max-width: 560px; margin: 0 auto; color: var(--text-on-dark-muted); }

.editorial-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px var(--pad-x);
}
.editorial-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 70px 0 26px;
}
.editorial-body h2:first-child { margin-top: 0; }
.editorial-body p { color: var(--text-dark); font-size: 1.08rem; line-height: 1.85; margin-bottom: 22px; }
.editorial-body p.muted { color: var(--text-muted); }
.editorial-body .pull-quote {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.35;
  color: var(--navy-deep);
  text-align: center;
  padding: 44px 0;
  margin: 20px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.editorial-body .editorial-figure { margin: 44px 0; }
.editorial-body .editorial-figure .img-placeholder { aspect-ratio: 16/9; }
.editorial-body .editorial-figure figcaption {
  margin-top: 12px; font-size: 12.5px; color: var(--text-muted); text-align: center;
}
.editorial-body .editorial-timeline { margin: 60px 0; }
.editorial-body ul.plain-list { margin: 0 0 22px; padding-left: 20px; list-style: disc; }
.editorial-body ul.plain-list li { color: var(--text-muted); margin-bottom: 6px; }

.back-link-bar {
  padding: 40px var(--pad-x) 100px;
  text-align: center;
}

/* ---------- Photo gallery grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 60px;
}
.gallery-grid > div { aspect-ratio: 4/3; overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 700ms var(--ease-editorial); }
.gallery-grid > div:hover img { transform: scale(1.05); }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}

/* ---------- Misc ---------- */
.divider-line { width: 60px; height: 1px; background: var(--gold-champagne); margin: 0 auto 30px; }
.mt-64 { margin-top: 64px; }
.text-center { text-align: center; }
.small-caps-label {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}
