/* ============================================
   THE CANADIAN JETSETTER — HOMEPAGE
   ============================================ */
@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-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;
  overflow-x: hidden;
}

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

.section-cta {
  text-align: center;
  margin-top: 36px;
}

.blog-section .section-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.blog-section .section-cta .btn {
  display: block;
  margin: 0 auto;
}

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

.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: 560px;
  margin: 0 auto;
}

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

/* ── 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, color 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-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

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

.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: 2px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 57px;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

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

/* Center nav links absolutely so they sit in the true middle */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
  padding: 4px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: center;
}

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

/* OFFERINGS dropdown trigger (button styled as link) */
.nav-item--dropdown {
  position: relative;
}

.nav-link--btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 5px;
}

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

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

/* Submenu */
.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a0000;
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  border-radius: 0 0 6px 6px;
  min-width: 210px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  display: none;
  padding: 6px 0;
}

.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.1em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

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

/* Hamburger — hidden on desktop, shown on mobile */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  margin-left: auto;
}

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

/* Mobile dropdown menu — hidden by default */
.nav-mobile-menu {
  display: none;
  background: #0a0000;
  border-top: 2px solid var(--red);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}

.nav-mobile-menu.is-open { display: block; }

.nav-mobile-menu a {
  display: block;
  padding: 13px 24px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

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

.nav-mobile-menu a:hover {
  background: rgba(139, 0, 0, 0.35);
  color: var(--white);
  padding-left: 32px;
}

/* ── HERO ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Carousel container — fills the hero completely */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* The scrolling row of images */
.hero-carousel-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: hero-scroll 36s linear infinite;
}

.hero-carousel-track img {
  width: 225px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
}

@keyframes hero-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Gradient overlay above carousel */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #761915 0%, #000000 100%);
  opacity: 0.5;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #e8e8e8;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white);
  opacity: 0.85;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hero-cta-group .btn {
  font-size: 0.787rem;
  padding: 10px 25px;
  border-radius: 50px;
  background-color: rgba(139, 0, 0, 0.4) !important;
  border: 2px solid #8B0000 !important;
  color: #FFFFFF !important;
  backdrop-filter: blur(2px) !important;
  transition: background-color 0.2s ease !important;
}

.hero-cta-group .btn:hover {
  background-color: rgba(139, 0, 0, 0.65) !important;
  transition: background-color 0.2s ease !important;
}

.hero-cta-group .btn:active {
  background-color: rgba(139, 0, 0, 1) !important;
}

/* ── AS SEEN IN BAR ────────────────────────── */
.press-bar {
  background: var(--cream);
  padding: 14px 0;
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}

.press-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.press-bar-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  white-space: nowrap;
}

.press-bar-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.press-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.press-logo:hover { opacity: 1; }

.press-logo--global { height: 80px; }

/* ── PAST ECONOMY DEALS ────────────────────── */
.deals-section {
  padding: 60px 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: #2a0000;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden !important;
}

/* Airplane window frames — drag-scroll row */
.window-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100vw !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.window-row::-webkit-scrollbar { display: none; }

.window-row.is-grabbing { cursor: grabbing; }

.window-card-link {
  flex: 0 0 225px;
  width: 225px;
  display: block;
  text-decoration: none;
  cursor: inherit;
  transition: opacity 0.2s ease;
}

.window-row:not(.is-grabbing) .window-card-link:hover {
  opacity: 0.85;
}

.window-card {
  width: 225px;
  height: 300px;
  border-radius: 45% / 35%;
  overflow: hidden;
  border: 15px solid #2a2a2a;
  box-shadow: inset 0 0 0 5px #666, 0 4px 15px rgba(0,0,0,0.4);
  position: relative;
  background: #240000;
}

.window-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
  pointer-events: none;
  -webkit-user-drag: none;
}

.window-row:not(.is-grabbing) .window-card-link:hover .window-card img {
  transform: scale(1.04);
}

.window-card-label {
  display: none;
}

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

.deal-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-color: var(--red);
}

.deal-card-body {
  padding: 18px 20px;
}

.deal-price {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Playfair Display', Georgia, serif;
}

.deal-route {
  font-size: 0.95rem;
  color: var(--grey-400);
  line-height: 1.4;
}

/* ── OUR OFFERINGS ─────────────────────────── */
.offerings-section {
  padding: 60px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.offerings-section .container {
  max-width: 1300px !important;
  width: 1300px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

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

.offering-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  min-width: 0; /* prevent grid blowout from large intrinsic image width */
  transition: border-color 0.2s, box-shadow 0.2s;
}

.offering-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  min-width: 0;
}

@media (min-width: 769px) {
  .offering-img { height: 450px; }
}

.offerings-premium-desc {
  text-align: center;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.offering-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 40px rgba(139,0,0,0.15);
}

.offering-body {
  padding: 24px 28px;
}

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

.offering-desc {
  font-size: 0.97rem;
  color: var(--grey-400);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ── LATEST FROM THE BLOG ──────────────────── */
.blog-section {
  padding: 15px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.blog-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.blog-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--grey-400);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.blog-read-more {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  align-self: flex-start;
}

.blog-read-more:hover {
  color: var(--red-light);
}

/* ── BLOG EXPANDING CARDS ──────────────────── */
.blog-exp-row {
  display: flex;
  gap: 12px;
  height: 420px;
}

.blog-exp-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  flex: 0 0 80px;
  cursor: pointer;
  transition: flex 0.4s ease;
}

.blog-exp-card.is-active {
  flex: 1;
  cursor: default;
}

.blog-exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.15) 100%);
}

.blog-exp-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  opacity: 0;
  transition: opacity 0.3s ease 0.15s;
  pointer-events: none;
}

.blog-exp-card.is-active .blog-exp-content {
  opacity: 1;
  pointer-events: auto;
}

.blog-exp-date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}

.blog-exp-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 8px;
}

.blog-exp-excerpt {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 14px;
}

.blog-exp-read-more {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.blog-exp-read-more:hover {
  color: var(--cream);
  border-color: var(--cream);
}

/* ── FREE NEWSLETTER ───────────────────────── */
.newsletter-section {
  padding: 45px 0;
  background: #2a0000;
  text-align: center;
  position: relative;
}

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

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

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

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

.newsletter-desc {
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.7;
  line-height: 1.65;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  max-width: 380px;
  padding: 15px 20px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(246,242,231,0.4);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.09);
}

.newsletter-stat {
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.6;
}

.newsletter-stat strong {
  color: var(--cream);
  opacity: 1;
}


/* ── YOUTUBE SECTION ───────────────────────── */
.youtube-section {
  padding: 36px 0;
  background: #2a0000;
  border-top: 1px solid var(--border);
}

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

.youtube-section > .container > p {
  font-size: 1.05rem;
  color: var(--grey-400);
  text-align: center;
  margin-bottom: 0;
}

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

.youtube-card {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

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

.youtube-thumb-wrapper {
  position: relative;
  width: 100%;
}

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

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  background: rgba(139, 0, 0, 0.8);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  padding-left: 4px; /* optical center for play triangle */
}

.youtube-card:hover img {
  opacity: 0.8;
}

.youtube-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.youtube-section .btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

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

/* ── SOCIAL FOLLOW ─────────────────────────── */
.social-section {
  padding: 60px 0;
  background: #120000;
  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;
}

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

.about-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 56px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  border: 2px solid #761915;
  display: block;
}

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

.about-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--white);
}

.about-content p {
  font-size: 1rem;
  color: var(--grey-400);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-content .btn {
  margin-top: 8px;
}

/* ── 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: 768px) {
  /* beehiiv embed mobile fix */
  .beehiiv-wrapper {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }
  .beehiiv-wrapper iframe {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .newsletter-section,
  .newsletter-box,
  .newsletter-inner,
  .newsletter-section .container {
    max-width: none !important;
  }

  /* Switch nav to hamburger */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* As Seen In — mobile */
  .press-bar {
    padding: 10px 0;
  }

  .press-bar .container {
    gap: 10px;
  }

  .press-bar-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .press-logo {
    max-width: 25vw;
    height: auto;
    object-fit: contain;
  }

  .press-logo--global {
    max-width: 25vw;
    height: auto;
  }

  /* Hero section */
  .hero {
    width: 100vw !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  /* Hero content container — remove side padding so buttons have full width */
  .hero-content {
    width: 100vw !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Hero button container */
  .hero-cta-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* Hero buttons */
  .hero-cta-group a,
  .hero-cta-group button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30% !important;
    min-width: unset !important;
    max-width: 30% !important;
    min-height: 50px !important;
    font-size: 0.66rem !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: center !important;
    line-height: 1.3 !important;
    border-radius: 50px !important;
    box-sizing: border-box !important;
  }

  /* ── BLOG EXPANDING CARDS — mobile collapsed width ── */
  .blog-exp-card {
    flex: 0 0 40px !important;
    width: 40px !important;
    min-width: 40px !important;
  }

  .blog-exp-card.is-active {
    flex: 1 !important;
  }

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

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

  .deals-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .offerings-section .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .offerings-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: scroll !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 16px !important;
    padding: 0 16px !important;
    cursor: grab !important;
  }

  .offerings-grid::-webkit-scrollbar { display: none; }

  .offerings-grid .offering-card {
    flex: 0 0 78vw !important;
    min-width: 78vw !important;
    scroll-snap-align: start !important;
    flex-shrink: 0 !important;
  }

  .offerings-grid .offering-img {
    height: 375px;
  }

  .offerings-premium-desc {
    padding: 0 24px;
    text-align: center;
  }

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

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

  .hero {
    min-height: 420px;
  }

}

@media (max-width: 640px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

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

  .social-follow-ctas {
    flex-direction: column;
    align-items: center;
  }

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

  .press-bar .container {
    flex-direction: column;
    gap: 16px;
  }

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

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input[type="email"] {
    width: 100%;
    max-width: 100%;
  }

  footer {
    padding: 40px 0 28px;
  }
}

/* ── Mobile OFFERINGS sub-dropdown ──────────── */
.mobile-offerings-btn {
  display: block;
  width: 100%;
  padding: 13px 24px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--cream);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  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: 32px;
}
.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 {
  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 a {
  padding-left: 36px !important;
}

/* ── TCJ LATEST ACCORDION — hard override ──────────────────────────── */
#tcj-latest-accordion {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  height: 420px !important;
  width: 100% !important;
}

#tcj-latest-accordion > div {
  flex-direction: row !important;
  flex-shrink: 0 !important;
}

@media screen and (min-width: 0px) {
  #tcj-latest-accordion {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    height: 420px !important;
    gap: 12px !important;
    width: 100% !important;
  }
  #tcj-latest-accordion > div.panel {
    flex-shrink: 0 !important;
    flex-direction: row !important;
    min-width: 70px !important;
    height: 420px !important;
    display: block !important;
  }
  #tcj-latest-accordion > div.panel.open {
    flex: 1 !important;
  }
}
