  /* ============================================================
     Home — design system EN FACE DE TOI
     H1: Inter Bold · H2: Playfair Display · corps: Inter
     Blanc / gris · rouge brique en accent rare (footer, eyebrows)
     Boutons noir & blanc uniquement.
     ============================================================ */
  .home {
    --hd: "Inter", "Google Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --serif: "Playfair Display", Georgia, serif;
    --brick: #B23A34;
    --ink: #1A1A1A;
    --ink-soft: #4a4a4a;
    --grey: #C6C6C6;
    --grey-soft: #F2F2F2;
    color: var(--ink);
    font-family: var(--hd);
  }
  .home .wrap { max-width: 1240px; }

  /* ---- Hero ------------------------------------------------- */
  .hero {
    position: relative;
    min-height: clamp(620px, 94vh, 1000px);
    display: flex;
    flex-direction: column;
    justify-content: center;   /* title block sits at the vertical middle */
    color: #fff;
    overflow: hidden;
    background: #0A0A0B;   /* fallback while the video loads */
  }
  /* Full-bleed background video */
  .hero__video {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%; object-fit: cover;
  }
  /* Scrim over the video for text legibility (was the hero's gradient background) */
  .hero__scrim {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
      linear-gradient(103deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.30) 32%, rgba(0,0,0,0) 60%),
      linear-gradient(0deg, rgba(0,0,0,.46) 0%, rgba(0,0,0,0) 40%);
  }
  /* Keep the nav and content above the video + scrim. */
  .hero__content { position: relative; z-index: 2; }
  /* Reduced motion / no video: fall back to a still image. */
  @media (prefers-reduced-motion: reduce) {
    .hero__video { display: none; }
    .hero {
      background:
        linear-gradient(103deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.30) 32%, rgba(0,0,0,0) 60%),
        linear-gradient(0deg, rgba(0,0,0,.46) 0%, rgba(0,0,0,0) 40%),
        url('/images/home.png') 62% center / cover no-repeat, #0A0A0B;
    }
  }
  /* Nav floats over the photo at the very top so the title can center vertically. */
  .hero__bar {
    position: absolute; top: 0; left: 0; right: 0; z-index: 3;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding-top: clamp(20px, 2.6vw, 34px); padding-bottom: clamp(20px, 2.6vw, 34px);
  }
  .hero__brand {
    display: inline-flex; align-items: center; text-decoration: none; white-space: nowrap;
  }
  .hero__logo { height: clamp(58px, 6.5vw, 96px); width: auto; display: block; }
  .hero__nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 38px); }
  .hero__nav a { color: #fff; text-decoration: none; font-weight: 500; font-size: 16px; opacity: .92;
    transition: opacity .2s ease; white-space: nowrap; }
  .hero__nav a:hover { opacity: 1; }

  /* Burger — hidden on desktop, shown on mobile */
  .hero__burger { display: none; width: 46px; height: 42px; border: 0; background: transparent; cursor: pointer;
    flex-direction: column; justify-content: center; gap: 5px; padding: 0; z-index: 5; }
  .hero__burger span { display: block; width: 26px; height: 2px; margin: 0 auto; background: #fff; border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease; }
  .hero__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hero__burger.is-open span:nth-child(2) { opacity: 0; }
  .hero__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__content { width: 100%; }
  /* Title block lives in the left half of the container (like a col-md-6),
     leaving the right half — the face — clear. */
  .hero__col { max-width: 56%; }
  @media (max-width: 900px) { .hero__col { max-width: 100%; } }
  .hero__title {
    font-family: var(--hd); font-weight: 700; color: #fff; text-align: left;
    font-size: clamp(40px, 5.4vw, 72px); line-height: 1.04; letter-spacing: -.025em;
    margin: 0; white-space: nowrap;
    text-shadow: 0 2px 34px rgba(0,0,0,.28);
  }
  @media (max-width: 560px) { .hero__title { white-space: normal; } }
  .hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(26px, 3.2vw, 40px); }
  .hero__caption {
    font-family: var(--serif); font-style: italic; font-weight: 400;
    font-size: clamp(15px, 1.35vw, 19px); color: rgba(255,255,255,.9); margin: clamp(20px, 2.4vw, 28px) 0 0;
  }

  /* Pills & buttons — black & white only */
  .pill {
    display: inline-flex; align-items: center; gap: 9px; height: 42px; padding: 0 20px; border-radius: 999px;
    font-family: var(--hd); font-weight: 500; font-size: 14.5px; text-decoration: none; cursor: pointer;
    background: var(--ink); color: #fff; border: 1px solid var(--ink);
    transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  }
  .pill:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(0,0,0,.6); }
  /* Slimmer pills, matching the reference */
  .btn2 {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    height: 35px; padding: 0 26px; border-radius: 999px;
    font-family: var(--hd); font-weight: 500; font-size: 15px; text-decoration: none; cursor: pointer;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  }
  .btn2 svg { width: 18px; height: 18px; transition: transform .25s ease; }
  .btn2--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
  .btn2--dark:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -18px rgba(0,0,0,.6); }
  .btn2--dark:hover svg { transform: translateX(4px); }
  .btn2--light { background: #fff; color: var(--ink); }
  .btn2--light:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -18px rgba(0,0,0,.4); }
  .btn2:active, .pill:active { transform: translateY(0); }

  @media (max-width: 860px) {
    .hero__burger { display: flex; }
    /* Collapse the nav into a dropdown panel toggled by the burger. */
    .hero__nav {
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 0;
      background: #0f0f10; padding: 6px clamp(20px, 5vw, 34px) 18px;
      box-shadow: 0 26px 44px -24px rgba(0,0,0,.7);
      max-height: 0; overflow: hidden; visibility: hidden;
      transition: max-height .28s ease;
    }
    .hero__nav.is-open { max-height: 80vh; visibility: visible; }
    .hero__nav a { padding: 14px 2px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 17px; opacity: .95; }
    .hero__nav a:last-child { border-bottom: 0; }
    .hero__nav .pill { align-self: flex-start; margin-top: 14px; height: 46px;
      background: #fff; color: var(--ink); border-color: #fff; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero__nav, .hero__burger span { transition: none; }
  }

  /* ---- Shared type / palette across the home ---------------- */
  .home .section { padding: clamp(60px, 8vw, 128px) 0; }
  .home .section--alt { background: var(--grey-soft); }
  .home .section--plum { background: var(--brick); color: #fff; }
  .home .eyebrow {
    font-family: var(--hd); font-size: 13px; font-weight: 600; letter-spacing: .16em;
    text-transform: uppercase; color: var(--brick); margin: 0 0 16px;
  }
  .home .section--plum .eyebrow { color: rgba(255,255,255,.85); }
  .home h2, .home .h2 {
    font-family: var(--serif); font-weight: 500; letter-spacing: -.005em; line-height: 1.08;
    font-size: clamp(30px, 4.4vw, 54px);
  }
  .home h3 { font-family: var(--hd); font-weight: 700; letter-spacing: -.01em; }
  .home p, .home li, .home .lead, .home .note { font-family: var(--hd); }
  .home .lead { font-size: clamp(17px, 1.5vw, 21px); color: var(--ink-soft); line-height: 1.55; }

  /* About — editorial copy on the left, photo + floating badges on the right.
     The floating-badge overlap needs a wide media column, so it only runs above
     1080px; below that the section stacks and the badges sit under the photo. */
  .about { overflow-x: clip; }   /* the absolute badges must never spill a scrollbar */
  .about-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 6vw, 92px); align-items: center; }
  @media (max-width: 1080px) { .about-grid { grid-template-columns: 1fr; gap: clamp(36px, 8vw, 56px); } }

  .home .about-eyebrow {
    font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--ink);
    font-size: clamp(30px, 4vw, 50px); line-height: 1; letter-spacing: -.01em; margin: 0 0 14px;
  }
  .home .about-lede {
    font-family: "Playfair Display", Georgia, serif; font-weight: 600; text-transform: uppercase; letter-spacing: .01em;
    font-size: clamp(15px, 1.2vw, 18px); line-height: 1.2; color: var(--ink); margin: 0 0 28px;
  }
  .about-body { display: flex; flex-direction: column; gap: 20px; max-width: 52ch; }
  .home .about-body p { color: var(--ink-soft); font-size: clamp(16px, 1.2vw, 18px); line-height: 1.7; margin: 0; }

  /* Photo + badges */
  .about-media { position: relative; }
  .about-frame {
    aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden;
    background: var(--img, none), linear-gradient(135deg, #d7d7d7, #bdbdbd);
    background-size: cover; background-position: center;
    box-shadow: 0 34px 70px -40px rgba(0,0,0,.5);
    margin-left: clamp(0px, 6vw, 78px);   /* clear room on the left for the badges to overlap */
  }
  .about-badges { list-style: none; margin: 0; padding: 0; position: absolute; inset: 0; pointer-events: none; }
  .about-badge {
    position: absolute; display: inline-flex; align-items: center; gap: 11px;
    background: #fff; border-radius: 999px; padding: 11px 22px 11px 12px;
    font-family: var(--hd); font-weight: 700; font-size: 13.5px; letter-spacing: .04em;
    text-transform: uppercase; color: var(--ink); white-space: nowrap;
    box-shadow: 0 18px 40px -20px rgba(0,0,0,.42), 0 2px 8px -4px rgba(0,0,0,.2);
  }
  .about-badge__ico {
    display: inline-grid; place-items: center; width: 30px; height: 30px; flex: none;
    border-radius: 999px; background: var(--grey-soft); color: var(--brick);
  }
  .about-badge__ico svg { width: 17px; height: 17px; }
  /* Cascade down the left edge, each staggered inward — like the reference */
  .about-badge--1 { top: 35%;  left: -26px; }
  .about-badge--2 { top: 50%;  left: -65px; }
  .about-badge--3 { top: 66%;  left: 0px; }

  @media (max-width: 1080px) {
    /* Portrait photo: anchor to the top on mobile so faces aren't cropped. */
    .about-frame { margin-left: 0; aspect-ratio: 16 / 12; background-position: center top; }
    .about-badges { position: static; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
    /* Stacked badges can wrap and never exceed the container (no overflow on mobile). */
    .about-badge { position: static; max-width: 100%; white-space: normal; }
    .about-badge--1, .about-badge--2, .about-badge--3 { left: 0; top: 0; }
  }

  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); }
  @media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }

  .list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 13px; }
  .list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink-soft); line-height: 1.5; }
  .list svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }
  .list--check svg { color: var(--brick); }
  .list--cross svg { color: var(--grey); }

  /* Criteria — big serif heading + photo paired with a white card of marked items */
  .criteria__block { display: block; }
  .criteria__block + .criteria__block { margin-top: clamp(56px, 8vw, 104px); }
  .home .criteria__title {
    font-family: var(--serif); font-weight: 600; text-transform: uppercase;
    letter-spacing: .005em; line-height: 1.05;
    font-size: clamp(26px, 4vw, 50px); color: var(--ink);
    margin: 0 0 clamp(24px, 3vw, 40px); text-align: center;
  }
  .criteria__row {
    display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(24px, 3.5vw, 52px);
    align-items: center;
  }
  .criteria__block--reverse .criteria__row { grid-template-columns: 1.05fr 1fr; }
  .criteria__block--reverse .criteria__photo { order: 2; }
  @media (max-width: 860px) {
    .criteria__row, .criteria__block--reverse .criteria__row { grid-template-columns: 1fr; gap: 22px; }
    .criteria__block--reverse .criteria__photo { order: 0; }
  }
  .criteria__photo {
    aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden;
    background: var(--img, none), linear-gradient(135deg, #d7d7d7, #bdbdbd);
    background-size: cover; background-position: center;
    box-shadow: 0 30px 64px -40px rgba(0,0,0,.5);
  }
  .criteria__card {
    background: #fff; border: 1px solid #ececec; border-radius: 22px;
    padding: clamp(26px, 3vw, 40px);
    box-shadow: 0 30px 70px -46px rgba(0,0,0,.28);
  }
  .home .criteria__lead {
    font-size: clamp(16px, 1.25vw, 19px); line-height: 1.55; color: var(--ink);
    margin: 0 0 clamp(20px, 2.4vw, 28px);
  }
  .criteria__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: clamp(16px, 1.8vw, 22px); }
  .criteria__list li { display: flex; gap: 15px; align-items: flex-start; }
  .home .criteria__list li p { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.5; }
  .criteria__mark {
    flex: none; display: inline-grid; place-items: center; width: 30px; height: 30px;
    border-radius: 999px; margin-top: 1px;
  }
  .criteria__mark svg { width: 16px; height: 16px; }
  .criteria__mark--yes { background: rgba(178,58,52,.1); color: var(--brick); }
  .criteria__mark--no  { background: var(--grey-soft); color: #9a9a9a; }

  /* Image blocks scoped to the neutral palette */
  .home .imgblock {
    position: relative; border-radius: 26px; overflow: hidden; min-height: 260px;
    background: var(--img, none), linear-gradient(135deg, #d7d7d7, #bdbdbd);
    background-size: cover; background-position: center;
    box-shadow: 0 26px 60px -34px rgba(0,0,0,.4);
  }
  .home .imgblock::after {
    content: attr(data-label); position: absolute; left: 16px; bottom: 14px;
    font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: #fff; background: rgba(26,26,26,.42); padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px);
  }
  .home .imgblock:not([data-label])::after, .home .imgblock[data-label=""]::after { content: none; }

  .card { background: #fff; border: 1px solid #ececec; border-radius: 24px; padding: 32px;
    box-shadow: 0 24px 60px -38px rgba(0,0,0,.3); }
  .card h3 { font-size: 24px; margin: 0 0 12px; }
  .card p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
  .note { color: #7a7a7a; font-size: 14px; margin-top: 22px; }

  /* Real love stories — staggered photo cluster + accordion */
  .stories__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(32px, 5vw, 84px); align-items: center; }
  @media (max-width: 900px) { .stories__grid { grid-template-columns: 1fr; gap: clamp(40px, 8vw, 64px); } }

  .stories__cluster { position: relative; width: 100%; aspect-ratio: 1 / 0.94; }
  .story {
    position: absolute; margin: 0; border-radius: 16px; overflow: visible;
    background: var(--img, none), linear-gradient(135deg, #d7d7d7, #bdbdbd);
    background-size: cover; background-position: center;
    box-shadow: 0 30px 60px -34px rgba(0,0,0,.45);
  }
  .story--a { top: -33px; left: 21%; width: 47%; aspect-ratio: 3 / 3.7; z-index: 2; filter: grayscale(1); }
  .story--b { top: 33%;  left: -74px; width: 43%; aspect-ratio: 4 / 3.1; z-index: 1; }
  .story--c { top: 41%;  left: 56%; width: 43%; aspect-ratio: 3 / 3.4; z-index: 2; }
  .story__name {
    position: absolute; background: #fff; color: var(--ink);
    font-family: var(--hd); font-weight: 700; font-size: 14px; letter-spacing: .01em;
    padding: 9px 16px; border-radius: 10px; white-space: nowrap;
    box-shadow: 0 14px 30px -14px rgba(0,0,0,.4);
  }
  .story--a .story__name { top: 34%;  right: -18px; }
  .story--b .story__name { bottom: 20%; left: -18px; }
  .story--c .story__name { top: -16px; left: 12%; text-align: center; white-space: normal; max-width: 12ch; }

  /* Keep the overlapping cluster on tablet/mobile — just contain it and pull
     the negative offsets inward so nothing clips the viewport edge. */
  @media (max-width: 900px) {
    .stories__cluster { max-width: 440px; margin: 0 auto; }
    .story--a { top: -16px; left: 22%; }
    .story--b { left: 0; }
    .story--c { left: 55%; }
    .story--a .story__name { right: -8px; }
    .story--b .story__name { left: -8px; }
  }
  @media (max-width: 480px) {
    .stories__cluster { max-width: 340px; }
    .story__name { font-size: 12.5px; padding: 7px 12px; }
    .story--c .story__name { top: -12px; }
  }

  .stories__title { margin: 10px 0 clamp(26px, 3vw, 40px); }
  .stories__cta { margin-top: clamp(28px, 3.4vw, 40px); }

  /* Accordion — CSS-only via <details> */
  .accordion { border-top: 1px solid #dcdcdc; }
  .acc { border-bottom: 1px solid #dcdcdc; }
  .acc summary {
    list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
    gap: 18px; padding: clamp(16px, 1.7vw, 22px) 2px;
    font-family: var(--serif); font-weight: 500; font-size: clamp(19px, 1.7vw, 24px); color: var(--ink);
  }
  .acc summary::-webkit-details-marker { display: none; }
  .acc__chevron { flex: none; width: 12px; height: 12px; border-right: 2px solid var(--ink-soft);
    border-bottom: 2px solid var(--ink-soft); transform: rotate(45deg); transition: transform .25s ease; }
  .acc[open] .acc__chevron { transform: rotate(225deg); }
  .acc__body { padding: 0 2px clamp(18px, 2vw, 24px); }
  .home .acc__body p { margin: 0; color: var(--ink-soft); font-size: clamp(15px, 1.1vw, 16.5px); line-height: 1.65; max-width: 52ch; }
  @media (prefers-reduced-motion: reduce) { .acc__chevron { transition: none; } }

  /* Match near your city — serif title, city pills, photo grid */
  .match-city { background: var(--grey-soft); }
  .match-city__title {
    font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; line-height: 1.04;
    font-size: clamp(34px, 5.4vw, 78px); color: var(--ink); max-width: 20ch; margin: 0 auto;
    text-align: center;
  }
  .match-city__cities {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 4px 0;
    margin: clamp(28px, 4vw, 52px) auto clamp(34px, 5vw, 60px); max-width: 900px;
  }
  /* Bold place names, non-clickable, separated by an em dash. */
  .city-pill {
    display: inline-flex; align-items: center; font-family: var(--hd);
    font-weight: 700; font-size: clamp(16px, 1.3vw, 19px); color: var(--ink); white-space: nowrap;
  }
  .city-pill:not(:last-child)::after {
    content: '—'; margin: 0 12px; color: var(--muted); font-weight: 400;
  }
  .match-city__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 22px);
  }
  .match-city__cell {
    aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden;
    background: var(--img, none), linear-gradient(135deg, #d7d7d7, #bdbdbd);
    background-size: cover; background-position: center;
  }
  @media (max-width: 820px) { .match-city__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 460px) { .match-city__grid { grid-template-columns: 1fr; } }

  /* Footer — brick red per the charter */
  .foot--home { background: var(--brick, #B23A34); color: #fff; padding: clamp(48px, 6vw, 88px) 0 40px; }
  .foot--home .foot__in { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
  .foot--home .foot__brand { font-family: "Inter", system-ui, sans-serif; font-weight: 700; font-size: 21px;
    letter-spacing: -.02em; color: #fff; text-decoration: none; }
  .foot--home .foot__links { display: flex; gap: 26px; flex-wrap: wrap; }
  .foot--home a { color: #fff; text-decoration: none; font-size: 15px; opacity: .9; }
  .foot--home a:hover { opacity: 1; }
  .foot--home .foot__copy { opacity: .8; font-size: 14px; }

  :where(.home a, .home button):focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 12px; }
  .home .section:not(.section--plum) :where(a,button):focus-visible { outline-color: var(--brick); }

  /* ---- Participation card image (editable via admin) ---- */
  .card__img { width:100%; aspect-ratio:16/10; border-radius:16px; margin-bottom:16px;
    background:#EDE4DA var(--img) center/cover no-repeat; }
  .card__desc p { margin:0 0 .6em; }
  .card__desc p:last-child { margin-bottom:0; }

  /* ---- Section subtitle (participation + presentation heads) ---- */
  .home .section__subtitle,
  .home .presentation__subtitle {
    font-family: var(--hd); color: var(--ink-soft); line-height: 1.6;
    font-size: clamp(16px, 1.3vw, 18px); margin: 12px 0 0; max-width: 60ch;
  }
  .participation__head { max-width: 62ch; }

  /* ---- Presentation — centered head + three photo/title/text cards ---- */
  .presentation__head { text-align: center; max-width: 60ch; margin: 0 auto clamp(30px, 4vw, 52px); }
  .presentation__head .presentation__subtitle { margin-left: auto; margin-right: auto; max-width: 48ch; }
  .three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 40px); }
  @media (max-width: 900px) { .three-col { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
  .pcard { display: flex; flex-direction: column; }
  .pcard__img {
    width: 100%; aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden;
    background: var(--img, none), linear-gradient(135deg, #d7d7d7, #bdbdbd);
    background-size: cover; background-position: center;
    box-shadow: 0 24px 50px -34px rgba(0,0,0,.45); margin-bottom: 18px;
  }
  .home .pcard__title { font-size: clamp(19px, 1.7vw, 23px); margin: 0 0 8px; }
  .pcard__body p { color: var(--ink-soft); font-size: clamp(15px, 1.1vw, 16.5px); line-height: 1.65; margin: 0 0 .6em; }
  .pcard__body p:last-child { margin-bottom: 0; }

  /* ---- What is Linga — about-style split, larger image, no badges ---- */
  .whatis-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(32px, 6vw, 84px); align-items: center; }
  @media (max-width: 1080px) { .whatis-grid { grid-template-columns: 1fr; gap: clamp(32px, 8vw, 52px); } }
  .whatis-media { position: relative; }
  .whatis-frame {
    aspect-ratio: 16 / 11; border-radius: 22px; overflow: hidden;
    background: var(--img, none), linear-gradient(135deg, #d7d7d7, #bdbdbd);
    background-size: cover; background-position: center;
    box-shadow: 0 40px 80px -44px rgba(0,0,0,.5);
  }
