/* ============================================================
   IPL Fantasy Club - L11 DARK SPLIT-SCREEN
   Palette: Indigo #3D348B + Sunset orange #F26430 + Off-white #F5F5F0
   Fonts: Plus Jakarta Sans + Bodoni Moda + JetBrains Mono
   ============================================================ */

:root {
  /* Primary palette */
  --indigo: #3D348B;
  --indigo-deep: #211951;
  --indigo-soft: #6B5BB6;
  --sunset: #F26430;
  --sunset-deep: #C84B1F;
  --sunset-soft: #FF9F73;
  --offwhite: #F5F5F0;
  --offwhite-2: #EAE9DE;
  --ink: #0F0F1A;
  --ink-2: #1A1A2E;
  --gold: #C9A227;
  --brass: #8B6E2D;

  /* Surfaces */
  --bg-page: var(--offwhite);
  --bg-card: #FFFFFF;
  --bg-card-dark: #16162A;
  --bg-deep: var(--indigo-deep);
  --bg-deep-2: #0E0B1F;

  /* Text */
  --text: var(--ink);
  --text-muted: #5C5C70;
  --text-on-dark: var(--offwhite);
  --text-on-dark-muted: #B8B6C9;

  /* Borders */
  --border: rgba(61, 52, 139, 0.18);
  --border-dark: rgba(245, 245, 240, 0.14);
  --border-sunset: rgba(242, 100, 48, 0.35);

  /* Type */
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Sizes */
  --radius: 0px;          /* sharp edges for editorial split-screen */
  --radius-sm: 2px;
  --radius-lg: 0px;
  --shadow: 4px 4px 0 var(--ink);
  --shadow-card: 6px 6px 0 rgba(15, 15, 26, 0.85);
  --shadow-sunset: 4px 4px 0 var(--sunset);

  /* Layout */
  --container: 1280px;
  --container-narrow: 980px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-page);
  padding-top: calc(64px + env(safe-area-inset-top, 0px));
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--indigo); text-decoration: none; }
a:hover { color: var(--sunset); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 900; }
h2 { font-size: clamp(26px, 3.4vw, 38px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
h4 { font-size: 18px; font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.02em; }

p { margin: 0 0 16px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sunset);
  border: 2px solid var(--sunset);
  padding: 4px 10px;
  background: var(--offwhite);
}
.eyebrow.on-dark { background: transparent; color: var(--sunset-soft); border-color: var(--sunset-soft); }

.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================================
   L11 SPLIT-SCREEN BAND — signature L11 element
   50/50 split with indigo left + sunset right
   ============================================================ */
.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.split-band .split-left {
  background: var(--indigo);
  color: var(--offwhite);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 2px solid var(--ink);
}
.split-band .split-right {
  background: var(--sunset);
  color: var(--ink);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-band h2 { color: inherit; margin-bottom: 12px; }
.split-band p { font-size: 16px; margin: 0 0 12px; opacity: 0.95; }
.split-band .split-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.7;
}
.split-band .btn-sunset, .split-band .btn-ink {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid currentColor;
  align-self: flex-start;
}
.split-band .btn-sunset { color: var(--ink); background: var(--offwhite); }
.split-band .btn-ink { color: var(--offwhite); background: var(--ink); }

@media (max-width: 760px) {
  .split-band { grid-template-columns: 1fr; }
  .split-band .split-left { border-right: 0; border-bottom: 2px solid var(--ink); padding: 32px 20px; }
  .split-band .split-right { padding: 32px 20px; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--ink);
  color: var(--offwhite);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid var(--sunset);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.top-bar a { color: var(--sunset-soft); }
.top-bar a:hover { color: var(--offwhite); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 250;
  background: var(--offwhite);
  border-bottom: 3px solid var(--ink);
  padding-top: env(safe-area-inset-top, 0px);
}
.site-header.scrolled { background: var(--offwhite); box-shadow: 0 2px 0 var(--ink); }
.site-header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  background: var(--indigo);
  color: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  border: 2px solid var(--ink);
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sunset);
  margin-top: 4px;
}

.main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 8px 10px;
  text-decoration: none;
  border-radius: var(--radius-sm);
}
.main-nav a:hover { background: var(--indigo); color: var(--offwhite); }
.main-nav a.cta {
  background: var(--sunset);
  color: var(--offwhite);
  border: 2px solid var(--ink);
  padding: 8px 14px;
  margin-left: 8px;
}
.main-nav a.cta:hover { background: var(--sunset-deep); color: var(--offwhite); }

.header-right {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header-cta-ghost {
  padding: 8px 14px;
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.header-cta-ghost:hover { background: var(--ink); color: var(--offwhite); }
.header-cta {
  padding: 10px 18px;
  background: var(--sunset);
  color: var(--offwhite);
  border: 2px solid var(--ink);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.header-cta:hover { background: var(--sunset-deep); color: var(--offwhite); }

.hamburger {
  display: none;
  z-index: 300;
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--ink);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: 0.2s;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 320px;
  height: 100dvh;
  background: var(--ink);
  color: var(--offwhite);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 80px 24px 24px;
  border-left: 3px solid var(--sunset);
  overflow-y: auto;
}
.mobile-drawer.open, .mobile-drawer.is-open {
  transform: translateX(0);
}
.mobile-drawer a {
  display: block;
  color: var(--offwhite);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245, 245, 240, 0.12);
  text-decoration: none;
}
.mobile-drawer a.cta {
  background: var(--sunset);
  color: var(--offwhite);
  margin-top: 16px;
  padding: 14px;
  text-align: center;
  border: 2px solid var(--offwhite);
  border-bottom: 2px solid var(--offwhite);
}

@media (max-width: 960px) {
  .main-nav { display: none !important; }
  .header-cta-ghost { display: none !important; }
  .header-cta { display: none !important; }
  .hamburger { display: flex !important; }
}

/* ============================================================
   HERO — split-screen signature L11
   ============================================================ */
.band { padding: 56px 0; }
.band-elev-1 { background: var(--offwhite); }
.band-elev-2 { background: var(--offwhite-2); }
.band-dark { background: var(--ink); color: var(--offwhite); }
.band-dark h1, .band-dark h2, .band-dark h3 { color: var(--offwhite); }
.band-indigo { background: var(--indigo); color: var(--offwhite); }
.band-indigo h1, .band-indigo h2, .band-indigo h3 { color: var(--offwhite); }

#hero {
  background: var(--offwhite);
  padding: 0;
  border-bottom: 4px solid var(--ink);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.hero-left {
  background: var(--indigo);
  color: var(--offwhite);
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-left::before {
  content: "FC";
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 900;
  color: var(--sunset);
  opacity: 0.4;
  line-height: 1;
}
.hero-right {
  background: var(--sunset);
  color: var(--ink);
  padding: 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mix-blend-mode: multiply;
}
.hero-right .hero-overlay {
  position: relative;
  z-index: 2;
}
#hero-h {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--offwhite);
}
.hero-lede {
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 460px;
  opacity: 0.92;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--sunset);
  color: var(--ink);
  padding: 14px 26px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); color: var(--ink); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--offwhite);
  padding: 14px 26px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid var(--offwhite);
  text-decoration: none;
}
.btn-secondary:hover { background: var(--offwhite); color: var(--ink); }
.hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--sunset-soft);
}
.hero-stat-row {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 2px solid rgba(245, 245, 240, 0.2);
  flex-wrap: wrap;
}
.hero-stat {
  flex: 1;
  min-width: 90px;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--sunset-soft);
  line-height: 1;
}
.hero-stat .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 6px;
}

/* Hero right pane */
.hero-right h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.05;
}
.hero-right p {
  font-size: 16px;
  color: var(--ink);
  max-width: 420px;
  margin-bottom: 24px;
}
.hero-right .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.hero-right .pill {
  background: var(--ink);
  color: var(--offwhite);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 2px solid var(--ink);
}

/* Mobile hero cap (Rule 20) */
@media (max-width: 899px) {
  #hero { max-height: 720px !important; min-height: 480px !important; overflow: hidden !important; padding: 32px 20px !important; }
  .hero-grid { grid-template-columns: 1fr !important; min-height: auto !important; max-height: 656px !important; gap: 16px !important; }
  .hero-left, .hero-right { padding: 20px !important; min-height: 0 !important; max-height: 320px !important; }
  .hero-left { overflow: hidden !important; }
  .hero-right { display: none !important; }
  #hero-h { font-size: 24px !important; line-height: 1.1 !important; }
  .hero-lede { font-size: 13px !important; line-height: 1.4 !important; margin-bottom: 16px !important; }
  .hero-cta .btn { flex: 1 1 auto !important; padding: 10px 16px !important; font-size: 14px !important; }
  .hero-stat-row { display: none !important; }
}

/* ============================================================
   CARD SYSTEM (L11 - sharp edges, split-screen friendly)
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 2px solid var(--ink);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.card-image { padding: 0; overflow: hidden; }
.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 2px solid var(--ink);
}
.card-image .card-body { padding: 20px; }
.card h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-bottom: 10px; }
.card .meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sunset); margin-bottom: 8px; }
.card p { font-size: 14px; line-height: 1.55; margin-bottom: 12px; color: var(--text); }
.card .more { font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--indigo); }
.card .more:hover { color: var(--sunset); }

.data-card {
  background: var(--offwhite);
  border: 2px solid var(--ink);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.data-card .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--indigo);
  line-height: 1;
}
.data-card .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.data-card p { font-size: 13px; line-height: 1.5; color: var(--text); margin: 0; }

.step-card {
  background: var(--bg-card);
  border: 2px solid var(--ink);
  padding: 28px;
  position: relative;
}
.step-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border: 2px solid var(--ink);
  margin-bottom: 16px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--sunset);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  border: 2px solid var(--ink);
  margin-bottom: 14px;
}
.step-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.step-card p { font-size: 14px; line-height: 1.55; margin: 0; }

.loose-card {
  background: linear-gradient(135deg, rgba(61, 52, 139, 0.06) 0%, rgba(242, 100, 48, 0.04) 100%);
  border: 2px solid var(--ink);
  padding: 24px;
  margin: 16px 0;
}
.loose-card h3, .loose-card h4 { font-family: var(--font-display); margin-bottom: 10px; }
.loose-card p { margin-bottom: 0; }

.comparison-card {
  background: var(--bg-card);
  border: 2px solid var(--ink);
  padding: 0;
  overflow: hidden;
}
.comparison-card img { width: 100%; height: 180px; object-fit: cover; border-bottom: 2px solid var(--ink); }
.comparison-card .cmp-body { padding: 18px; }
.comparison-card h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.comparison-card .price { font-family: var(--font-display); font-weight: 900; font-size: 24px; color: var(--sunset); }
.comparison-card .per { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }

.testimonial-card {
  background: var(--ink);
  color: var(--offwhite);
  border: 2px solid var(--ink);
  padding: 28px;
}
.testimonial-card img { width: 56px; height: 56px; border-radius: 0; border: 2px solid var(--sunset); margin-bottom: 12px; object-fit: cover; }
.testimonial-card .quote { font-family: var(--font-display); font-style: italic; font-size: 17px; line-height: 1.45; margin-bottom: 16px; color: var(--offwhite); }
.testimonial-card .who { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sunset-soft); }

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--ink);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured { background: var(--indigo); color: var(--offwhite); }
.pricing-card.featured h3, .pricing-card.featured .price { color: var(--offwhite); }
.pricing-card img { width: 100%; height: 140px; object-fit: cover; border: 2px solid var(--ink); margin-bottom: 14px; }
.pricing-card .price { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--indigo); margin: 6px 0; }
.pricing-card ul { list-style: none; padding: 0; margin: 12px 0; }
.pricing-card li { font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--border); }
.pricing-card.featured li { border-bottom-color: var(--border-dark); }

.cta-card {
  background: var(--sunset);
  color: var(--ink);
  padding: 40px;
  border: 2px solid var(--ink);
  text-align: center;
}
.cta-card h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.cta-card p { font-size: 16px; margin-bottom: 20px; }

.hub-card {
  background: var(--bg-card);
  border: 2px solid var(--ink);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hub-card img { width: 100%; height: 160px; object-fit: cover; border-bottom: 2px solid var(--ink); }
.hub-card .hub-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.hub-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.hub-card p { font-size: 13px; line-height: 1.5; flex: 1; }
.hub-card .more { margin-top: 8px; }

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.card-grid { display: grid; gap: 24px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 899px) {
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4, .card-grid.cols-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 559px) {
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4, .card-grid.cols-6 { grid-template-columns: 1fr; }
}

/* ============================================================
   INLINE IMAGE ROW (L11 signature)
   ============================================================ */
.inline-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin: 28px 0;
  padding: 24px;
  background: var(--offwhite-2);
  border: 2px solid var(--ink);
}
.inline-image-row.flip { grid-template-columns: 1fr 1fr; }
.inline-image-row.flip .img-cell { order: 2; }
.inline-image-row .img-cell img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 2px solid var(--ink);
}
.inline-image-row .text-cell h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--ink);
}
.inline-image-row .text-cell p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

@media (max-width: 760px) {
  .inline-image-row { grid-template-columns: 1fr; }
  .inline-image-row.flip .img-cell { order: 0; }
  .inline-image-row .img-cell img { height: 200px; }
}

/* ============================================================
   CONTENT IMAGE CARDS (Rule 15 + 16)
   ============================================================ */
.content-hero-image {
  position: relative;
  margin: 0 0 32px;
  border: 2px solid var(--ink);
  overflow: hidden;
}
.content-hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.content-hero-image .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15, 15, 26, 0.95) 30%, transparent);
  color: var(--offwhite);
  padding: 24px 28px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content-2col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  margin: 32px 0;
  align-items: start;
}
.content-2col img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 2px solid var(--ink);
}

.content-image-card {
  margin: 32px 0;
  border: 2px solid var(--ink);
  background: var(--bg-card);
}
.content-image-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.content-image-card .caption {
  padding: 14px 24px;
  background: var(--offwhite-2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--text);
  border-top: 2px solid var(--ink);
}

@media (max-width: 760px) {
  .content-2col { grid-template-columns: 1fr; }
  .content-2col img { height: 220px; }
  .content-hero-image img { height: 260px; }
  .content-image-card img { height: 220px; }
}

/* ============================================================
   FAQ GRID
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 2px solid var(--ink);
  padding: 20px 24px;
}
.faq-item h3, .faq-item summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--sunset);
  font-weight: 900;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 12px 0 0; font-size: 14px; line-height: 1.6; color: var(--text); }

/* ============================================================
   TABLES
   ============================================================ */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
th {
  background: var(--indigo);
  color: var(--offwhite);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 14px;
  text-align: left;
  border: 2px solid var(--ink);
}
td {
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
tr:nth-child(even) td { background: var(--offwhite); }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-head {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ink);
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 8px;
}
.section-head p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--offwhite);
  padding: 56px 0 24px;
  border-top: 4px solid var(--sunset);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--offwhite);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-col p { font-size: 14px; color: var(--text-on-dark-muted); line-height: 1.6; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-on-dark-muted); font-size: 13px; text-decoration: none; }
.footer-col a:hover { color: var(--sunset-soft); }

.social-icons {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--indigo);
  color: var(--offwhite);
  border: 1px solid rgba(245, 245, 240, 0.2);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.social-icons a:hover { background: var(--sunset); color: var(--ink); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(245, 245, 240, 0.12);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  text-align: center;
}

@media (max-width: 899px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 559px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROSE BLOCKS
   ============================================================ */
.prose { max-width: 720px; margin: 0 auto; }
.prose p, .prose ul, .prose ol { font-size: 16px; line-height: 1.75; color: var(--text); margin-bottom: 16px; }
.prose h2 { font-family: var(--font-display); font-weight: 700; font-size: 28px; margin-top: 32px; margin-bottom: 12px; }
.prose h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-top: 28px; margin-bottom: 10px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  background: var(--indigo);
  color: var(--offwhite);
  padding: 18px 24px;
  border: 2px solid var(--ink);
  margin: 24px 0;
  flex-wrap: wrap;
}
.promo-banner .promo-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sunset-soft); }
.promo-banner .promo-text { flex: 1; font-size: 15px; }
.promo-banner a { color: var(--offwhite); text-decoration: underline; font-weight: 700; }

/* ============================================================
   UTILITY
   ============================================================ */
.muted { color: var(--text-muted); }
.muted-dark { color: var(--text-on-dark-muted); }
.center { text-align: center; }
.divider {
  border-top: 2px solid var(--ink);
  margin: 40px 0;
}
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--sunset);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 150;
  box-shadow: var(--shadow);
}
.scroll-top.show { display: flex; }
section[id] { scroll-margin-top: 80px; }