/* ============================================
   THE CANADIAN JETSETTER — JETSETTER FREE PAGE
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

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

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

:root {
  --red:          #8B0000;
  --red-light:    #a80000;
  --red-glow:     rgba(139, 0, 0, 0.35);
  --black:        #1a0000;
  --card-bg:      #240000;
  --card-hover:   #2d0000;
  --border:       #3d0000;
  --white:        #ffffff;
  --grey-100:     #f5f5f5;
  --grey-400:     #ccbbbb;
  --grey-600:     #7a5555;
  --cream:        #F6F2E7;
  --cream-border: #ddd8ca;
  --cream-card:   #fffcf5;
  --cream-text:   #1a0000;
  --cream-muted:  #6b4a4a;
  --font:         'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ───────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 24px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--red-glow);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* ── TOP NAV ───────────────────────────────── */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 0, 0, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 57px;
  position: relative;
  padding-left: 8px;
}

.nav-logo {
  flex: 1;
  padding-left: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
  max-width: 100%;
  display: block;
  padding: 5px 0;
}

/* Hamburger button */
.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: width 0.2s, transform 0.25s, opacity 0.2s;
}

.nav-hamburger span:nth-child(1) { width: 22px; }
.nav-hamburger span:nth-child(2) { width: 16px; }
.nav-hamburger span:nth-child(3) { width: 22px; }

.nav-hamburger:hover span { background: var(--white); }

/* Animate to X when open */
.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 22px;
}
.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 22px;
}

/* Dropdown menu */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  background: #1a0000;
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  border-radius: 0 0 6px 6px;
  min-width: 220px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  display: none;
}

.nav-dropdown.is-open {
  display: block;
}

.nav-dropdown ul {
  list-style: none;
  padding: 6px 0;
}

.nav-dropdown ul li a {
  display: block;
  padding: 11px 20px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.nav-dropdown ul li a:hover {
  background: rgba(139, 0, 0, 0.35);
  color: var(--white);
  padding-left: 26px;
}

/* ── DESKTOP NAV LINKS ─────────────────────── */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 10;
}

.nav-item--dropdown { position: relative; }

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link--btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-family: inherit;
}

.nav-chevron {
  font-size: 0.6rem;
  transition: transform 0.2s;
}

.nav-link--btn[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #0a0000;
  min-width: 180px;
  border-top: 2px solid var(--red);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  display: none;
  z-index: 110;
}

.nav-submenu.is-open { display: block; }

.nav-submenu a {
  display: block;
  padding: 11px 20px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-submenu a:last-child { border-bottom: none; }

.nav-submenu a:hover {
  background: rgba(139,0,0,0.35);
  color: var(--white);
}

/* Desktop: hide hamburger */
@media (min-width: 769px) {
  .nav-hamburger { display: none; }
}

/* Mobile: hide desktop nav */
@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ── HERO ──────────────────────────────────── */
.hero {
  padding: 80px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url('TCJ Website Assets/icons/Tokyo palace 2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #761915 0%, #000000 100%);
  opacity: 0.5;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  color: #e8e8e8;
  text-transform: uppercase;
}

.hero-location {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-cta-group .btn {
  font-size: 1.1rem;
  padding: 14px 44px;
}

.hero-fine-print {
  font-size: 0.82rem;
  color: var(--white);
}

/* ── SECTION HEADERS ───────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: clamp(1.53rem, 2.975vw, 2.38rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--grey-400);
  max-width: 520px;
  margin: 0 auto;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ── INTRO SECTION ─────────────────────────── */
.intro-section {
  padding: 56px 0;
  background: #2a0000;
}

.intro-section .section-header {
  margin-bottom: 16px;
}

.intro-section .section-header h2 {
  color: var(--cream);
  margin-bottom: 5px;
}

.intro-section .section-header p {
  color: rgba(246,242,231,0.8);
  max-width: 680px;
}

.intro-section .section-divider {
  background: var(--cream);
  opacity: 1;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.stat-box {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.stat-box:hover {
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.stat-box-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Playfair Display', Georgia, serif;
}

.stat-box-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,242,231,0.75);
}

/* ── WHAT'S INCLUDED ───────────────────────── */
.included-section {
  padding: 56px 0;
  background: #F6F2E7;
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}

.included-section .section-header {
  margin-bottom: 32px;
}

.included-section .section-header h2 {
  color: var(--cream-text);
}

.included-section .section-header p {
  color: var(--cream-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--cream-card);
  border: 1px solid var(--cream-border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(139,0,0,0.12);
}

.feature-card-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 20px var(--red-glow);
}

.feature-card-icon svg {
  opacity: 0.9;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--cream-text);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--cream-muted);
  line-height: 1.6;
}

/* ── HOW IT WORKS ──────────────────────────── */
.how-section {
  padding: 56px 0;
  background: #761915;
}

.how-section .section-header {
  margin-bottom: 36px;
}

.how-section .section-header h2 {
  color: var(--cream);
  margin-bottom: 5px;
}

.how-section .section-header p {
  color: rgba(246,242,231,0.8);
}

.how-section .section-divider {
  background: var(--cream);
  opacity: 1;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.4) 100%);
  opacity: 1;
}

.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--cream);
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 32px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.3);
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cream);
}

.step p {
  font-size: 0.92rem;
  color: rgba(246,242,231,0.8);
  line-height: 1.6;
}

/* Step icons: override inline SVG stroke for dark red background */
.how-section .step-icon path,
.how-section .step-icon rect,
.how-section .step-icon line {
  stroke: var(--cream);
}

/* ── COMPARE SECTION ───────────────────────── */
.compare-section {
  padding: 56px 0;
  background: #F6F2E7;
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}

.compare-section .section-header {
  margin-bottom: 36px;
}

.compare-section .section-header h2 {
  color: var(--cream-text);
}

.compare-section .section-header p {
  color: var(--cream-muted);
}

.compare-section .section-divider {
  background: var(--red);
  opacity: 1;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.compare-card {
  background: var(--cream-card);
  border: 2px solid var(--red);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(139,0,0,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.compare-card:hover {
  box-shadow: 0 8px 40px rgba(139,0,0,0.18);
  transform: translateY(-2px);
}

.compare-card-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cream-text);
  letter-spacing: -0.01em;
  font-family: 'Playfair Display', Georgia, serif;
}

.compare-card-price {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.9;
}

.compare-card p {
  font-size: 0.93rem;
  color: var(--cream-muted);
  line-height: 1.6;
}

.compare-card .btn {
  width: 100%;
  font-size: 0.95rem;
  padding: 14px 20px;
  margin-top: auto;
}

/* ── SIGNUP SECTION ────────────────────────── */
.signup-section {
  padding: 45px 0;
  background: transparent;
  text-align: center;
  position: relative;
}

.signup-box {
  background: #000000;
  border: 1px solid #761915;
  border-radius: 8px;
  margin-left: 40px;
  margin-right: 40px;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.signup-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(139,0,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.signup-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
  padding: 0 24px;
}

.signup-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.signup-desc {
  font-size: 1rem;
  color: var(--grey-400);
  margin-bottom: 24px;
  line-height: 1.6;
}

.beehiiv-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 0 10.5px;
  box-sizing: border-box;
}

/* ── TESTIMONIALS ──────────────────────────── */
.testimonials-section {
  padding: 56px 0;
  background: var(--cream);
}

.testimonials-section .section-header {
  margin-bottom: 28px;
}

.testimonials-section .section-header h2 {
  color: var(--cream-text);
  margin-bottom: 5px;
}

.testimonials-section .section-header p {
  color: var(--cream-muted);
}

.testimonials-section .section-divider {
  background: var(--red);
  opacity: 0.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.testimonial-card {
  background: var(--cream-card);
  border: 1px solid var(--cream-border);
  border-radius: 8px;
  padding: 18px 20px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(139,0,0,0.1);
}

.stars {
  color: #c0392b;
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #3a1a1a;
  line-height: 1.55;
  margin-bottom: 12px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── ABOUT ─────────────────────────────────── */
.about-section {
  padding: 56px 0;
  background: #2a0000;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  display: block;
  border: 1px solid var(--border);
}

.about-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--red);
  border-radius: 8px;
  pointer-events: none;
  opacity: 0.5;
}

.about-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.about-content h2 {
  font-size: clamp(1.53rem, 2.55vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}

.about-content p {
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.75;
  line-height: 1.65;
  margin-bottom: 10px;
}

/* ── SOCIAL PROOF BAR ──────────────────────── */
.social-proof-bar {
  background: var(--red);
  padding: 16px 0;
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.social-stat {
  text-align: center;
}

.social-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.social-stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* ── FOOTER ────────────────────────────────── */
footer {
  background: #120000;
  border-top: 1px solid var(--border);
  padding: 28px 0 20px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--cream);
  opacity: 0.55;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s, opacity 0.2s;
}

.footer-nav a:hover {
  color: var(--cream);
  opacity: 1;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.3;
  text-align: center;
}

/* ── STEP ICON ─────────────────────────────── */
.step-icon {
  display: block;
  margin: 0 auto 10px;
  pointer-events: none;
  opacity: 0.8;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    max-width: 340px;
    margin: 0 auto;
  }

  .steps-row::before {
    display: none;
  }

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

@media (max-width: 640px) {
  .steps-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .stats-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .social-proof-inner {
    gap: 32px;
  }

  .signup-box {
    border: none;
    box-shadow: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero {
    padding: 60px 0 72px;
  }

  footer {
    padding: 40px 0 28px;
  }

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

/* ── SOCIAL FOLLOW ─────────────────────────── */
.social-section {
  padding: 60px 0;
  background: #2a0000;
  border-top: 1px solid var(--border);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.social-card {
  display: block;
  text-decoration: none;
}

.social-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.social-card:hover .social-thumb-wrapper {
  border-color: var(--red);
  transform: translateY(-3px);
}

.social-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}

.social-card:hover .social-thumb-wrapper img {
  opacity: 0.85;
}

.social-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 1.5rem;
  color: white;
  background: rgba(139, 0, 0, 0.8);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-follow-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--black);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto 36px;
  }

  .stats-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  .stat-box {
    flex: 1 !important;
    min-width: 0 !important;
    text-align: center !important;
    font-size: 0.8rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .stat-box-number {
    font-size: 1.4rem !important;
  }

  .stat-box-label {
    font-size: 0.6rem !important;
  }

  .testimonials-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 16px !important;
    padding-bottom: 10px !important;
  }

  .testimonial-card {
    flex: 0 0 80vw !important;
    min-width: 80vw !important;
    scroll-snap-align: start !important;
  }

  /* ── Beehiiv embed fix ── */
  .signup-box {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .signup-section .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .beehiiv-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    box-sizing: border-box !important;
    padding: 0 !important;
  }

  .beehiiv-wrapper center,
  .beehiiv-wrapper iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 640px) {
  .social-follow-ctas {
    flex-direction: column;
    align-items: center;
  }

  .social-follow-ctas .btn {
    width: 100%;
    max-width: 340px;
    text-align: center;
  }
}

/* ── Mobile OFFERINGS sub-dropdown ──────────── */
.mobile-offerings-btn {
  display: block;
  width: 100%;
  padding: 11px 20px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.mobile-offerings-btn:hover {
  background: rgba(139, 0, 0, 0.35);
  color: var(--white);
  padding-left: 26px;
}
.mobile-offerings-arrow {
  display: inline-block;
  float: right;
  transition: transform 0.3s ease;
}
.mobile-offerings-btn[aria-expanded="true"] .mobile-offerings-arrow {
  transform: rotate(90deg);
}
.mobile-offerings-sub {
  list-style: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.15);
}
.mobile-offerings-sub.is-open {
  max-height: 300px;
}
.mobile-offerings-sub li a {
  padding-left: 32px;
}

@media (max-width: 768px) {
  .desktop-only { display: none; }
}
