/* ============================================================================
   Warm Cosmic Bento — Phase 2
   Global header, bento grid cards, cosmic footer.
   Depends on design-system.css (--bento-* tokens).
   ============================================================================ */

/* ── Global Header ──────────────────────────────────────────────────────────── */
#global-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height, 68px);
  background: rgba(7,3,15,0.92);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid rgba(212,175,55,0.12);
  display: flex;
  align-items: center;
}
#global-header .gh-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
/* Logo */
#global-header .gh-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bento-gold, #D4AF37);
  text-decoration: none;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  white-space: nowrap;
}
#global-header .gh-logo:hover {
  color: var(--bento-gold-light, #EDD96A);
}
/* Desktop nav links */
#global-header .gh-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}
#global-header .gh-nav a {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(245,240,233,0.75);
  text-decoration: none;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
#global-header .gh-nav a:hover {
  color: var(--bento-teal, #00BFA5);
  background: rgba(0,191,165,0.08);
}
/* CTA buttons */
#global-header .gh-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.gh-btn-join {
  font-family: 'Rubik', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bento-teal, #00BFA5);
  border: none;
  border-radius: 100px;
  padding: 0.45rem 1.2rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.gh-btn-join:hover {
  background: #00d4b8;
  transform: translateY(-1px);
}
.gh-btn-login {
  font-family: 'Rubik', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--bento-gold, #D4AF37);
  background: transparent;
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 100px;
  padding: 0.44rem 1.1rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.gh-btn-login:hover {
  border-color: var(--bento-gold, #D4AF37);
  background: rgba(212,175,55,0.08);
}
/* Hamburger */
#gh-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
#gh-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--bento-cream, #F5F0E9);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
#gh-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#gh-hamburger.open span:nth-child(2) { opacity: 0; }
#gh-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-out panel */
#gh-mobile-menu {
  position: fixed;
  top: var(--header-height, 68px);
  left: 0; right: 0;
  background: rgba(7,3,15,0.98);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 999;
  animation: ghSlideDown 0.2s ease;
}
#gh-mobile-menu.open { display: flex; }
@keyframes ghSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
#gh-mobile-menu a {
  font-family: 'Rubik', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(245,240,233,0.8);
  text-decoration: none;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(212,175,55,0.08);
  transition: color 0.2s;
}
#gh-mobile-menu a:hover { color: var(--bento-teal, #00BFA5); }
#gh-mobile-menu .gh-mobile-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
  flex-wrap: wrap;
}
/* My ICONIC dropdown */
.gh-myiconic-wrap { position: relative; }
.gh-myiconic-btn {
  font-family: 'Rubik', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--bento-gold, #D4AF37);
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 100px;
  padding: 0.44rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.gh-myiconic-btn:hover { background: rgba(212,175,55,0.15); }
.gh-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(10,5,20,0.98);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 180px;
  display: none;
  flex-direction: column;
  gap: 0.1rem;
  z-index: 1001;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.gh-dropdown.open { display: flex; }
.gh-dropdown a {
  font-family: 'Rubik', sans-serif;
  font-size: 0.82rem;
  color: rgba(245,240,233,0.8);
  text-decoration: none;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.gh-dropdown a:hover {
  background: rgba(0,191,165,0.1);
  color: var(--bento-teal, #00BFA5);
}

/* ── Body offset for fixed header ───────────────────────────────────────────── */
body.has-global-header {
  padding-top: var(--header-height, 68px);
}

/* ── Responsive header ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  #global-header .gh-nav { display: none; }
  #gh-hamburger { display: flex; }
}
@media (max-width: 480px) {
  #global-header .gh-actions .gh-btn-login { display: none; }
}

/* ── Bento Grid System ──────────────────────────────────────────────────────── */
.bento-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.bento-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.bento-section-header .bento-label {
  font-family: 'Rubik', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bento-teal, #00BFA5);
  margin-bottom: 0.75rem;
}
.bento-section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--bento-gold, #D4AF37);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.bento-section-header h2 em {
  font-style: italic;
  color: var(--bento-cream, #F5F0E9);
}
.bento-section-header p {
  color: var(--bento-cream-muted, rgba(245,240,233,0.7));
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* Bento grid — asymmetric */
.bento-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.bento-grid.grid-2 { grid-template-columns: repeat(2, 1fr); }
.bento-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Spans */
.bento-span-2 { grid-column: span 2; }
.bento-span-3 { grid-column: span 3; }
.bento-row-2  { grid-row: span 2; }

/* ── Bento Card ──────────────────────────────────────────────────────────────── */
.bento-card {
  background: var(--bento-card-1, #4C275C);
  border-radius: var(--bento-radius, 20px);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--bento-glow-purple);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(212,175,55,0.08);
  color: var(--bento-cream, #F5F0E9);
}
.bento-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 50px rgba(76,39,92,0.7), 0 0 20px rgba(0,191,165,0.15), 0 8px 32px rgba(0,0,0,0.5);
}
/* Card variants */
.bento-card.card-dark   { background: var(--bento-card-4, #2A1240); }
.bento-card.card-mid    { background: var(--bento-card-2, #3A1E4A); }
.bento-card.card-light  { background: var(--bento-card-3, #5E3578); }
.bento-card.card-teal   { background: linear-gradient(135deg, #00BFA5, #007A6E); color: #fff; }
.bento-card.card-gold   { background: linear-gradient(135deg, #4C275C, #2A1240);
                           border: 1px solid rgba(212,175,55,0.3); }

/* Cosmic overlay on cards */
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(0,191,165,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.bento-card > * { position: relative; z-index: 1; }

/* Card typography */
.bento-card .card-label {
  font-family: 'Rubik', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bento-teal, #00BFA5);
  margin-bottom: 0.65rem;
}
.bento-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--bento-gold, #D4AF37);
  line-height: 1.25;
  margin-bottom: 0.65rem;
}
.bento-card h3.cream { color: var(--bento-cream, #F5F0E9); }
.bento-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--bento-cream-muted, rgba(245,240,233,0.75));
}
.bento-card p.cream { color: var(--bento-cream, #F5F0E9); }
.bento-card .card-meta {
  font-size: 0.78rem;
  color: rgba(245,240,233,0.5);
  margin-top: 0.5rem;
}
.bento-card .card-badge {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bento-teal-dim, rgba(0,191,165,0.15));
  color: var(--bento-teal, #00BFA5);
  border: 1px solid rgba(0,191,165,0.3);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}
.bento-card .card-badge.gold-badge {
  background: rgba(212,175,55,0.1);
  color: var(--bento-gold, #D4AF37);
  border-color: rgba(212,175,55,0.25);
}
.bento-card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Rubik', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bento-teal, #00BFA5);
  text-decoration: none;
  margin-top: 1rem;
  transition: gap 0.2s, color 0.2s;
}
.bento-card a.card-link:hover {
  color: #00d4b8;
  gap: 0.65rem;
}
.bento-card a.card-link.gold-link {
  color: var(--bento-gold, #D4AF37);
}
.bento-card a.card-link.gold-link:hover { color: var(--bento-gold-light, #EDD96A); }

/* ── Card Divider ────────────────────────────────────────────────────────────── */
.bento-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.bento-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), transparent);
}

/* ── Type Cards ─────────────────────────────────────────────────────────────── */
.bento-type-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0.75rem 0;
}
.bento-type-meta span {
  font-family: 'Rubik', sans-serif;
  font-size: 0.78rem;
  color: rgba(245,240,233,0.65);
}
.bento-type-meta strong { color: var(--bento-gold, #D4AF37); }
.bento-type-pct {
  font-family: 'Rubik', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bento-teal, #00BFA5);
  margin-left: 0.5rem;
}

/* ── Credentials row (hero sub-section) ─────────────────────────────────────── */
.bento-cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

/* ── Chart CTA bento ─────────────────────────────────────────────────────────── */
.bento-chart-cta {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.bento-chart-cta .bento-card {
  text-align: center;
  padding: 3rem 2.5rem;
}
.bento-chart-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--bento-gold, #D4AF37);
  margin-bottom: 0.9rem;
}
.bento-chart-cta h2 em {
  font-style: italic;
  color: var(--bento-cream, #F5F0E9);
}
.bento-chart-cta .subtitle {
  color: var(--bento-cream-muted, rgba(245,240,233,0.72));
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 1.75rem;
}
.bento-chart-link {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--bento-teal, #00BFA5);
  border-radius: 100px;
  padding: 0.85rem 2.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.bento-chart-link:hover { background: #00d4b8; transform: translateY(-2px); }
.bento-chart-trust {
  font-size: 0.78rem;
  color: rgba(245,240,233,0.45);
  margin-top: 1rem;
}

/* ── Email signup bento ─────────────────────────────────────────────────────── */
.bento-signup-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.bento-signup-section .bento-card { text-align: center; }
.bento-signup-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--bento-gold, #D4AF37);
  margin-bottom: 0.75rem;
}
.bento-signup-section h2 em { font-style: italic; color: var(--bento-cream, #F5F0E9); }
.bento-signup-section .signup-subtitle {
  color: var(--bento-cream-muted, rgba(245,240,233,0.7));
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.bento-signup-row {
  display: flex;
  gap: 0.5rem;
  max-width: 440px;
  margin: 0 auto;
}
.bento-signup-row input {
  flex: 1;
  background: rgba(245,240,233,0.07);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 100px;
  padding: 0.7rem 1.2rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: var(--bento-cream, #F5F0E9);
  outline: none;
  transition: border-color 0.2s;
}
.bento-signup-row input::placeholder { color: rgba(245,240,233,0.35); }
.bento-signup-row input:focus { border-color: var(--bento-teal, #00BFA5); }
.bento-signup-row .btn-signup {
  background: var(--bento-teal, #00BFA5);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.7rem 1.5rem;
  font-family: 'Rubik', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.bento-signup-row .btn-signup:hover { background: #00d4b8; }
.bento-signup-note {
  font-size: 0.76rem;
  color: rgba(245,240,233,0.4);
  margin-top: 0.75rem;
}
.bento-signup-error { color: #fa3246; font-size: 0.82rem; margin-top: 0.5rem; }
.bento-signup-success {
  display: none;
  padding: 1.5rem;
  background: rgba(0,191,165,0.1);
  border-radius: 12px;
  border: 1px solid rgba(0,191,165,0.25);
}
.bento-signup-success h4 { color: var(--bento-teal, #00BFA5); margin-bottom: 0.35rem; font-family:'Playfair Display',serif; }
.bento-signup-success p { color: var(--bento-cream-muted); font-size: 0.9rem; }
/* LinkedIn subscribe */
.bento-li-wrap {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(212,175,55,0.12);
}
.bento-li-wrap .li-divider-text {
  font-size: 0.78rem;
  color: rgba(245,240,233,0.4);
  margin-bottom: 0.6rem;
}
.bento-li-wrap .libutton {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  border: 1px solid rgba(0,119,181,0.5);
  border-radius: 4px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0077b5;
  text-decoration: none;
  transition: background 0.2s;
}
.bento-li-wrap .libutton:hover { background: rgba(0,119,181,0.1); }

/* ── Video grid bento ───────────────────────────────────────────────────────── */
.bento-video-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.bento-video-card {
  background: var(--bento-card-2, #3A1E4A);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.bento-video-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(0,191,165,0.15), 0 8px 32px rgba(0,0,0,0.5);
}
.bento-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}
.bento-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.bento-video-info {
  padding: 0.75rem 1rem 1rem;
}
.bento-video-platform {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.4rem;
}
.bento-yt-tag { background: rgba(255,0,0,0.12); color: #ff4444; border: 1px solid rgba(255,0,0,0.2); }
.bento-vimeo-tag { background: rgba(26,183,234,0.1); color: #1ab7ea; border: 1px solid rgba(26,183,234,0.2); }
.bento-video-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  color: var(--bento-cream-muted);
  line-height: 1.5;
  margin: 0;
}
.bento-video-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.bento-platform-link {
  font-family: 'Rubik', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.bento-yt-link {
  color: #ff4444;
  border: 1px solid rgba(255,0,0,0.25);
  background: rgba(255,0,0,0.06);
}
.bento-yt-link:hover { background: rgba(255,0,0,0.12); transform: translateY(-1px); }
.bento-vimeo-link {
  color: #1ab7ea;
  border: 1px solid rgba(26,183,234,0.25);
  background: rgba(26,183,234,0.06);
}
.bento-vimeo-link:hover { background: rgba(26,183,234,0.12); transform: translateY(-1px); }

/* ── Instagram bento ────────────────────────────────────────────────────────── */
.bento-insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}
.bento-insta-placeholder {
  aspect-ratio: 1;
  background: rgba(245,240,233,0.04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(245,240,233,0.25);
  border: 1px solid rgba(212,175,55,0.08);
}

/* ── SoundCloud bento ───────────────────────────────────────────────────────── */
.bento-soundcloud-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin: 1rem 0;
  border: 1px solid rgba(212,175,55,0.1);
}

/* ── Testimonials bento ─────────────────────────────────────────────────────── */
.bento-testimonials {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.bento-testimonials .bento-card { position: relative; }
.bento-testimonials blockquote {
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--bento-cream, #F5F0E9);
  margin: 0 0 0.75rem;
}
.bento-testimonials cite {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
  color: var(--bento-gold, #D4AF37);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-style: normal;
}

/* ── Global Footer ──────────────────────────────────────────────────────────── */
#global-footer {
  background: var(--bg-cosmic-deep, #07030f);
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
}
#global-footer .gf-inner {
  max-width: 1200px;
  margin: 0 auto;
}
#global-footer .gf-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
#global-footer .gf-brand {}
.gf-brand-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bento-gold, #D4AF37);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.gf-brand-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(245,240,233,0.5);
  max-width: 260px;
}
#global-footer .gf-col h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bento-gold, #D4AF37);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
#global-footer .gf-col a {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: rgba(245,240,233,0.6);
  text-decoration: none;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
#global-footer .gf-col a:hover { color: var(--bento-teal, #00BFA5); }
#global-footer .gf-bottom {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: 1.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.gf-copyright {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  color: rgba(245,240,233,0.35);
  line-height: 1.6;
}
.gf-disclaimer {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  color: rgba(245,240,233,0.28);
  line-height: 1.65;
  max-width: 560px;
  text-align: right;
}

@media (max-width: 900px) {
  #global-footer .gf-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 560px) {
  #global-footer .gf-top { grid-template-columns: 1fr; }
  .gf-disclaimer { text-align: left; }
}

/* ── Responsive bento grids ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bento-span-2 { grid-column: span 1; }
  .bento-span-3 { grid-column: span 2; }
  .bento-row-2 { grid-row: span 1; }
  .bento-cred-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2, .bento-span-3 { grid-column: span 1; }
  .bento-cred-grid { grid-template-columns: 1fr; }
  .bento-video-grid { grid-template-columns: 1fr; }
  .bento-signup-row { flex-direction: column; }
  .bento-signup-row .btn-signup { border-radius: 8px; }
  .bento-signup-row input { border-radius: 8px; }
}
