/* ============================================
   THE CANADIAN JETSETTER
   Points Handbook, Product 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;500;600;700;800;900&display=swap');

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

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

:root {
  --red:          #761915;
  --red-light:    #8f1f1a;
  --red-glow:     rgba(118, 25, 21, 0.35);
  --economy-red:       #8B0000;
  --economy-red-light: #a80000;
  --economy-glow:      rgba(139, 0, 0, 0.35);
  --black:        #1a0000;
  --card-bg:      #240000;
  --border:       #3d0000;
  --white:        #ffffff;
  --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;
}

/* ── 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);
}

/* ── 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;
}

.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); }

.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;
}

.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(118, 25, 21, 0.35);
  color: var(--white);
  padding-left: 26px;
}

.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(118, 25, 21, 0.35);
  color: var(--white);
}

.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(118, 25, 21, 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 (min-width: 769px) {
  .nav-hamburger { display: none; }
}

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

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

.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;
}

/* ── HERO ──────────────────────────────────── */
.handbook-hero {
  background: linear-gradient(160deg, #500000 0%, #1a0000 70%);
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}

.handbook-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 40%, rgba(118, 25, 21, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.handbook-hero .container {
  position: relative;
  z-index: 2;
}

.handbook-hero-inner {
  display: grid;
  grid-template-columns: 490px 1fr;
  gap: 56px;
  align-items: center;
}

.handbook-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 242, 231, 0.75);
  margin-bottom: 16px;
}

.handbook-hero-content h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 16px;
}

.handbook-hero-subhead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(246, 242, 231, 0.8);
  max-width: 480px;
  margin-bottom: 32px;
}

.handbook-countdown {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 6px;
  margin-bottom: 34px;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(240, 180, 41, 0.35);
  border-radius: 14px;
  padding: 14px 26px;
}

.handbook-countdown-label {
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 242, 231, 0.75);
}

.handbook-countdown-timer {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #F0B429;
  font-variant-numeric: tabular-nums;
}

.handbook-countdown.is-ended .handbook-countdown-timer {
  font-family: inherit;
  color: rgba(246, 242, 231, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.handbook-price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.handbook-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
}

.handbook-price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: #F0B429;
}

.handbook-price-note {
  font-size: 0.9rem;
  color: rgba(246, 242, 231, 0.6);
}

/* ── LIMITED-TIME PROMO ───────────────────── */
.promo-old-price {
  opacity: 0.55;
  font-weight: inherit;
  text-decoration-thickness: 2px;
}

.promo-new-price {
  color: #F0B429;
  font-weight: 800;
}

.promo-new-price--onlight {
  color: #8B5E00;
}

.promo-badge {
  display: inline-block;
  font-size: 0.9em;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #F0B429;
}

.promo-badge--onlight {
  color: #8B5E00;
}

.handbook-hero-content .btn {
  font-size: 1.1rem;
  padding: 18px 44px;
}

.handbook-hero-image-wrap {
  text-align: center;
}

.handbook-hero-image-wrap img {
  max-width: 100%;
  width: 100%;
}

@media (max-width: 900px) {
  .handbook-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .handbook-hero-content {
    order: 2;
  }

  .handbook-hero-image-wrap {
    order: 1;
    max-width: 320px;
    margin: 0 auto;
  }

  .handbook-hero-subhead {
    margin-left: auto;
    margin-right: auto;
  }

  .handbook-countdown {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
    margin-bottom: 30px;
    padding: 14px 22px;
  }

  .handbook-price-block {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .handbook-price {
    font-size: 3.4rem;
  }

  .handbook-price-currency {
    font-size: 1.6rem;
  }

  .handbook-price-note {
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .handbook-hero {
    padding: 56px 0;
  }

  .handbook-countdown-timer {
    font-size: 1.5rem;
  }
}

/* ── ECONOMY UPSELL ────────────────────────── */
.economy-upsell-section {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--black);
  background-image: url('TCJ Website Assets/icons/Link page banner 2.jpg');
  background-size: 300px auto;
  background-position: center;
  background-repeat: repeat;
}

.economy-upsell-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(118, 25, 21, 0.35) 0%, rgba(26, 0, 0, 0.5) 100%);
}

.economy-upsell-section .container {
  position: relative;
  z-index: 2;
}

.economy-upsell-card {
  max-width: 1052px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--economy-red);
  border-radius: 14px;
  padding: 32px 48px;
  box-shadow: 0 0 60px rgba(139, 0, 0, 0.22);
}

.economy-upsell-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}

.economy-upsell-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--economy-red-light);
  margin-bottom: 10px;
}

.economy-upsell-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 14px;
}

.economy-upsell-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--grey-400);
  margin: 0;
}

.economy-upsell-aside {
  text-align: center;
}

.economy-upsell-callout {
  background: rgba(139, 0, 0, 0.16);
  border: 1px solid rgba(139, 0, 0, 0.4);
  border-radius: 8px;
  padding: 16px 22px;
  margin-bottom: 20px;
}

.economy-upsell-callout p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--cream);
  margin: 0;
}

.economy-upsell-callout strong {
  color: var(--white);
  font-weight: 800;
}

.economy-upsell-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

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

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

.economy-upsell-secondary-link {
  font-size: 0.88rem;
  color: var(--grey-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.economy-upsell-secondary-link:hover {
  color: var(--cream);
}

@media (max-width: 900px) {
  .economy-upsell-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .economy-upsell-body {
    margin: 0 auto;
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  .economy-upsell-section {
    padding: 32px 0;
  }

  .economy-upsell-card {
    padding: 32px 24px;
  }
}

/* ── WHAT'S INSIDE ─────────────────────────── */
.inside-section {
  padding: 64px 0;
  background: var(--cream);
}

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

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

.inside-section .section-divider {
  opacity: 0.6;
}

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

/* Flip card: .inside-card is the clickable button and perspective
   wrapper; .inside-card-inner carries the rotateY flip; each
   .inside-card-face holds the actual box look (bg/border/radius/
   shadow) so front and back are always the same size and styling. */
.inside-card {
  display: block;
  width: 100%;
  height: 160px;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  perspective: 1200px;
  transition: transform 0.2s ease;
}

.inside-card-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}

.inside-card.is-flipped .inside-card-inner {
  transform: rotateY(180deg);
}

.inside-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--red) 0%, var(--card-bg) 100%);
  border: 2px solid var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(118, 25, 21, 0.08);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: box-shadow 0.2s;
  text-align: center;
}

.inside-card:hover .inside-card-face {
  box-shadow: 0 0 44px rgba(118, 25, 21, 0.16);
}

.inside-card-face--back {
  transform: rotateY(180deg);
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.inside-card-emoji {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.inside-card-face--front h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
  margin: 0;
}

.inside-card-hint {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  opacity: 0.65;
}

.inside-card-face--back p {
  font-size: 0.95rem;
  color: var(--grey-400);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .inside-grid {
    grid-template-columns: 1fr;
  }
}

/* Desktop-only hover lift; scoped to true hover + fine pointer so it
   never fires on tap/touch. Lives on .inside-card (the outer perspective
   wrapper), not .inside-card-inner, so it can't fight the flip rotateY. */
@media (hover: hover) and (pointer: fine) {
  .inside-card:hover {
    transform: translateY(-5px) scale(1.02);
  }

  .inside-card:hover .inside-card-face {
    box-shadow: 0 0 40px rgba(118, 25, 21, 0.22);
  }
}

/* ── WHY THIS GUIDE ────────────────────────── */
.why-guide-section {
  padding: 64px 0;
  background: #2a0000;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-guide-section .section-header h2 {
  color: var(--white);
}

.why-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-guide-card {
  text-align: center;
  padding: 8px 16px;
}

.why-guide-number {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 auto 16px;
  box-shadow: 0 0 32px var(--red-glow);
}

.why-guide-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.why-guide-card p {
  font-size: 0.95rem;
  color: var(--grey-400);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .why-guide-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ── CHECKOUT SECTION ──────────────────────── */
.checkout-section {
  padding: 64px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 80px;
}

.checkout-inner {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 56px;
  align-items: center;
}

.checkout-image-wrap {
  text-align: center;
}

.checkout-product-image {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.checkout-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.checkout-content .section-header {
  text-align: left;
  margin-bottom: 48px;
}

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

.checkout-content .section-header p {
  color: var(--cream-muted);
  line-height: 1.65;
  margin: 0 0 10px;
  max-width: none;
}

.checkout-content .section-header p:last-of-type {
  margin-bottom: 0;
}

.checkout-content .section-divider {
  opacity: 0.6;
  margin: 20px 0 0;
}

.checkout-product-btn {
  font-size: 1.1rem;
  padding: 18px 72px;
}

.checkout-fine-print {
  font-size: 0.9rem;
  color: var(--cream-muted);
  margin-top: 14px;
}

.mobile-only-break {
  display: none;
}

@media (max-width: 900px) {
  .checkout-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .checkout-content {
    order: 2;
    align-items: center;
  }

  .checkout-image-wrap {
    order: 1;
    max-width: 360px;
    margin: 0 auto;
  }

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

  .checkout-content .section-header p {
    margin: 0 auto 10px;
    max-width: 520px;
  }

  .checkout-content .section-divider {
    margin: 20px auto 0;
  }

  .mobile-only-break {
    display: inline;
  }
}

/* ── FAQ ACCORDION ─────────────────────────── */
.faq-section {
  padding: 60px 0;
  background: #1a0000;
  border-top: 1px solid var(--border);
}

.faq-section .section-header h2 {
  color: var(--white);
}

.faq-section .section-divider {
  background: var(--red);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

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

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  text-align: left;
  transition: color 0.15s;
}

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

.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
  transition: transform 0.25s ease;
  width: 24px;
  text-align: center;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.25s ease;
  padding: 0;
}

.faq-answer p {
  font-size: 0.97rem;
  color: rgba(246, 242, 231, 0.7);
  line-height: 1.7;
  padding-bottom: 20px;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding-top: 2px;
}

/* ── ABOUT ─────────────────────────────────── */
.about-section {
  padding: 34px 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;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-content {
    text-align: center;
  }
}

/* ── SOCIAL PROOF BAR ──────────────────────── */
.social-proof-bar {
  background: #8B0000;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  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.65);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .social-proof-inner { gap: 32px; }
}

/* ── STICKY CTA ────────────────────────────── */
.sticky-cta {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop: fixed left card */
.sticky-cta-card {
  display: none;
}

.sticky-cta-bar {
  display: none;
}

@media (min-width: 769px) {
  .sticky-cta {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
  }

  .sticky-cta-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #761915;
    color: #F6F2E7;
    border-radius: 10px;
    padding: 18px 16px;
    width: 185px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
  }

  .sticky-cta-label {
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(246, 242, 231, 0.85);
    margin: 0;
    text-align: center;
  }

  .sticky-cta-sublabel {
    font-family: var(--font);
    font-size: 0.68rem;
    color: rgba(246, 242, 231, 0.75);
    text-align: center;
    line-height: 1.4;
    margin: 4px 0 6px;
  }

  .sticky-cta-btn {
    display: block;
    background: #F6F2E7;
    color: #761915;
    font-family: var(--font);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 4px;
    padding: 8px 8px;
    text-align: center;
    transition: background 0.15s, transform 0.15s;
  }

  .sticky-cta-btn:hover {
    background: #ffffff;
    transform: translateY(-1px);
  }
}

/* Mobile: fixed bottom bar */
@media (max-width: 768px) {
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
  }

  .sticky-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #761915;
    padding: 18px 20px;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .sticky-cta-bar-text {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(246, 242, 231, 0.9);
    flex: 1;
  }

  .sticky-cta-bar .sticky-cta-btn {
    display: inline-block;
    background: #F6F2E7;
    color: #761915;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    padding: 13px 20px;
    white-space: nowrap;
    transition: background 0.15s;
  }

  .sticky-cta-bar .sticky-cta-btn:hover {
    background: #ffffff;
  }

  /* Prevent content hiding behind the bar */
  body {
    padding-bottom: 62px;
  }
}

/* ── 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;
}

@media (max-width: 640px) {
  footer {
    padding: 40px 0 28px;
  }

  .footer-nav {
    gap: 20px;
  }
}
