/* ============================================================
   mobile.css — Riva Rocci · Mobile-First Experience
   Targets: phones only (max-width: 480px)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&display=swap');

/* ── MOBILE-ONLY: scoped to phones ── */
@media (max-width: 570px) {

  /* ── BASE TWEAKS ── */
  html { font-size: 15px; -webkit-text-size-adjust: 100%; }
  body { overflow-x: hidden; }

  /* Larger tap targets globally */
  a, button { min-height: 44px; }

  /* ── NAV — pill-style floating bar ── */
  nav {
    top: .75rem !important;
    left: .75rem !important;
    right: .75rem !important;
    padding: .75rem 1.1rem !important;
    border-radius: 100px !important;
    background: rgba(13, 12, 10, .82) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(240, 235, 224, .1) !important;
    border-bottom-color: rgba(240, 235, 224, .1) !important;
  }
  nav.stuck {
    top: .75rem !important;
    background: rgba(13, 12, 10, .92) !important;
  }
  .logo { font-size: 1.1rem !important; }
  .burger { gap: 4px !important; }
  .burger span { width: 20px !important; }

  /* ── MOBILE MENU — animated overlay ── */
  .mob-menu {
    background: var(--ink) !important;
    /* Always in the DOM flow for animation; visibility controlled via class */
    display: flex !important;
    pointer-events: none !important;
    /* Clip from top-left corner outward */
    clip-path: circle(0% at calc(100% - 2.5rem) 2.5rem) !important;
    transition: clip-path .5s cubic-bezier(.77, 0, .175, 1) !important;
    gap: 0 !important;
    justify-content: center !important;
    padding: 6rem 2rem 4rem !important;
    align-items: flex-start !important;
  }
  .mob-menu.open {
    clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem) !important;
    pointer-events: all !important;
  }

  /* Links slide up + fade in with stagger */
  .mob-menu a {
    font-size: 3.2rem !important;
    line-height: 1.15 !important;
    padding: .25rem 0 !important;
    min-height: unset !important;
    opacity: 0 !important;
    transform: translateY(18px) !important;
    transition: opacity .3s ease, transform .3s ease, color .15s !important;
  }
  .mob-menu.open a:nth-child(1) { opacity: 1 !important; transform: none !important; transition-delay: .22s !important; }
  .mob-menu.open a:nth-child(2) { opacity: 1 !important; transform: none !important; transition-delay: .3s !important; }
  .mob-menu.open a:nth-child(3) { opacity: 1 !important; transform: none !important; transition-delay: .38s !important; }
  .mob-menu.open a:nth-child(4) { opacity: 1 !important; transform: none !important; transition-delay: .46s !important; }
  .mob-menu.open a:nth-child(5) { opacity: 1 !important; transform: none !important; transition-delay: .54s !important; }
  .mob-menu.open a:nth-child(6) { opacity: 1 !important; transform: none !important; transition-delay: .62s !important; }

  /* Colored accents per link */
  .mob-menu a:nth-child(1) { color: var(--blue-l) !important; }
  .mob-menu a:nth-child(2) { color: var(--grn-l) !important; }
  .mob-menu a:nth-child(3) { color: var(--yel-l) !important; }
  .mob-menu a:nth-child(4) { color: var(--cream) !important; }
  .mob-menu a:nth-child(5) { color: var(--blue-l) !important; }
  .mob-menu a:nth-child(6) { color: var(--grn-l) !important; }

  /* Burger morphs to × */
  .burger span {
    transition: transform .3s ease, opacity .2s ease !important;
    transform-origin: center !important;
  }
  .burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg) !important; }
  .burger.is-open span:nth-child(2) { opacity: 0 !important; transform: scaleX(0) !important; }
  .burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg) !important; }

  /* ── HERO — full bleed, bottom-anchored CTA ── */
  .hero {
    height: 100svh !important;
    min-height: 580px !important;
    justify-content: flex-end !important;
    padding-bottom: 0 !important;
    align-items: stretch !important;
  }
  .hero-content {
    text-align: center !important;
    max-width: 100% !important;
    padding: 0 !important;
    /* Glass card at bottom */
    background: linear-gradient(to top, var(--ink) 0%, rgba(13,12,10,.85) 60%, transparent 100%);
    padding: 3rem 1.5rem 2.5rem !important;
  }
  .hero-eyebrow {
    font-size: .58rem !important;
    letter-spacing: .18em !important;
    margin-bottom: .9rem !important;
  }
  .hero-hl {
    font-size: clamp(3rem, 14vw, 4.2rem) !important;
    line-height: .9 !important;
    margin-bottom: 1rem !important;
  }
  .hero-sub {
    font-size: .82rem !important;
    max-width: 100% !important;
    margin: 0 0 1.8rem !important;
    line-height: 1.65 !important;
  }
  .hero-ctas {
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    gap: .6rem !important;
  }
  .hero-ctas .btn {
    padding: .75rem 1.5rem !important;
    font-size: .7rem !important;
    flex: 1 !important;
    justify-content: center !important;
  }
  .hero-scroll { display: none !important; }

  /* ── IDENTITY STRIP — horizontal scroll chips ── */
  .identity {
    display: flex !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    gap: 0 !important;
    border-bottom: 1px solid var(--border) !important;
    border-top: 1px solid var(--border) !important;
  }
  .identity::-webkit-scrollbar { display: none !important; }
  .id-cell {
    flex: 0 0 72vw !important;
    scroll-snap-align: start !important;
    border-right: 1px solid var(--border) !important;
    border-bottom: none !important;
    padding: 1.4rem 1.5rem !important;
    min-height: 80px !important;
  }
  .id-cell:last-child { border-right: none !important; }
  .id-label { font-size: .55rem !important; }
  .id-val { font-size: .82rem !important; }

  /* ── MANIFESTO — punchy and loud ── */
  .manifesto {
    padding: 5rem 1.5rem !important;
  }
  .manifesto-bg { font-size: 48vw !important; }
  .manifesto-tag { font-size: .6rem !important; margin-bottom: 1.2rem !important; }
  .manifesto-hl {
    font-size: clamp(1.9rem, 9vw, 2.8rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 1.5rem !important;
  }
  .manifesto-body {
    font-size: .84rem !important;
    line-height: 1.8 !important;
    margin-bottom: 2rem !important;
  }

  /* ── PILLARS — vertical cards, swipe feel ── */
  .pillars-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .4rem !important;
    padding: 1.8rem 1.5rem !important;
  }
  .pillars-header-right { display: none !important; }
  .pillars-tag { font-size: .6rem !important; }
  .pillars-h { font-size: clamp(1.6rem, 8vw, 2.2rem) !important; white-space: normal !important; }

  .pillar-row {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    direction: ltr !important;
  }
  .pillar-row-flip {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
  }
  .pillar-row-flip .pillar-row-img {
    grid-column: 1 !important;
    grid-row: 1 !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .pillar-row-flip .pillar-row-txt {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
  .pillar-row-img {
    min-height: 240px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .pillar-row-txt {
    padding: 2rem 1.5rem !important;
  }
  .pillar-row-num { font-size: .58rem !important; margin-bottom: .75rem !important; }
  .pillar-row-name { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; margin-bottom: .8rem !important; }
  .pillar-row-desc { font-size: .82rem !important; }
  .pillar-row-bg { font-size: 7rem !important; }

  /* ── ABOUT SECTION ── */
  .about-section {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .about-txt {
    padding: 3rem 1.5rem !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .about-tag { font-size: .6rem !important; margin-bottom: 1rem !important; }
  .about-hl { font-size: clamp(1.7rem, 8vw, 2.2rem) !important; margin-bottom: 1rem !important; }
  .about-body { font-size: .82rem !important; margin-bottom: 1.5rem !important; }
  .about-photos {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 180px 180px !important;
    gap: 2px !important;
  }
  .about-photos .ph:first-child { grid-row: span 2 !important; }

  /* ── STATS SECTION ── */
  .stats-section {
    padding: 5rem 1.5rem !important;
  }
  .stats-tag { font-size: .6rem !important; margin-bottom: 1rem !important; }
  .stats-num { font-size: clamp(4rem, 22vw, 5.5rem) !important; margin-bottom: .4rem !important; }
  .stats-label { font-size: .82rem !important; margin-bottom: 2rem !important; }
  .stats-sub { font-size: .75rem !important; }

  /* Fewer floating rings on mobile (performance) */
  .stats-ring:nth-child(n+6) { display: none !important; }

  /* ── INSTAGRAM FEED — horizontal scroll ── */
  .ig-section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .8rem !important;
    padding: 1.8rem 1.5rem !important;
  }
  .ig-section-hl { font-size: clamp(1.6rem, 8vw, 2.2rem) !important; white-space: normal !important; }
  .ig-follow-btn { align-self: flex-start !important; }

  .ig-feed {
    display: flex !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    padding: 1.5rem !important;
    gap: 12px !important;
  }
  .ig-feed::-webkit-scrollbar { display: none !important; }
  .ig-post {
    flex: 0 0 72vw !important;
    scroll-snap-align: start !important;
    border-radius: 12px !important;
    /* reset desktop stagger */
    margin-top: 0 !important;
  }
  /* Reset stagger */
  .ig-post:nth-child(1),
  .ig-post:nth-child(2),
  .ig-post:nth-child(3),
  .ig-post:nth-child(4),
  .ig-post:nth-child(5),
  .ig-post:nth-child(6),
  .ig-post:nth-child(7) { margin-top: 0 !important; }

  /* Uniform aspect ratio on mobile */
  .ig-post:nth-child(odd)  .ig-post-img { aspect-ratio: 1/1 !important; }
  .ig-post:nth-child(even) .ig-post-img { aspect-ratio: 1/1 !important; }

  /* ── CTA SECTION ── */
  .cta-section {
    padding: 5rem 1.5rem !important;
  }
  .cta-bg { font-size: 55vw !important; }
  .cta-tag { font-size: .6rem !important; margin-bottom: 1.2rem !important; }
  .cta-hl {
    font-size: clamp(2.2rem, 12vw, 3.2rem) !important;
    margin-bottom: 1.2rem !important;
    line-height: 1 !important;
  }
  .cta-body {
    font-size: .82rem !important;
    margin-bottom: 2rem !important;
  }
  .cta-acts {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: .6rem !important;
  }
  .cta-acts .btn { justify-content: center !important; }

  /* ── FOOTER ── */
  footer {
    padding: 3rem 1.5rem 2rem !important;
  }
  .ft-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .ft-logo { font-size: 1.5rem !important; }
  .ft-desc { font-size: .78rem !important; }
  .ft-bot {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .75rem !important;
  }

  /* ── INNER PAGE HEADER ── */
  .pg-hdr {
    padding: 7.5rem 1.5rem 3.5rem !important;
  }
  .pg-title {
    font-size: clamp(2.8rem, 14vw, 4rem) !important;
    line-height: .92 !important;
  }
  .pg-sub { font-size: .82rem !important; }

  .pg-hdr-hero {
    padding-top: 9rem !important;
    padding-bottom: 3rem !important;
  }

  /* ── OVER ONS PAGE ── */
  .oo-split { grid-template-columns: 1fr !important; min-height: auto !important; }
  .oo-split-left {
    padding: 3rem 1.5rem 2rem !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .oo-split-hl { font-size: clamp(2rem, 10vw, 2.8rem) !important; }
  .oo-split-right { padding: 2.5rem 1.5rem !important; gap: 1.2rem !important; }
  .oo-split-stats { grid-template-columns: repeat(3, 1fr) !important; }
  .oo-stat-num { font-size: 1.8rem !important; }

  .story-wide { grid-template-columns: 1fr !important; min-height: auto !important; }
  .story-wide-img { min-height: 240px !important; border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .story-wide-flip .story-wide-img { order: 0 !important; border-left: none !important; }
  .story-wide-flip .story-wide-txt { order: 1 !important; }
  .story-wide-txt { padding: 2.5rem 1.5rem !important; }
  .story-wide-txt h2 { font-size: 1.8rem !important; }

  .oo-quote { padding: 3rem 1.5rem !important; }
  .oo-quote blockquote { font-size: clamp(1rem, 5vw, 1.3rem) !important; }

  /* GS: single column, tap to expand */
  .gs-grid { grid-template-columns: 1fr !important; }
  .gs-item {
    padding: 1.5rem 1.5rem !important;
    min-height: auto !important;
    cursor: pointer !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
    transition: background-color 0.3s;
  }
  .gs-item:last-child { border-bottom: none !important; }
  .gs-item:hover { min-height: auto !important; background: rgba(240,235,224,.03) !important; }
  .gs-yr { font-size: 2.4rem !important; margin-bottom: .4rem !important; }
  .gs-title { margin-bottom: 0 !important; }
  /* Preview always visible; full text revealed on .expanded */
  .gs-preview {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    transition: opacity .25s ease !important;
    margin-top: .5rem !important;
  }
  .gs-item.expanded .gs-preview { opacity: 0 !important; display: none !important; }
  .gs-full {
    position: static !important;
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: opacity .35s ease, max-height .4s cubic-bezier(.4, 0, .2, 1) !important;
    margin-top: .5rem !important;
    pointer-events: none !important;
    transition: 
    opacity .35s ease,
    max-height .8s cubic-bezier(.4, 0, .2, 1),
    transform .35s ease !important;
  }
  .gs-item.expanded .gs-full {
    opacity: 1 !important;
    max-height: 600px !important;
    pointer-events: auto !important;
    margin-top: .5rem !important;
    transform: translateY(0) !important;
  }
  .gs-arrow {
    padding-top: .75rem !important;
    color: rgba(240,235,224,.25) !important;
  }
  .gs-item.expanded .gs-arrow { color: rgba(240,235,224,.5) !important; }
  .gs-arrow::after {
    content: ' ▾';
    display: inline-block;
    transition: transform .25s;
  }
  .gs-item.expanded .gs-arrow::after { transform: rotate(180deg); }

  .barsol-section { grid-template-columns: 1fr !important; }
  .barsol-img { min-height: 220px !important; }
  .barsol-txt { padding: 2.5rem 1.5rem !important; border-left: none !important; border-top: 1px solid var(--border) !important; }
  .barsol-pull { font-size: 1.3rem !important; }
  .barsol-txt h2 { font-size: 1.5rem !important; }

  /* ── PRAESIDIUM PAGE ── */
  .praes-years {
    padding: .85rem 1rem !important;
    gap: .45rem !important;
    align-items: center !important;
  }
  /* Year pill buttons — proper size, no stretch */
  .yr {
    font-size: .72rem !important;
    padding: .38rem .85rem !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    height: auto !important;
    line-height: 1.4 !important;
  }
  /* Arrow buttons — fixed square, never stretch */
  .yr-arrow {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    font-size: .8rem !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .praes-hero { width: 100% !important; height: 300px !important; }
  .praes-hero-overlay { padding: 1.5rem !important; }
  .praes-hero-overlay .pg-title { font-size: clamp(2rem, 10vw, 3rem) !important; }
  .praes-body { padding: 2rem 1.5rem 3rem !important; }
  .pr-yr-big { font-size: 3.5rem !important; }
  /* Member grid: normal 2-col grid (no carousel) */
  .pr-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    overflow-x: unset !important;
    scroll-snap-type: unset !important;
    gap: 2px !important;
    background: var(--border) !important;
    border: 1px solid var(--border) !important;
    border-radius: 4px !important;
    padding-bottom: 0 !important;
  }
  .pr-mem {
    flex: unset !important;
    scroll-snap-align: unset !important;
    border-radius: 0 !important;
    aspect-ratio: 2/3 !important;
  }

  /* ── LIEDEREN PAGE ── */
  .lied-layout { grid-template-columns: 1fr !important; }
  .lied-aside { border-right: none !important; border-bottom: 1px solid var(--border) !important; position: static !important; padding: 1.5rem !important; }
  .lied-main { padding: 2rem 1.5rem !important; }

  /* ── SPONSORS PAGE ── */
  .spon-grid { padding: 2rem 1.25rem !important; }
  .tier-head { flex-direction: column !important; align-items: flex-start !important; gap: .4rem !important; margin-bottom: 1.5rem !important; }
  .tier-title { font-size: 1.3rem !important; }
  .sg-unified {
    grid-template-columns: 1fr 1fr !important;
    gap: .6rem !important;
  }
  .scard-main {
    grid-column: span 1 !important;
    min-height: 120px !important;
    aspect-ratio: unset !important;
  }
  .scard {
    aspect-ratio: 1/1 !important;
    padding: .85rem !important;
    border-radius: 10px !important;
  }
  .scard .sc-logo { max-width: 100% !important; max-height: 58px !important; }
  .scard-main .sc-logo { max-height: 68px !important; }

  /* ── CONTACT PAGE ── */
  .sup-grid { grid-template-columns: 1fr !important; }
  .sup-left { border-right: none !important; border-bottom: 1px solid var(--border) !important; padding: 2.5rem 1.5rem !important; }
  .sup-right { padding: 2.5rem 1.5rem !important; }
  .faq-section { padding: 2.5rem 1.5rem !important; }
  .faq-grid { grid-template-columns: 1fr !important; }
  /* Hide decorative social visual on mobile */
  .soc-visual { display: none !important; }
  .soc-inner { grid-template-columns: 1fr !important; }
  .soc-text { border-right: none !important; padding: 3rem 1.5rem !important; }

  /* ── BUTTONS ── */
  .btn {
    padding: .8rem 1.6rem !important;
    font-size: .7rem !important;
  }

  /* ── SCROLL REVEAL: snappier on mobile ── */
  .reveal { transition: opacity .4s ease, transform .4s ease !important; }
}

/* ── DESKTOP: hide mobile-only elements ── */
.mob-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  padding: .75rem 1.25rem calc(.75rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, rgba(13,12,10,1) 60%, transparent);
  pointer-events: none;
}
.mob-sticky-cta a {
  pointer-events: all;
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  background: var(--blue);
  color: #fff;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  gap: .5rem;
  box-shadow: 0 4px 24px rgba(26, 79, 255, .45);
  transition: background .2s, transform .1s;
  -webkit-tap-highlight-color: transparent;
}
.mob-sticky-cta a:active {
  transform: scale(.97);
  background: #2e5fff;
}

/* ── TABLET: 481–900px — softer adjustments ── */
@media (min-width: 570px) and (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero-content { padding: 0 2rem; }
  .hero-hl { font-size: clamp(3rem, 10vw, 5rem); }

  .hero-scroll { display: none; }

  .identity { grid-template-columns: 1fr; }
  .id-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .id-cell:last-child { border-bottom: none; }

  .pillars-header { padding: 2rem 2rem; }
  .pillar-row { grid-template-columns: 1fr; min-height: auto; direction: ltr; }
  .pillar-row-flip { grid-template-columns: 1fr; direction: ltr; }
  .pillar-row-flip .pillar-row-img { grid-column: 1; grid-row: 1; border-left: none; border-right: none; border-bottom: 1px solid var(--border); }
  .pillar-row-flip .pillar-row-txt { grid-column: 1; grid-row: 2; }
  .pillar-row-img { min-height: 300px; border-right: none; border-bottom: 1px solid var(--border); }
  .pillar-row-txt { padding: 2.5rem 2rem; }

  .about-section { grid-template-columns: 1fr; }
  .about-txt { border-right: none; border-bottom: 1px solid var(--border); padding: 3.5rem 2rem; }
  .about-photos { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; }
  .about-photos .ph:first-child { grid-row: span 2; }

  .ig-feed { grid-template-columns: repeat(3, 1fr); padding: 2rem; gap: 12px; }
  .ig-post { margin-top: 0 !important; }

  .cta-section { padding: 6rem 2rem; }
  .cta-acts { flex-direction: column; align-items: center; gap: .6rem; }
  .cta-acts .btn { min-width: 200px; justify-content: center; }

  footer, .pg-hdr, .manifesto, .stats-section { padding-left: 2rem; padding-right: 2rem; }
  .ft-grid { grid-template-columns: 1fr; gap: 2rem; }

  .oo-split { grid-template-columns: 1fr; }
  .oo-split-left { border-right: none; border-bottom: 1px solid var(--border); padding: 3.5rem 2rem; }
  .oo-split-right { padding: 3rem 2rem; }

  .story-wide { grid-template-columns: 1fr; min-height: auto; }
  .story-wide-img { min-height: 300px; border-right: none; border-bottom: 1px solid var(--border); }
  .story-wide-flip .story-wide-img { order: 0; border-left: none; }
  .story-wide-flip .story-wide-txt { order: 1; }
  .story-wide-txt { padding: 3rem 2rem; }

  .barsol-section { grid-template-columns: 1fr; }
  .barsol-txt { border-left: none; border-top: 1px solid var(--border); padding: 3rem 2rem; }
  .praes-hero { width: 100%; }
  .praes-body { padding: 2.5rem 2rem; }

  .gs-grid { grid-template-columns: repeat(2, 1fr); }
  .gs-item { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .gs-item:nth-child(even) { border-right: none; }
  .gs-item:last-child:nth-child(odd) { border-right: 1px solid var(--border); }
  .gs-item:last-child { border-bottom: none; }

  /* ── SPONSORS PAGE ── */
  .spon-grid { padding: 2.5rem 2rem; }
  .tier-head { flex-direction: column; align-items: flex-start; gap: .4rem; margin-bottom: 1.5rem; }
  .sg-unified { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .scard-main { grid-column: span 1; min-height: 140px; aspect-ratio: unset; }
  .spon-t1 .sg-unified { grid-template-columns: 1fr 1fr; }
  .scard { aspect-ratio: 1/1; padding: 1rem; border-radius: 10px; }
  .scard .sc-logo { max-width: 100%; max-height: 70px; }
  .scard-main .sc-logo { max-height: 80px; }

  /* ── CONTACT PAGE ── */
  .sup-grid { grid-template-columns: 1fr; }
  .sup-left { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 2rem; }
  .sup-right { padding: 3rem 2rem; }
  .faq-section { padding: 3rem 2rem; }
  .faq-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ── SHARED NAV ANIMATIONS (all breakpoints with burger: ≤900px) ── */
@media (max-width: 900px) {

  /* Mob menu: clip-path reveal animation */
  .mob-menu {
    display: flex !important;
    pointer-events: none !important;
    clip-path: circle(0% at calc(100% - 2.5rem) 2.5rem) !important;
    transition: clip-path .5s cubic-bezier(.77, 0, .175, 1) !important;
    gap: 0 !important;
    justify-content: center !important;
    padding: 6rem 2rem 4rem !important;
    align-items: flex-start !important;
  }
  .mob-menu.open {
    clip-path: circle(150% at calc(100% - 2.5rem) 2.5rem) !important;
    pointer-events: all !important;
  }

  /* Links slide up + fade in with stagger */
  .mob-menu a {
    font-size: 3.2rem !important;
    line-height: 1.15 !important;
    padding: .25rem 0 !important;
    min-height: unset !important;
    opacity: 0 !important;
    transform: translateY(18px) !important;
    transition: opacity .3s ease, transform .3s ease, color .15s !important;
  }
  .mob-menu.open a:nth-child(1) { opacity: 1 !important; transform: none !important; transition-delay: .22s !important; }
  .mob-menu.open a:nth-child(2) { opacity: 1 !important; transform: none !important; transition-delay: .3s !important; }
  .mob-menu.open a:nth-child(3) { opacity: 1 !important; transform: none !important; transition-delay: .38s !important; }
  .mob-menu.open a:nth-child(4) { opacity: 1 !important; transform: none !important; transition-delay: .46s !important; }
  .mob-menu.open a:nth-child(5) { opacity: 1 !important; transform: none !important; transition-delay: .54s !important; }
  .mob-menu.open a:nth-child(6) { opacity: 1 !important; transform: none !important; transition-delay: .62s !important; }

  /* Colored accents per link */
  .mob-menu a:nth-child(1) { color: var(--blue-l) !important; }
  .mob-menu a:nth-child(2) { color: var(--grn-l) !important; }
  .mob-menu a:nth-child(3) { color: var(--yel-l) !important; }
  .mob-menu a:nth-child(4) { color: var(--cream) !important; }
  .mob-menu a:nth-child(5) { color: var(--blue-l) !important; }
  .mob-menu a:nth-child(6) { color: var(--grn-l) !important; }

  /* Burger morphs to × */
  .burger span {
    transition: transform .3s ease, opacity .2s ease !important;
    transform-origin: center !important;
  }
  .burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg) !important; }
  .burger.is-open span:nth-child(2) { opacity: 0 !important; transform: scaleX(0) !important; }
  .burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg) !important; }
}
