/* ═══════════════════════════════════════════════════════════════
   GLOBAL BOOK PASSPORT — Main Stylesheet
   Organized: Variables → Reset → Typography → Layout →
              Components → Sections → Responsive
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   GOOGLE FONTS IMPORT
   ───────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ─────────────────────────────────────────────────────────────
   DESIGN TOKENS / CSS VARIABLES
   ───────────────────────────────────────────────────────────── */
:root {
  --bg: #f9f7f4;
  --surface: #ffffff;
  --navy: #1a3550;
  --gold: #b8955a;
  --rust: #8b3a2a;
  --text: #1c1410;
  --text-muted: #6b5a50;
  --border: rgba(28, 20, 16, 0.1);
  --shadow-sm: 0 2px 8px rgba(28, 20, 16, 0.06);
  --shadow-md: 0 4px 20px rgba(28, 20, 16, 0.1);
  --shadow-lg: 0 8px 40px rgba(28, 20, 16, 0.12);
  --radius: 4px;
  --radius-lg: 8px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --transition: 0.2s ease;
  --transition-md: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ─────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ───────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-style: italic;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  color: var(--text-muted);
  max-width: 65ch;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 56ch;
}

strong {
  font-weight: 600;
  color: var(--text);
}

/* ─────────────────────────────────────────────────────────────
   LAYOUT
   ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container--narrow {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

section {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin-inline: auto;
}

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

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

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

/* ─────────────────────────────────────────────────────────────
   FADE-IN ON SCROLL ANIMATION
   ───────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   ANNOUNCEMENT BAR
   ───────────────────────────────────────────────────────────── */
.announcement-bar {
  background-color: var(--navy);
  color: #fff;
  padding: 0.6rem 1.5rem;
  position: relative;
  z-index: 200;
}

.announcement-bar.hidden {
  display: none;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin-inline: auto;
  flex-wrap: wrap;
}

.announcement-bar__text {
  font-size: 0.8rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
}

.announcement-bar__close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem;
  transition: color var(--transition);
}

.announcement-bar__close:hover {
  color: #fff;
}

.announcement-bar__ctas {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.announcement-bar__link {
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  font-weight: 500;
  transition: color var(--transition);
}

.announcement-bar__link:hover {
  color: #fff;
}

.announcement-bar__divider {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

.free-lists-section {
  background-color: var(--bg);
  text-align: center;
  padding: 6rem 0;
}

.free-lists-section h2 {
  margin-bottom: 1rem;
}

.free-lists-section .lead {
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.free-lists__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────── */
.nav {
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin-inline: auto;
  padding: 1rem 1.5rem;
  position: relative;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--navy);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background-color: var(--rust);
  color: #fff;
  border-color: var(--rust);
}

.btn--primary:hover {
  background-color: #7a3225;
  border-color: #7a3225;
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background-color: var(--navy);
  color: #fff;
}

.btn--navy {
  background-color: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn--navy:hover {
  background-color: #142840;
  border-color: #142840;
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background-color: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}

.btn--ghost:hover {
  background-color: var(--bg);
  color: var(--text);
}

.btn--nav {
  background-color: var(--rust);
  color: #fff;
  border-color: var(--rust);
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
}

.btn--nav:hover {
  background-color: #7a3225;
  border-color: #7a3225;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* ─────────────────────────────────────────────────────────────
   IMAGE WRAPPERS — containers hydrated by initSiteAssets()
   ───────────────────────────────────────────────────────────── */

/* Hero image */
.hero__image img,
[data-asset="hero"] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(28, 20, 16, 0.5);
  box-shadow: 0 2px 12px rgba(28, 20, 16, 0.2);
}

/* Feature block images */
.feature-img img,
[data-asset^="feature"] img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Product card cover image — contain preserves full wide thumbnails */
.product-card__image-wrap img {
  width: 100%;
  display: block;
  object-fit: contain;
  aspect-ratio: 4 / 3;
  background-color: var(--bg);
  padding: 1rem 1.25rem 0.75rem;
}

/* Product detail page cover */
.product-detail__cover {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* Blog card images */
.blog-img img,
[data-asset="blog"] img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Gallery item images */
.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
}

/* About page author photo */
.about-img img,
[data-asset="about"] img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

/* How It Works interior preview */
.hiw-img img,
[data-asset="howItWorks"] img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* Freebie preview image */
.freebie-img img,
[data-asset="freebie"] img {
  max-width: 280px;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────────────
   IMAGE PLACEHOLDER SYSTEM
   ───────────────────────────────────────────────────────────── */
.img-ph {
  background-color: #e8e2d9;
  border: 2px dashed #c4b9a8;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  width: 100%;
}

.img-ph__label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  color: #8a7a6d;
  font-weight: 600;
  letter-spacing: 0.05em;
  word-break: break-all;
}

.img-ph__hint {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.65rem;
  color: #a89485;
  font-style: italic;
}

.img-ph--hero {
  aspect-ratio: 4 / 5;
  min-height: 400px;
}

.img-ph--product {
  aspect-ratio: 3 / 4;
}

.img-ph--feature {
  aspect-ratio: 4 / 3;
}

.img-ph--blog {
  aspect-ratio: 16 / 9;
}

.img-ph--gallery {
  aspect-ratio: 1 / 1;
}

.img-ph--freebie {
  aspect-ratio: 4 / 3;
  max-width: 280px;
}

/* ─────────────────────────────────────────────────────────────
   EMAIL FORM
   Replace the form HTML with your provider's embed code.
   ───────────────────────────────────────────────────────────── */
.email-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 480px;
}

.email-form__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  background-color: var(--surface);
  outline: none;
  transition: border-color var(--transition);
}

.email-form__input:focus {
  border-color: var(--gold);
}

.email-form__input::placeholder {
  color: var(--text-muted);
}

.email-form__btn {
  padding: 0.75rem 1.25rem;
  background-color: var(--rust);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color var(--transition);
  border: 2px solid var(--rust);
  cursor: pointer;
}

.email-form__btn:hover {
  background-color: #7a3225;
  border-color: #7a3225;
}

/* Compact variant — announcement bar */
.email-form--compact {
  max-width: 340px;
}

.email-form--compact .email-form__input {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.email-form--compact .email-form__input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.email-form--compact .email-form__btn {
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  background-color: var(--gold);
  border-color: var(--gold);
}

.email-form--compact .email-form__btn:hover {
  background-color: #a07d46;
  border-color: #a07d46;
}

/* Wide variant — section CTAs */
.email-form--wide {
  max-width: 560px;
  margin-inline: auto;
}

.email-form--wide .email-form__input {
  padding: 1rem 1.25rem;
  font-size: 1rem;
}

.email-form--wide .email-form__btn {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
}

/* On dark backgrounds */
.email-form--on-dark .email-form__input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.email-form--on-dark .email-form__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.email-form--on-dark .email-form__input:focus {
  border-color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────── */
.hero {
  padding: 5rem 0 6rem;
  background-color: var(--bg);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.hero__content {
  max-width: 560px;
}

.hero__content h1 {
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.hero__sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 48ch;
}

.hero__badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero__badges span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
}

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

.hero__image {
  display: flex;
  justify-content: flex-end;
}

/* Inner page hero */
.page-hero {
  padding: 5rem 0 4rem;
  background-color: var(--navy);
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  font-style: italic;
  margin-bottom: 1rem;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.75);
  margin-inline: auto;
  max-width: 52ch;
}

.page-hero .eyebrow {
  color: var(--gold);
}

/* ─────────────────────────────────────────────────────────────
   PRODUCT CARDS
   ───────────────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-md), transform var(--transition-md);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
}

.product-card__image-wrap {
  position: relative;
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  z-index: 1;
}

.product-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__subtitle {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
  max-width: none;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.product-card__price {
  display: flex;
  flex-direction: column;
}

.product-card__price-main {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  font-family: var(--font-display);
}

.product-card__price-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Larger shop page variant */
.product-card--large .product-card__body {
  padding: 2rem;
}

.product-card--large .product-card__title {
  font-size: 1.4rem;
}

/* ─────────────────────────────────────────────────────────────
   FEATURED PRODUCT BLOCK (homepage)
   ───────────────────────────────────────────────────────────── */
.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  margin-bottom: 4rem;
}

.featured-product__image-wrap {
  position: relative;
  background-color: var(--bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 1.75rem;
}

.featured-product__image-wrap img {
  width: 100%;
  display: block;
  object-fit: contain;
  max-height: 500px;
}

.featured-product__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  z-index: 1;
}

.featured-product__content {
  padding: 0.5rem 0;
}

.featured-product__subtitle {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
}

.featured-product__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.featured-product__tagline {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.featured-product__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.featured-product__includes li {
  font-size: 0.875rem;
  color: var(--text);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.featured-product__includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  top: 0.1em;
}

.featured-product__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  margin-bottom: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.featured-product__price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.featured-product__price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.featured-product__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────
   REGIONAL LABEL + GRID (homepage, below featured)
   ───────────────────────────────────────────────────────────── */
.regional-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.regional-label .eyebrow {
  flex-shrink: 0;
}

.regional-label p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

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

/* ─────────────────────────────────────────────────────────────
   WHAT IT IS / THREE COLUMNS
   ───────────────────────────────────────────────────────────── */
.what-it-is {
  background-color: var(--surface);
}

.what-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background-color: var(--bg);
}

.what-card__marker {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.what-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.what-card p {
  font-size: 0.9rem;
  max-width: none;
}

.what-it-is__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────────
   AUDIENCE SECTION
   ───────────────────────────────────────────────────────────── */
.audience {
  background-color: var(--bg);
}

.audience__col {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.audience__col h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}

.audience__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.audience__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.audience__list li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.3rem;
}

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS STEPS
   ───────────────────────────────────────────────────────────── */
.steps {
  background-color: var(--surface);
}

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

.step {
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background-color: var(--bg);
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.875rem;
  max-width: none;
}

.steps__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ─────────────────────────────────────────────────────────────
   FEATURE BLOCKS (Alternating image / text)
   ───────────────────────────────────────────────────────────── */
.features {
  background-color: var(--bg);
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-block:last-child {
  border-bottom: none;
}

.feature-block--reverse {
  direction: rtl;
}

.feature-block--reverse > * {
  direction: ltr;
}

.feature-block__content {
  max-width: 480px;
}

.feature-block__content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-block__content p {
  font-size: 1rem;
  line-height: 1.75;
  max-width: none;
}

/* ─────────────────────────────────────────────────────────────
   EMAIL SIGNUP SECTION (dark navy background)
   ───────────────────────────────────────────────────────────── */
.email-section {
  background-color: var(--navy);
  text-align: center;
  padding: 6rem 0;
}

.email-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.email-section .lead {
  color: rgba(255, 255, 255, 0.75);
  margin-inline: auto;
  margin-bottom: 2rem;
}

.email-section__form-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.email-section__note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.75rem;
}

.email-section__freebie {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.email-section__freebie-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
  text-align: center;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────
   BLOG CARDS
   ───────────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-md), transform var(--transition-md);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.blog-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
  max-width: none;
}

.blog-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}

.blog-card__link:hover {
  gap: 0.6rem;
}

/* ─────────────────────────────────────────────────────────────
   GALLERY GRID
   ───────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gallery-item__caption {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────────
   SHOP PAGE
   ───────────────────────────────────────────────────────────── */
.shop-intro {
  background-color: var(--surface);
  padding: 3rem 0 2rem;
  text-align: center;
}

.shop-intro p {
  margin-inline: auto;
}

.shop-filter-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 2.5rem;
}

.shop-filter-note a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────────
   PRODUCT DETAIL PAGE
   ───────────────────────────────────────────────────────────── */
.product-detail {
  padding: 5rem 0;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-detail__sticky {
  position: sticky;
  top: 6rem;
}

.product-detail__meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-detail__subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-detail__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.15;
}

.product-detail__tagline {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: none;
}

.product-detail__price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.product-detail__price-main {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1;
}

.product-detail__price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-detail__includes h4 {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.product-detail__includes ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-detail__includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.product-detail__includes li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.65rem;
  margin-top: 0.35rem;
}

.product-detail__buy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-detail__buy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.product-detail__desc {
  font-size: 1rem;
  line-height: 1.8;
  max-width: none;
}

/* ─────────────────────────────────────────────────────────────
   FAQ ACCORDION
   ───────────────────────────────────────────────────────────── */
.faq-section {
  padding: 5rem 0;
  background-color: var(--surface);
}

.faq-group {
  margin-bottom: 3rem;
}

.faq-group__heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-body);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-of-type {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  width: 100%;
  background: none;
  border: none;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--navy);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform var(--transition), background-color var(--transition),
    border-color var(--transition), color var(--transition);
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
  background-color: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer__inner {
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.9rem;
  max-width: none;
  line-height: 1.75;
}

.contact-block {
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border);
}

.contact-block__heading {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.contact-block__sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--navy);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form__submit {
  display: flex;
}

/* ─────────────────────────────────────────────────────────────
   WHO IT'S FOR TAGS (Product page)
   ───────────────────────────────────────────────────────────── */
.who-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.who-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.who-tag::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
}

/* ─────────────────────────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────────────────────────── */
.about-mission {
  padding: 6rem 0;
}

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

.about-mission__content p {
  max-width: none;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

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

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

.passport-swatch {
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  color: #fff;
  text-decoration: none;
  display: block;
  transition: transform var(--transition-md), box-shadow var(--transition-md);
}

.passport-swatch:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.passport-swatch__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.passport-swatch__price {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ─────────────────────────────────────────────────────────────
   HOW IT WORKS PAGE
   ───────────────────────────────────────────────────────────── */
.hiw-section {
  padding: 5rem 0;
}

.hiw-section--alt {
  background-color: var(--surface);
}

.hiw-step-marker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hiw-step-marker__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hiw-step-marker__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
}

.hiw-section h2 {
  margin-bottom: 1.25rem;
}

.hiw-section p {
  max-width: none;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

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

.use-it-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.use-it-card h4 {
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.use-it-card p {
  font-size: 0.875rem;
  max-width: none;
}

/* ─────────────────────────────────────────────────────────────
   UTILITY / MISC
   ───────────────────────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.not-found {
  text-align: center;
  padding: 8rem 0;
}

.not-found h2 {
  margin-bottom: 1rem;
}

.not-found p {
  margin-inline: auto;
  margin-bottom: 2rem;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.region-pill {
  font-size: 0.75rem;
  color: var(--text-muted);
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
}

.coming-soon {
  text-align: center;
  padding: 3rem;
  font-style: italic;
  color: var(--text-muted);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.footer {
  background-color: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  display: block;
  margin-bottom: 0.4rem;
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  max-width: none;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: #fff;
}

.footer__legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: none;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
   Mobile first — smallest adjustments at top
   ───────────────────────────────────────────────────────────── */

/* ── Up to 600px (mobile) ────────────────────────────── */
@media (max-width: 600px) {
  section {
    padding: 4rem 0;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__image {
    justify-content: center;
    order: -1;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .product-grid,
  .regional-grid,
  .blog-grid,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .featured-product {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
  }

  .featured-product__image-wrap {
    padding: 1.25rem;
  }

  .featured-product__image-wrap img {
    max-height: 320px;
  }

  .featured-product__actions {
    flex-direction: column;
  }

  .featured-product__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .regional-label {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-block {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }

  .feature-block--reverse {
    direction: ltr;
  }

  .about-mission__grid,
  .product-detail__grid {
    grid-template-columns: 1fr;
  }

  .product-detail__sticky {
    position: static;
  }

  .passport-swatches {
    grid-template-columns: repeat(2, 1fr);
  }

  .use-it-grid {
    grid-template-columns: 1fr;
  }

  /* Email form stacks */
  .email-form {
    flex-direction: column;
    max-width: 100%;
  }

  .email-form__input,
  .email-form__btn {
    width: 100%;
  }

  /* Announcement bar */
  .announcement-bar__inner {
    justify-content: flex-start;
    padding-right: 2.5rem;
  }

  .announcement-bar .email-form {
    width: 100%;
    max-width: 100%;
  }

  /* Nav: show hamburger */
  .nav__toggle {
    display: flex;
    margin-left: auto;
  }

  .nav__cta {
    display: none;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    z-index: 99;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    padding: 0.75rem 0;
    width: 100%;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    display: block;
  }

  .nav__links li:last-child a {
    border-bottom: none;
  }

  .footer__nav {
    gap: 1.25rem;
  }
}

/* ── 601px – 900px (tablet) ──────────────────────────── */
@media (min-width: 601px) and (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__image {
    justify-content: center;
    order: -1;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .regional-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-product {
    gap: 3rem;
    padding: 2.5rem;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    direction: ltr;
  }

  .feature-block--reverse {
    direction: ltr;
  }

  .about-mission__grid,
  .product-detail__grid {
    grid-template-columns: 1fr;
  }

  .product-detail__sticky {
    position: static;
  }

  .use-it-grid {
    grid-template-columns: 1fr;
  }

  /* Nav: show hamburger on tablet too */
  .nav__toggle {
    display: flex;
    margin-left: auto;
  }

  .nav__cta {
    display: none;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    z-index: 99;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    display: block;
  }

  .nav__links li:last-child a {
    border-bottom: none;
  }
}

/* ── 901px – 1200px (small desktop) ─────────────────── */
@media (min-width: 901px) and (max-width: 1200px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE SECTIONS 2–8
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   SECTION 2: WHY A BOOK PASSPORT?
   ───────────────────────────────────────────────────────────── */
.why-section {
  background-color: var(--surface);
}

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

.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background-color: var(--bg);
}

.why-card__icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.why-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.875rem;
}

.why-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: none;
  margin: 0;
}

.why-note {
  text-align: center;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: none;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 3: A TRULY GLOBAL SCOPE
   ───────────────────────────────────────────────────────────── */
.scope-section {
  background-color: var(--bg);
}

.scope-subhead {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  margin-inline: auto;
  max-width: 50ch;
}

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

.scope-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-md), transform var(--transition-md);
}

.scope-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.scope-card__stat {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.625rem;
}

.scope-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.scope-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
  margin: 0;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 4: CHOOSE YOUR PASSPORT
   Fully clickable card = <a> as wrapper
   ───────────────────────────────────────────────────────────── */
.choose-section {
  background-color: var(--surface);
}

.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.choose-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  text-decoration: none;
  transition: transform var(--transition-md), box-shadow var(--transition-md);
}

.choose-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Global card — navy, cream text */
.choose-card--global {
  background-color: var(--navy);
  color: #f9f7f4;
  border: 2px solid var(--navy);
}

.choose-card--global .choose-card__label {
  color: var(--gold);
}

.choose-card--global .choose-card__price {
  color: #fff;
}

.choose-card--global .choose-card__meta,
.choose-card--global .choose-card__desc {
  color: rgba(249, 247, 244, 0.75);
}

.choose-card--global .choose-card__list li {
  color: rgba(249, 247, 244, 0.9);
}

.choose-card--global .choose-card__btn {
  background-color: var(--gold);
  color: var(--navy);
}

.choose-card--global .choose-card__btn:hover {
  background-color: #c9a96e;
}

/* Regional card — warm background, navy text */
.choose-card--regional {
  background-color: var(--bg);
  border: 2px solid var(--border);
  color: var(--text);
}

.choose-card--regional .choose-card__label {
  color: var(--gold);
}

.choose-card--regional .choose-card__price {
  color: var(--navy);
}

.choose-card--regional .choose-card__meta,
.choose-card--regional .choose-card__desc {
  color: var(--text-muted);
}

.choose-card--regional .choose-card__list li {
  color: var(--text-muted);
}

.choose-card--regional .choose-card__btn {
  background-color: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.choose-card--regional .choose-card__btn:hover {
  background-color: var(--navy);
  color: #fff;
}

/* Shared card internals */
.choose-card__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.choose-card__price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.choose-card__each {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.7;
}

.choose-card__meta {
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  max-width: none;
}

.choose-card__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: none;
  flex: 1;
}

.choose-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.choose-card__list li {
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: none;
}

.choose-card__list--regions li {
  padding-left: 1rem;
  position: relative;
}

.choose-card__list--regions li::before {
  content: '–';
  position: absolute;
  left: 0;
  opacity: 0.5;
}

.choose-card__btn {
  display: block;
  text-align: center;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  margin-top: auto;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 5: INSIDE THE PASSPORT
   ───────────────────────────────────────────────────────────── */
.inside-section {
  background-color: var(--surface);
}

.inside-subhead {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  margin-inline: auto;
  max-width: 52ch;
}

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

.inside-item {
  display: flex;
  flex-direction: column;
}

.img-ph--inside {
  aspect-ratio: 4 / 3;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-lg);
}

/* When replacing img-ph with real <img> */
.inside-item img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  border: 2px solid rgba(28, 20, 16, 0.5);
  box-shadow: 0 2px 12px rgba(28, 20, 16, 0.2);
}

.inside-item__caption {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.inside-item__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 6: HOW IT WORKS (2×2 grid)
   ───────────────────────────────────────────────────────────── */
.how-section {
  background-color: var(--bg);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.how-box {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.25rem;
}

.how-box__icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.how-box__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.625rem;
}

.how-box__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: none;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 7: WHO IS THIS FOR? (3 columns)
   ───────────────────────────────────────────────────────────── */
.audience-section {
  background-color: var(--surface);
}

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

.audience-col {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.audience-col__icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.audience-col__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}

.audience-col__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: none;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   SECTION 8: FINAL CTA (navy full-width)
   ───────────────────────────────────────────────────────────── */
.final-cta-section {
  background-color: var(--navy);
  text-align: center;
  padding: 7rem 0;
}

.final-cta-section .container--narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-style: italic;
  color: #f9f7f4;
  margin-bottom: 1rem;
}

.final-cta__sub {
  font-size: 1.0625rem;
  color: rgba(249, 247, 244, 0.65);
  margin-bottom: 2.5rem;
  max-width: 44ch;
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.final-cta__or {
  font-size: 0.8rem;
  color: rgba(249, 247, 244, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn--cta-primary {
  display: inline-block;
  background-color: #f9f7f4;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: background-color var(--transition), color var(--transition);
}

.btn--cta-primary:hover {
  background-color: var(--gold);
  color: #fff;
}

.btn--cta-outline {
  display: inline-block;
  background-color: transparent;
  color: rgba(249, 247, 244, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(249, 247, 244, 0.35);
  letter-spacing: 0.02em;
  transition: border-color var(--transition), color var(--transition);
}

.btn--cta-outline:hover {
  border-color: rgba(249, 247, 244, 0.7);
  color: #f9f7f4;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — new sections
   ───────────────────────────────────────────────────────────── */

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  .why-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

  .choose-card {
    padding: 2rem 1.75rem;
  }

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

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

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

  .final-cta-section {
    padding: 5rem 0;
  }

  .btn--cta-primary,
  .btn--cta-outline {
    width: 100%;
    text-align: center;
  }
}

/* Tablet (601px – 900px) */
@media (min-width: 601px) and (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .inside-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
