/*
  Platform Health Club
  Website styles extracted into a standalone stylesheet.
  Main design tokens are defined in :root near the top of this file.
  Replace website images in /assets/images/active/ without touching the CSS.
*/

:root {
      --bg: #050505;
      --bg-elevated: #0c0c0d;
      --panel: rgba(255,255,255,0.04);
      --panel-strong: rgba(255,255,255,0.07);
      --line: rgba(255,255,255,0.12);
      --line-strong: rgba(255,255,255,0.2);
      --text: #f4f1e8;
      --text-muted: rgba(244,241,232,0.72);
      --text-soft: rgba(244,241,232,0.58);
      --brand: #93b278;
      --brand-soft: #bfefb0;
      --brand-deep: #6f8857;
      --stone: #f1ece1;
      --stone-2: #e8e2d6;
      --stone-line: rgba(0,0,0,0.12);
      --stone-text: #111111;
      --success: #cbffbd;
      --container: min(1480px, calc(100% - 48px));
      --radius: 28px;
      --radius-md: 22px;
      --radius-sm: 16px;
      --shadow: 0 25px 80px rgba(0,0,0,0.30);
      --shadow-soft: 0 16px 40px rgba(0,0,0,0.18);
      --section: clamp(92px, 10vw, 144px);
      --announcement-h: 40px;
      --header-h: 84px;
      --hero-min: min(980px, calc(100svh - var(--announcement-h)));
      --eyebrow-gap: clamp(22px, 2.3vw, 34px);
      --ease: cubic-bezier(.2,.7,.2,1);
    }

    * {
      box-sizing: border-box;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--announcement-h) + var(--header-h) + 34px);
      -webkit-text-size-adjust: 100%;
    }

    body {
      margin: 0;
      font-family: "League Spartan", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 10%, rgba(147,178,120,0.10), transparent 28%),
        radial-gradient(circle at 85% 0%, rgba(191,239,176,0.05), transparent 22%),
        radial-gradient(circle at 100% 100%, rgba(147,178,120,0.06), transparent 26%),
        var(--bg);
      line-height: 1.15;
      overflow-x: hidden;
      overscroll-behavior-x: none;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
      background-size: 64px 64px;
      opacity: 0.15;
      pointer-events: none;
      mask-image: radial-gradient(circle at center, black 25%, transparent 85%);
      z-index: 0;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    button, input, select, textarea {
      font: inherit;
    }

    button {
      border: 0;
      background: none;
      cursor: pointer;
    }

    .container {
      width: var(--container);
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    section[id] {
      scroll-margin-top: calc(var(--announcement-h) + var(--header-h) + 34px);
    }

    .announcement {
      position: sticky;
      top: 0;
      z-index: 60;
      height: var(--announcement-h);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 0 18px;
      background: rgba(8,8,8,0.93);
      border-bottom: 1px solid rgba(255,255,255,0.09);
      color: var(--brand-soft);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .announcement span {
      color: rgba(244,241,232,0.66);
      font-weight: 600;
      letter-spacing: 0.12em;
    }

    .site-header {
      position: sticky;
      top: var(--announcement-h);
      z-index: 55;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      background: linear-gradient(to bottom, rgba(5,5,5,0.88), rgba(5,5,5,0.68));
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .site-header.scrolled {
      background: linear-gradient(to bottom, rgba(5,5,5,0.94), rgba(5,5,5,0.84));
      border-bottom-color: rgba(255,255,255,0.10);
    }

    .header-inner {
      min-height: var(--header-h);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      min-width: 0;
    }

    .brand img {
      height: clamp(42px, 3.3vw, 58px);
      width: auto;
      max-width: min(430px, 46vw);
      min-width: 0;
      opacity: 1;
      display: block;
      object-fit: contain;
    }

    .site-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(16px, 1.4vw, 28px);
      min-width: 0;
    }

    .site-nav a {
      position: relative;
      display: inline-flex;
      align-items: center;
      color: rgba(244,241,232,0.78);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color .25s var(--ease);
    }


    .site-nav.mobile {
      display: none;
    }

    .site-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -10px;
      height: 1px;
      background: var(--brand-soft);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .25s var(--ease);
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
      color: var(--text);
    }

    .site-nav a:hover::after,
    .site-nav a:focus-visible::after {
      transform: scaleX(1);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition:
        transform .25s var(--ease),
        border-color .25s var(--ease),
        background .25s var(--ease),
        color .25s var(--ease),
        box-shadow .25s var(--ease);
      will-change: transform;
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-2px);
    }

    .button-primary {
      background: linear-gradient(180deg, var(--brand-soft), var(--brand));
      color: #060606;
      box-shadow: 0 12px 30px rgba(147,178,120,0.22);
    }

    .button-primary:hover,
    .button-primary:focus-visible {
      box-shadow: 0 18px 40px rgba(147,178,120,0.32);
    }

    .button-secondary {
      background: rgba(255,255,255,0.03);
      border-color: rgba(255,255,255,0.16);
      color: var(--text);
    }

    .button-secondary:hover,
    .button-secondary:focus-visible {
      border-color: rgba(255,255,255,0.30);
      background: rgba(255,255,255,0.06);
    }

    .button-dark {
      background: #101010;
      color: var(--text);
      border-color: rgba(255,255,255,0.14);
    }

    .button-dark:hover,
    .button-dark:focus-visible {
      background: #151515;
      border-color: rgba(255,255,255,0.28);
    }

    .button-light {
      background: rgba(0,0,0,0.03);
      color: var(--stone-text);
      border-color: rgba(0,0,0,0.15);
    }

    .button-light:hover,
    .button-light:focus-visible {
      border-color: rgba(0,0,0,0.28);
      background: rgba(0,0,0,0.06);
    }

    .button-small {
      min-height: 44px;
      padding: 0 18px;
      font-size: 12px;
      letter-spacing: 0.12em;
    }

    .nav-toggle {
      display: none;
      width: 48px;
      height: 48px;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.03);
    }

    .nav-toggle span {
      position: relative;
      width: 18px;
      height: 2px;
      background: var(--text);
      display: block;
    }

    .nav-toggle span::before,
    .nav-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      background: var(--text);
      transition: transform .25s var(--ease), top .25s var(--ease), bottom .25s var(--ease), opacity .25s var(--ease);
    }

    .nav-toggle span::before { top: -6px; }
    .nav-toggle span::after { bottom: -6px; }

    .nav-open .nav-toggle span {
      background: transparent;
    }

    .nav-open .nav-toggle span::before {
      top: 0;
      transform: rotate(45deg);
    }

    .nav-open .nav-toggle span::after {
      bottom: 0;
      transform: rotate(-45deg);
    }

    main {
      position: relative;
      z-index: 1;
    }

    .hero {
      position: relative;
      min-height: var(--hero-min);
      display: flex;
      align-items: flex-end;
      padding: clamp(72px, 8vh, 110px) 0 clamp(52px, 7vh, 78px);
      isolation: isolate;
      overflow: clip;
    }

    .hero-media,
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: -3;
    }

    .hero-media {
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      margin: 0;
      opacity: 0;
      animation: heroCycle 18s infinite;
    }

    .hero-slide:nth-child(1) { animation-delay: 0s; }
    .hero-slide:nth-child(2) { animation-delay: 6s; }
    .hero-slide:nth-child(3) { animation-delay: 12s; }

    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.84) saturate(1.02) contrast(1.04);
      transform: scale(1.02);
      animation: heroZoom 18s infinite;
    }

    .hero-slide:nth-child(1) img { animation-delay: 0s; object-position: center 52%; }
    .hero-slide:nth-child(2) img { animation-delay: 6s; object-position: center 60%; }
    .hero-slide:nth-child(3) img { animation-delay: 12s; object-position: center 38%; }

    @keyframes heroCycle {
      0%, 29% { opacity: 1; }
      33%, 100% { opacity: 0; }
    }

    @keyframes heroZoom {
      0% { transform: scale(1.02); }
      33% { transform: scale(1.08); }
      100% { transform: scale(1.08); }
    }

    .hero-overlay {
      background:
        linear-gradient(180deg, rgba(5,5,5,0.18) 0%, rgba(5,5,5,0.42) 22%, rgba(5,5,5,0.70) 72%, rgba(5,5,5,0.94) 100%),
        radial-gradient(circle at 74% 24%, rgba(147,178,120,0.18), transparent 26%),
        linear-gradient(90deg, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.40) 52%, rgba(5,5,5,0.70) 100%);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 180px;
      background: linear-gradient(to bottom, transparent, var(--bg));
      z-index: -1;
    }

    .hero-pattern {
      position: absolute;
      right: clamp(-60px, -5vw, -20px);
      bottom: clamp(80px, 10vh, 130px);
      width: min(420px, 32vw);
      aspect-ratio: 1 / 1.15;
      opacity: 0.18;
      pointer-events: none;
      z-index: -1;
      background-image: radial-gradient(circle, rgba(191,239,176,0.75) 0 3px, transparent 4px);
      background-size: 24px 24px;
      clip-path: polygon(5% 50%, 58% 5%, 95% 5%, 46% 50%, 95% 95%, 58% 95%);
      filter: blur(0.2px);
      mask-image: linear-gradient(90deg, transparent, black 22%, black 78%, transparent);
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 760px) minmax(320px, 380px);
      justify-content: center;
      align-items: end;
      gap: clamp(40px, 4vw, 76px);
      width: min(100%, 1480px);
      margin: 0 auto;
      padding-inline: clamp(40px, 6vw, 108px);
    }

    .hero-copy {
      max-width: 760px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin: 0 0 var(--eyebrow-gap);
      color: var(--brand-soft);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 44px;
      height: 1px;
      background: linear-gradient(to right, rgba(191,239,176,0), rgba(191,239,176,0.95));
    }

    .hero h1 {
      margin: 0 0 22px;
      font-size: clamp(54px, 7vw, 112px);
      line-height: 0.92;
      letter-spacing: -0.045em;
      font-weight: 900;
      max-width: 8.8ch;
      text-wrap: balance;
    }

    .hero-text {
      max-width: 40rem;
      margin: 0;
      color: var(--text-muted);
      font-size: clamp(18px, 1.6vw, 24px);
      line-height: 1.38;
      letter-spacing: -0.02em;
      font-weight: 400;
    }

    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .hero-benefits {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
      padding-top: 26px;
      border-top: 1px solid rgba(255,255,255,0.14);
    }

    .hero-benefits span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(244,241,232,0.84);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .hero-benefits span::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 18px rgba(147,178,120,0.45);
    }

    .hero-card {
      justify-self: stretch;
      width: 100%;
      max-width: 380px;
      padding: 28px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.14);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
        rgba(8,8,8,0.55);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
    }

    .hero-card h2 {
      margin: 0 0 10px;
      font-size: clamp(26px, 2vw, 36px);
      line-height: 0.98;
      letter-spacing: -0.03em;
      font-weight: 800;
    }

    .hero-card > p:not(.eyebrow) {
      margin: 0;
      color: var(--text-muted);
      font-size: 16px;
      line-height: 1.5;
    }

    .hero-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 14px;
      margin: 24px 0;
    }

    .hero-stat {
      padding: 16px 14px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.04);
    }

    .hero-stat strong {
      display: block;
      margin-bottom: 8px;
      font-size: 30px;
      line-height: 0.95;
      letter-spacing: -0.05em;
      color: var(--brand-soft);
      font-weight: 900;
    }

    .hero-stat span {
      display: block;
      color: rgba(244,241,232,0.68);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.3;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .scroll-note {
      margin-top: 20px;
      color: rgba(244,241,232,0.56);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .section {
      position: relative;
      padding: var(--section) 0;
    }

    .section-dark {
      background:
        linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.0)),
        transparent;
    }

    .section-light {
      background:
        radial-gradient(circle at top right, rgba(147,178,120,0.13), transparent 24%),
        linear-gradient(180deg, var(--stone) 0%, #f7f3ea 100%);
      color: var(--stone-text);
      border-top: 1px solid rgba(255,255,255,0.04);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .section-light .eyebrow {
      color: var(--brand-deep);
    }

    .section-light .eyebrow::before {
      background: linear-gradient(to right, rgba(111,136,87,0), rgba(111,136,87,0.85));
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
      gap: 24px;
      align-items: end;
      margin-bottom: clamp(44px, 4.4vw, 68px);
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(36px, 4.2vw, 72px);
      line-height: 0.95;
      letter-spacing: -0.045em;
      font-weight: 900;
      max-width: 12ch;
      text-wrap: balance;
    }

    .section-head > p {
      margin: 0;
      color: inherit;
      opacity: 0.72;
      font-size: clamp(18px, 1.5vw, 22px);
      line-height: 1.45;
      letter-spacing: -0.02em;
      max-width: 35rem;
      justify-self: end;
    }

    .intro {
      padding-top: clamp(88px, 10vw, 122px);
    }

    .intro-box {
      position: relative;
      padding: clamp(30px, 4vw, 44px);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
        rgba(8,8,8,0.38);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .ghost-slogan {
      position: absolute;
      inset: 20px 20px auto;
      font-size: clamp(48px, 10vw, 180px);
      line-height: 0.8;
      letter-spacing: -0.06em;
      font-weight: 900;
      color: rgba(255,255,255,0.025);
      text-transform: uppercase;
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
      overflow: hidden;
    }

    .intro-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
      gap: clamp(28px, 3vw, 50px);
      align-items: end;
      z-index: 1;
    }

    .intro-grid h2 {
      margin: 0;
      font-size: clamp(40px, 4.6vw, 76px);
      line-height: 0.95;
      letter-spacing: -0.05em;
      font-weight: 900;
      max-width: 11ch;
      text-wrap: balance;
    }

    .intro-grid > p {
      margin: 0;
      color: var(--text-muted);
      font-size: clamp(18px, 1.5vw, 23px);
      line-height: 1.45;
      letter-spacing: -0.02em;
    }

    .benefit-ribbon {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .benefit-ribbon span {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.03);
      color: rgba(244,241,232,0.80);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .metric-grid {
      margin-top: clamp(32px, 4vw, 44px);
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 14px;
    }

    .metric-card {
      padding: 24px 20px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.03);
    }

    .metric-card strong {
      display: block;
      margin-bottom: 10px;
      color: var(--brand-soft);
      font-size: clamp(34px, 3vw, 46px);
      line-height: 0.92;
      letter-spacing: -0.06em;
      font-weight: 900;
    }

    .metric-card span {
      display: block;
      color: rgba(244,241,232,0.72);
      font-size: 12px;
      font-weight: 800;
      line-height: 1.4;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .story {
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
      gap: clamp(28px, 3.4vw, 58px);
      align-items: center;
    }

    .story.story-reverse {
      grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    }

    .story-media {
      position: relative;
      overflow: hidden;
      border-radius: clamp(24px, 3vw, 34px);
      background: #0b0b0c;
      box-shadow: var(--shadow);
      min-height: 0;
      aspect-ratio: 16 / 11;
    }

    .story-media::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.08), transparent 22%),
        linear-gradient(0deg, rgba(5,5,5,0.22), transparent 30%);
      z-index: 1;
      pointer-events: none;
    }

    .story-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s var(--ease);
    }

    .story-media:hover img {
      transform: scale(1.03);
    }

    .story-copy {
      position: relative;
      padding-right: clamp(0px, 1vw, 10px);
    }

    .section-light .story-copy p:not(.eyebrow),
    .section-light .section-head > p,
    .section-light .club-card p,
    .section-light .club-meta,
    .section-light .pack-card p,
    .section-light .trial-copy p:not(.eyebrow),
    .section-light .footer-text {
      color: rgba(17,17,17,0.72);
    }

    .story-copy h3 {
      margin: 0 0 18px;
      font-size: clamp(34px, 3.5vw, 60px);
      line-height: 0.95;
      letter-spacing: -0.045em;
      font-weight: 900;
      max-width: 11ch;
      text-wrap: balance;
    }

    .story-copy p:not(.eyebrow) {
      margin: 0 0 18px;
      color: var(--text-muted);
      font-size: clamp(18px, 1.45vw, 22px);
      line-height: 1.48;
      letter-spacing: -0.02em;
      max-width: 34rem;
    }

    .story-list {
      display: grid;
      gap: 12px;
      margin: 24px 0 32px;
      padding: 0;
      list-style: none;
    }

    .story-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--text);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.45;
      letter-spacing: 0.02em;
    }

    .story-list li::before {
      content: "";
      flex: 0 0 8px;
      width: 8px;
      height: 8px;
      margin-top: 6px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 18px rgba(147,178,120,0.4);
    }

    .section-light .story-list li {
      color: #161616;
    }

    .mosaic {
      display: grid;
      grid-template-columns: repeat(12, minmax(0,1fr));
      gap: 18px;
    }

    .mosaic-card {
      position: relative;
      overflow: hidden;
      display: flex;
      min-height: 520px;
      border-radius: clamp(22px, 3vw, 30px);
      border: 1px solid rgba(255,255,255,0.10);
      background: #0b0b0c;
      box-shadow: var(--shadow-soft);
      grid-column: span 6;
    }

    .mosaic-card.large {
      grid-column: span 7;
      min-height: 620px;
    }

    .mosaic-card.small {
      grid-column: span 5;
      min-height: 300px;
    }

    .mosaic-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.84) contrast(1.02);
      transition: transform .8s var(--ease);
    }

    .mosaic-card.card-padel img {
      object-position: center 43%;
    }

    .mosaic-card.card-nutrition img {
      object-position: center 58%;
    }

    .mosaic-card:hover img {
      transform: scale(1.04);
    }

    .mosaic-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(5,5,5,0.02) 0%, rgba(5,5,5,0.08) 25%, rgba(5,5,5,0.78) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .mosaic-copy {
      position: relative;
      z-index: 2;
      margin-top: auto;
      padding: 26px;
    }

    .mosaic-copy h3 {
      margin: 0 0 12px;
      font-size: clamp(28px, 2.5vw, 40px);
      line-height: 0.96;
      letter-spacing: -0.04em;
      font-weight: 900;
      max-width: 10ch;
    }

    .mosaic-copy p {
      margin: 0;
      color: rgba(244,241,232,0.76);
      font-size: 16px;
      line-height: 1.45;
      letter-spacing: -0.01em;
      max-width: 28rem;
    }

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

    .club-card {
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding: 28px;
      border-radius: 24px;
      border: 1px solid var(--stone-line);
      background: rgba(255,255,255,0.6);
      box-shadow: 0 14px 30px rgba(0,0,0,0.05);
      min-height: 100%;
    }

    .club-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
    }

    .club-tag {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(147,178,120,0.16);
      color: #162010;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .club-card h3 {
      margin: 0;
      color: #121212;
      font-size: clamp(24px, 2vw, 34px);
      line-height: 0.96;
      letter-spacing: -0.04em;
      font-weight: 900;
      max-width: 11ch;
    }

    .club-card p {
      margin: 0;
      font-size: 16px;
      line-height: 1.55;
    }

    .club-meta {
      display: grid;
      gap: 10px;
      padding-top: 18px;
      border-top: 1px solid rgba(0,0,0,0.09);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.45;
      letter-spacing: 0.03em;
    }

    .club-meta strong {
      color: #101010;
      font-weight: 800;
    }

    .club-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: auto;
      padding-top: 4px;
    }

    .membership-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 18px;
    }

    .member-card {
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding: 28px;
      min-height: 100%;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.12);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025)),
        #0b0b0c;
      box-shadow: var(--shadow-soft);
    }

    .member-card.featured {
      background: linear-gradient(180deg, rgba(191,239,176,0.96), rgba(147,178,120,0.92));
      color: #0b0b0c;
      border-color: rgba(191,239,176,0.74);
      box-shadow: 0 20px 42px rgba(147,178,120,0.22);
    }

    .member-tier {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .member-tier h3 {
      margin: 0;
      font-size: clamp(28px, 2.3vw, 40px);
      line-height: 0.95;
      letter-spacing: -0.05em;
      font-weight: 900;
    }

    .member-duration {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.07);
      color: rgba(244,241,232,0.80);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .featured .member-duration {
      background: rgba(0,0,0,0.12);
      color: rgba(0,0,0,0.78);
    }

    .member-card p {
      margin: 0;
      color: rgba(244,241,232,0.74);
      font-size: 16px;
      line-height: 1.5;
    }

    .featured p {
      color: rgba(0,0,0,0.72);
    }

    .member-card ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .member-card li {
      color: rgba(244,241,232,0.92);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.4;
      display: flex;
      gap: 12px;
    }

    .featured li {
      color: #0d0d0d;
    }

    .member-card li::before {
      content: "";
      flex: 0 0 7px;
      width: 7px;
      height: 7px;
      margin-top: 7px;
      border-radius: 50%;
      background: var(--brand-soft);
      box-shadow: 0 0 12px rgba(191,239,176,0.45);
    }

    .featured li::before {
      background: rgba(0,0,0,0.75);
      box-shadow: none;
    }

    .member-card .button {
      margin-top: auto;
      width: 100%;
    }

    .pack-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
      gap: clamp(26px, 3vw, 50px);
      align-items: stretch;
    }

    .pack-visual {
      position: relative;
      overflow: hidden;
      border-radius: clamp(24px, 3vw, 32px);
      box-shadow: 0 22px 60px rgba(0,0,0,0.08);
      min-height: 100%;
    }

    .pack-visual img {
      width: 100%;
      height: 100%;
      min-height: 620px;
      object-fit: cover;
      object-position: center 32%;
    }

    .pack-list {
      display: grid;
      gap: 14px;
    }

    .pack-card {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 22px 22px 22px 18px;
      border-radius: 22px;
      border: 1px solid rgba(0,0,0,0.09);
      background: rgba(255,255,255,0.60);
      box-shadow: 0 12px 26px rgba(0,0,0,0.05);
    }

    .pack-index {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: linear-gradient(180deg, var(--brand-soft), var(--brand));
      color: #0b0b0c;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      box-shadow: 0 12px 24px rgba(147,178,120,0.18);
    }

    .pack-card h3 {
      margin: 0 0 8px;
      color: #111111;
      font-size: clamp(24px, 2vw, 34px);
      line-height: 0.96;
      letter-spacing: -0.04em;
      font-weight: 900;
      max-width: 14ch;
    }

    .pack-card p {
      margin: 0;
      font-size: 15px;
      line-height: 1.5;
      max-width: 34rem;
    }

    .pack-meta {
      text-align: right;
      display: grid;
      gap: 8px;
    }

    .pack-meta span {
      display: inline-flex;
      justify-content: flex-end;
      color: rgba(17,17,17,0.86);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .trial-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: clamp(30px, 3vw, 56px);
      align-items: start;
    }

    .trial-copy {
      padding-top: 10px;
    }

    .trial-copy h2 {
      margin: 0 0 18px;
      font-size: clamp(42px, 5vw, 82px);
      line-height: 0.92;
      letter-spacing: -0.05em;
      font-weight: 900;
      max-width: 10ch;
      text-wrap: balance;
    }

    .trial-copy p:not(.eyebrow) {
      margin: 0 0 22px;
      color: var(--text-muted);
      font-size: clamp(18px, 1.5vw, 22px);
      line-height: 1.5;
      letter-spacing: -0.02em;
      max-width: 34rem;
    }

    .trial-contact {
      display: grid;
      gap: 12px;
      margin-top: 28px;
    }

    .trial-contact a {
      display: inline-flex;
      gap: 10px;
      align-items: center;
      color: rgba(244,241,232,0.88);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.4;
      letter-spacing: 0.02em;
    }

    .trial-contact a::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 18px rgba(147,178,120,0.4);
    }

    .form-shell {
      padding: clamp(24px, 3vw, 32px);
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,0.12);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
        rgba(8,8,8,0.48);
      box-shadow: var(--shadow);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 16px;
    }

    .field {
      display: grid;
      gap: 10px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      color: rgba(244,241,232,0.80);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 56px;
      padding: 0 16px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.04);
      color: var(--text);
      outline: none;
      transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
    }

    select {
      appearance: none;
      -webkit-appearance: none;
      padding-right: 52px;
      color-scheme: dark;
      background-color: #121212;
      background-image:
        linear-gradient(45deg, transparent 50%, rgba(244,241,232,0.76) 50%),
        linear-gradient(135deg, rgba(244,241,232,0.76) 50%, transparent 50%);
      background-position:
        calc(100% - 24px) calc(50% - 3px),
        calc(100% - 18px) calc(50% - 3px);
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
    }

    select option,
    select optgroup {
      background: #101010;
      color: var(--text);
    }

    select option[disabled] {
      color: rgba(244,241,232,0.46);
    }

    select option:checked,
    select option:hover,
    select option:focus {
      background: #1a1a1a;
      color: var(--brand-soft);
    }

    textarea {
      min-height: 132px;
      padding: 16px;
      resize: vertical;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(244,241,232,0.40);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(191,239,176,0.62);
      background: rgba(255,255,255,0.06);
      box-shadow: 0 0 0 4px rgba(147,178,120,0.14);
    }

    .form-note {
      margin: 16px 0 0;
      color: rgba(244,241,232,0.55);
      font-size: 13px;
      line-height: 1.5;
    }

    .request-output {
      margin-top: 20px;
      padding: 18px;
      border-radius: 20px;
      border: 1px solid rgba(191,239,176,0.24);
      background: rgba(191,239,176,0.08);
    }

    .request-output h3 {
      margin: 0 0 10px;
      font-size: 24px;
      line-height: 1;
      letter-spacing: -0.03em;
      font-weight: 900;
      color: var(--success);
    }

    .request-output p {
      margin: 0 0 12px;
      color: rgba(244,241,232,0.78);
      font-size: 15px;
      line-height: 1.5;
    }

    .request-output pre {
      margin: 0;
      white-space: pre-wrap;
      word-break: break-word;
      color: rgba(244,241,232,0.86);
      font-size: 14px;
      line-height: 1.5;
      background: rgba(0,0,0,0.18);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 14px;
      border-radius: 16px;
      max-height: 260px;
      overflow: auto;
    }

    .request-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 14px;
    }



    .social-summary {
      display: grid;
      gap: 18px;
      justify-items: start;
      align-self: end;
    }

    .social-summary p {
      margin: 0;
      color: rgba(244,241,232,0.72);
      font-size: clamp(18px, 1.5vw, 22px);
      line-height: 1.45;
      letter-spacing: -0.02em;
      max-width: 35rem;
    }

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

    .social-card {
      position: relative;
      overflow: hidden;
      display: block;
      border-radius: clamp(22px, 3vw, 28px);
      border: 1px solid rgba(255,255,255,0.10);
      background: #0b0b0c;
      box-shadow: var(--shadow-soft);
      aspect-ratio: 1 / 1;
      isolation: isolate;
    }

    .social-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s var(--ease);
    }

    .social-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(5,5,5,0.02) 0%, rgba(5,5,5,0.10) 45%, rgba(5,5,5,0.82) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .social-card:hover img,
    .social-card:focus-visible img {
      transform: scale(1.035);
    }

    .social-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(8,8,8,0.52);
      color: rgba(244,241,232,0.88);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .social-caption {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 2;
      display: grid;
      gap: 8px;
    }

    .social-caption strong {
      display: block;
      color: var(--text);
      font-size: clamp(20px, 2.1vw, 28px);
      line-height: 0.96;
      letter-spacing: -0.04em;
      font-weight: 900;
      max-width: 10ch;
      text-wrap: balance;
    }

    .social-caption span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(244,241,232,0.76);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .social-caption span::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 12px rgba(147,178,120,0.45);
    }

    .footer {
      padding: 42px 0 48px;
      border-top: 1px solid rgba(255,255,255,0.08);
      background: rgba(5,5,5,0.72);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: minmax(0,1.2fr) repeat(3, minmax(0,0.5fr));
      gap: 28px;
      align-items: start;
    }

    .footer-brand img {
      width: min(360px, 100%);
      min-width: 220px;
      margin-bottom: 18px;
    }

    .footer-brand p {
      margin: 0;
      color: rgba(244,241,232,0.58);
      font-size: 15px;
      line-height: 1.6;
      max-width: 34rem;
    }

    .footer-col h3 {
      margin: 0 0 14px;
      color: var(--brand-soft);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a,
    .footer-links span {
      color: rgba(244,241,232,0.76);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.5;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      margin-top: 30px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,0.07);
      color: rgba(244,241,232,0.42);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .mobile-cta {
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 58;
      display: none;
      gap: 12px;
      padding: 12px;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(8,8,8,0.88);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 24px 50px rgba(0,0,0,0.3);
    }

    .mobile-cta .button {
      flex: 1;
    }

    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
      will-change: transform, opacity;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1200px) {
      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-card {
        justify-self: start;
      }

      .section-head,
      .intro-grid,
      .story,
      .story.story-reverse,
      .pack-layout,
      .trial-grid,
      .footer-inner {
        grid-template-columns: 1fr;
      }

      .section-head > p {
        justify-self: start;
      }

      .metric-grid,
      .membership-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }

      .clubs-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }

      .social-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }

      .mosaic-card.large,
      .mosaic-card.small,
      .mosaic-card {
        grid-column: span 6;
      }

      .story-media {
        aspect-ratio: 5 / 4;
      }

      .pack-visual img {
        min-height: 520px;
      }
    }

    @media (max-width: 980px) {
      .site-nav,
      .header-actions .button-secondary {
        display: none;
      }

      .header-inner {
        grid-template-columns: 1fr auto auto;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .site-nav.mobile {
        position: fixed;
        inset: calc(var(--announcement-h) + var(--header-h) + 6px) 12px auto;
        display: grid;
        gap: 2px;
        padding: 12px;
        border-radius: 24px;
        border: 1px solid rgba(255,255,255,0.14);
        background: rgba(8,8,8,0.95);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s var(--ease), transform .25s var(--ease);
        box-shadow: var(--shadow);
        max-height: calc(100svh - var(--announcement-h) - var(--header-h) - 24px);
        overflow: auto;
      }

      .nav-open .site-nav.mobile {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .site-nav.mobile a {
        padding: 14px 12px;
        font-size: 13px;
        border-radius: 14px;
      }

      .site-nav.mobile a::after {
        display: none;
      }

      .site-nav.mobile a:hover,
      .site-nav.mobile a:focus-visible {
        background: rgba(255,255,255,0.05);
      }

      .header-actions {
        gap: 10px;
      }

      .header-actions .button-primary {
        display: none;
      }

      .hero-inner {
        gap: 28px;
        padding-inline: 0;
      }

      .hero-card {
        justify-self: start;
        max-width: 100%;
      }

      .story {
        gap: 28px;
      }

      .story-copy {
        padding-right: 0;
      }

      .story-media {
        aspect-ratio: 4 / 3;
      }

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

      .mosaic-card.large,
      .mosaic-card.small,
      .mosaic-card {
        grid-column: auto;
        min-height: 360px;
      }

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

      .social-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }

      .pack-card {
        grid-template-columns: auto 1fr;
      }

      .pack-meta {
        grid-column: 2;
        text-align: left;
        justify-items: start;
      }

      .pack-visual img {
        min-height: 420px;
      }

      .trial-grid {
        gap: 30px;
      }
    }

    @media (max-width: 760px) {
      :root {
        --container: calc(100% - 28px);
        --announcement-h: 38px;
        --header-h: 74px;
        --eyebrow-gap: 22px;
      }

      .announcement {
        font-size: 10px;
        letter-spacing: 0.14em;
      }

      .header-inner {
        gap: 12px;
      }

      .brand img {
        height: 44px;
        width: auto;
        max-width: min(270px, 58vw);
        min-width: 0;
      }

      .nav-toggle {
        width: 44px;
        height: 44px;
      }

      .hero {
        min-height: auto;
        padding: 44px 0 28px;
      }

      .hero-pattern {
        display: none;
      }

      .hero h1 {
        max-width: 8ch;
        margin-bottom: 18px;
        font-size: clamp(46px, 15vw, 68px);
      }

      .hero-text {
        max-width: none;
        font-size: 18px;
        line-height: 1.45;
      }

      .button-row {
        gap: 10px;
      }

      .button-row .button {
        width: 100%;
      }

      .hero-benefits {
        gap: 8px 12px;
        margin-top: 28px;
        padding-top: 20px;
      }

      .hero-benefits span {
        white-space: normal;
        font-size: 11px;
        line-height: 1.35;
      }

      .hero-card {
        padding: 20px;
        max-width: 100%;
      }

      .hero-card-grid {
        gap: 10px;
      }

      .hero-stat {
        padding: 14px 12px;
      }

      .hero-stat strong {
        font-size: 26px;
      }

      .hero-stat span {
        font-size: 11px;
        letter-spacing: 0.10em;
      }

      .metric-grid,
      .membership-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .benefit-ribbon {
        gap: 10px;
      }

      .section {
        padding: clamp(68px, 18vw, 90px) 0;
      }

      .section-head,
      .intro-grid,
      .story,
      .story.story-reverse,
      .pack-layout,
      .trial-grid,
      .footer-inner {
        gap: 22px;
      }

      .section-head h2,
      .intro-grid h2,
      .story-copy h3,
      .trial-copy h2 {
        max-width: none;
      }

      .section-head > p,
      .intro-grid > p,
      .story-copy p:not(.eyebrow),
      .trial-copy p:not(.eyebrow) {
        max-width: none;
      }

      .intro-box {
        padding: 24px;
      }

      .ghost-slogan {
        inset: 18px 18px auto;
        font-size: clamp(44px, 18vw, 110px);
      }

      .story-media {
        aspect-ratio: 4 / 5;
      }

      .mosaic-card.large,
      .mosaic-card.small,
      .mosaic-card {
        min-height: 300px;
      }

      .mosaic-copy {
        padding: 20px;
      }

      .mosaic-copy p {
        font-size: 15px;
      }

      .social-summary {
        gap: 14px;
      }

      .social-grid {
        gap: 14px;
      }

      .social-badge {
        top: 12px;
        left: 12px;
      }

      .social-caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
      }

      .social-caption strong {
        font-size: clamp(18px, 6vw, 24px);
      }

      .club-card,
      .member-card,
      .pack-card,
      .form-shell {
        padding: 20px;
      }

      .club-actions .button,
      .member-card .button {
        width: 100%;
      }

      .pack-card {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 12px;
      }

      .pack-meta {
        grid-column: auto;
        text-align: left;
        justify-items: start;
      }

      .pack-index {
        width: 48px;
        height: 48px;
      }

      .pack-visual img {
        min-height: 340px;
        object-position: center 34%;
      }

      .trial-contact {
        gap: 10px;
      }

      input,
      select,
      textarea {
        font-size: 16px;
      }

      textarea {
        min-height: 120px;
      }

      .request-actions .button {
        width: 100%;
      }

      .button {
        min-height: 50px;
      }

      .footer {
        padding-bottom: calc(132px + env(safe-area-inset-bottom));
      }

      .footer-bottom {
        flex-direction: column;
      }

      .mobile-cta {
        display: flex;
        bottom: max(12px, env(safe-area-inset-bottom));
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
      }

      body {
        padding-bottom: calc(104px + env(safe-area-inset-bottom));
      }
    }


    @media (max-width: 560px) {
      .club-top,
      .member-tier {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero-card-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }

      .hero-stat strong {
        font-size: 24px;
      }

      .hero-stat span {
        font-size: 10px;
      }

      .site-nav.mobile {
        inset-inline: 10px;
      }

      .mobile-cta {
        gap: 10px;
        padding-inline: 10px;
      }

      .mobile-cta .button {
        min-height: 48px;
        padding-inline: 14px;
        font-size: 11px;
        letter-spacing: 0.10em;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }
  

    @media (max-width: 520px) {
      .social-grid {
        grid-template-columns: 1fr;
      }
    }



    .social-live-shell {
      position: relative;
      display: grid;
      gap: clamp(20px, 2.4vw, 28px);
      padding: clamp(24px, 3vw, 36px);
      border-radius: clamp(28px, 4vw, 42px);
      border: 1px solid rgba(255,255,255,0.08);
      background:
        radial-gradient(circle at 86% 0%, rgba(147,178,120,0.16), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        #090909;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .social-live-shell::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, transparent 18%, transparent 82%, rgba(255,255,255,0.02) 100%);
      pointer-events: none;
    }

    .social-profile-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .social-profile {
      display: flex;
      align-items: center;
      gap: 16px;
      min-width: min(100%, 520px);
      padding: 12px 14px 12px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.03);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
      text-decoration: none;
      color: var(--text);
      transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
    }

    .social-profile:hover,
    .social-profile:focus-visible {
      border-color: rgba(191,239,176,0.35);
      background: rgba(255,255,255,0.05);
      transform: translateY(-2px);
    }

    .social-profile-avatar {
      position: relative;
      width: 56px;
      height: 56px;
      flex: 0 0 56px;
      border-radius: 50%;
      padding: 3px;
      background: conic-gradient(from 180deg, var(--brand), rgba(191,239,176,0.95), rgba(90,107,76,0.55), var(--brand));
      box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
    }

    .social-profile-avatar::before {
      content: "";
      position: absolute;
      inset: 4px;
      border-radius: 50%;
      background: #050505;
    }

    .social-profile-avatar img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 10px;
      border-radius: 50%;
      background: #050505;
    }

    .social-profile-copy {
      display: grid;
      gap: 4px;
      min-width: 0;
    }

    .social-profile-copy strong {
      display: block;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1;
    }

    .social-profile-copy span {
      color: rgba(244,241,232,0.62);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .social-profile-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .social-live-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.03);
      color: rgba(244,241,232,0.82);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .social-live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 0 0 rgba(191,239,176,0.5);
      animation: socialPulse 2.4s infinite;
    }

    .social-stories {
      display: flex;
      gap: 14px;
      overflow: auto hidden;
      padding-bottom: 4px;
      scrollbar-width: none;
      position: relative;
      z-index: 1;
    }

    .social-stories::-webkit-scrollbar {
      display: none;
    }

    .story-chip {
      min-width: 90px;
      width: 90px;
      display: grid;
      gap: 10px;
      justify-items: center;
      text-align: center;
      color: var(--text);
      text-decoration: none;
      scroll-snap-align: start;
    }

    .story-media {
      position: relative;
      width: 82px;
      height: 82px;
      border-radius: 50%;
      padding: 3px;
      background: conic-gradient(from 180deg, var(--brand), rgba(191,239,176,0.95), rgba(90,107,76,0.55), var(--brand));
      box-shadow: 0 18px 30px rgba(0,0,0,0.24);
      transition: transform .4s var(--ease);
    }

    .story-media::before {
      content: "";
      position: absolute;
      inset: 4px;
      border-radius: 50%;
      background: #050505;
    }

    .story-media img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
    }

    .story-chip:hover .story-media,
    .story-chip:focus-visible .story-media {
      transform: translateY(-3px) scale(1.02);
    }

    .story-chip span:last-child {
      color: rgba(244,241,232,0.78);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      line-height: 1.15;
      text-transform: uppercase;
    }

    .social-lanes {
      display: grid;
      gap: 18px;
      position: relative;
      z-index: 1;
    }

    .social-marquee {
      position: relative;
      overflow: hidden;
    }

    .social-marquee::before,
    .social-marquee::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 90px;
      z-index: 3;
      pointer-events: none;
    }

    .social-marquee::before {
      left: 0;
      background: linear-gradient(90deg, #090909 0%, rgba(9,9,9,0) 100%);
    }

    .social-marquee::after {
      right: 0;
      background: linear-gradient(270deg, #090909 0%, rgba(9,9,9,0) 100%);
    }

    .social-track {
      display: flex;
      gap: 18px;
      width: max-content;
      will-change: transform;
      animation: socialLeft 58s linear infinite;
    }

    .social-track-group {
      display: flex;
      gap: 18px;
    }

    .social-marquee--reverse .social-track {
      animation-name: socialRight;
      animation-duration: 62s;
    }

    .social-marquee:hover .social-track,
    .social-marquee:focus-within .social-track {
      animation-play-state: paused;
    }

    .social-post {
      position: relative;
      display: block;
      min-width: min(28vw, 320px);
      width: min(28vw, 320px);
      aspect-ratio: 4 / 5;
      overflow: hidden;
      border-radius: 26px;
      border: 1px solid rgba(255,255,255,0.10);
      background: #0a0a0a;
      box-shadow: var(--shadow-soft);
      isolation: isolate;
      color: var(--text);
      text-decoration: none;
      scroll-snap-align: start;
    }

    .social-post::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.88) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .social-post img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .7s var(--ease), filter .7s var(--ease);
      filter: saturate(1.02);
    }

    .social-post:hover img,
    .social-post:focus-visible img {
      transform: scale(1.04);
      filter: saturate(1.06);
    }

    .social-post-handle {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(8,8,8,0.52);
      color: rgba(244,241,232,0.88);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .social-post-handle::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 12px rgba(147,178,120,0.45);
    }

    .social-post-arrow {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 2;
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(8,8,8,0.52);
      color: rgba(244,241,232,0.88);
      font-size: 15px;
      line-height: 1;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .social-post-caption {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 2;
      display: grid;
      gap: 10px;
    }

    .social-post-caption strong {
      display: block;
      color: var(--text);
      font-size: clamp(24px, 2vw, 34px);
      line-height: 0.94;
      letter-spacing: -0.05em;
      font-weight: 900;
      max-width: 10ch;
      text-wrap: balance;
    }

    .social-post-caption span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(244,241,232,0.76);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .social-post-caption span::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 12px rgba(147,178,120,0.45);
    }

    .social-live-note {
      position: relative;
      z-index: 1;
      margin: 2px 0 0;
      color: rgba(244,241,232,0.58);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    @keyframes socialLeft {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(calc(-50% - 9px));
      }
    }

    @keyframes socialRight {
      from {
        transform: translateX(calc(-50% - 9px));
      }
      to {
        transform: translateX(0);
      }
    }

    @keyframes socialPulse {
      0% {
        box-shadow: 0 0 0 0 rgba(191,239,176,0.5);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(191,239,176,0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(191,239,176,0);
      }
    }


    @media (max-width: 980px) {
      .social-profile {
        min-width: 0;
        width: 100%;
      }

      .social-profile-actions {
        width: 100%;
        justify-content: space-between;
      }

      .social-post {
        min-width: clamp(240px, 54vw, 320px);
        width: clamp(240px, 54vw, 320px);
      }
    }

    @media (max-width: 720px) {
      .social-live-shell {
        padding: 22px;
        border-radius: 28px;
        gap: 18px;
      }

      .social-profile {
        border-radius: 22px;
      }

      .social-profile-copy strong {
        font-size: 15px;
      }

      .social-profile-copy span {
        font-size: 11px;
      }

      .social-profile-actions {
        gap: 10px;
      }

      .social-live-pill {
        min-height: 40px;
      }

      .social-stories {
        gap: 12px;
      }

      .story-chip {
        min-width: 80px;
        width: 80px;
      }

      .story-media {
        width: 74px;
        height: 74px;
      }

      .social-lanes {
        gap: 14px;
      }

      .social-marquee {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
        scrollbar-width: none;
      }

      .social-marquee::-webkit-scrollbar {
        display: none;
      }

      .social-marquee::before,
      .social-marquee::after {
        display: none;
      }

      .social-track {
        animation: none !important;
        width: max-content;
      }

      .social-track-group:last-child {
        display: none;
      }

      .social-post {
        min-width: 78vw;
        width: 78vw;
        border-radius: 22px;
      }

      .social-post-caption strong {
        font-size: clamp(24px, 8vw, 36px);
      }

      .social-live-note {
        font-size: 11px;
        letter-spacing: 0.12em;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .social-track,
      .social-live-dot {
        animation: none !important;
      }
    }

  
  /* --- social live feel --- */
  .social-live-section {
    overflow: clip;
  }

  .social-intro {
    display: grid;
    gap: 18px;
    justify-items: start;
    align-self: end;
  }

  .social-intro p {
    margin: 0;
    max-width: 35rem;
    color: rgba(244,241,232,0.74);
    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.48;
    letter-spacing: -0.02em;
  }

  .social-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .social-live-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(22px, 3.5vw, 40px);
    align-items: start;
  }

  .social-profile-card,
  .social-feed-panel {
    position: relative;
    padding: clamp(22px, 2.3vw, 30px);
    border-radius: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(255,255,255,0.10);
    background:
      radial-gradient(circle at top left, rgba(147,178,120,0.16), transparent 34%),
      radial-gradient(circle at bottom right, rgba(255,255,255,0.04), transparent 24%),
      linear-gradient(180deg, rgba(15,15,16,0.96), rgba(8,8,9,0.98));
    box-shadow: var(--shadow);
  }

  .social-profile-card::after,
  .social-feed-panel::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.04);
    pointer-events: none;
  }

  .social-profile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .social-profile-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
  }

  .social-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-soft) 45%, var(--brand) 100%);
    box-shadow: 0 0 0 6px rgba(147,178,120,0.10), 0 18px 34px rgba(0,0,0,0.28);
    flex: 0 0 auto;
  }

  .social-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #060606;
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  .social-avatar-inner img {
    width: 78%;
    height: 78%;
    object-fit: contain;
  }

  .social-handle {
    margin: 0;
    color: var(--text);
    font-size: clamp(17px, 1.25vw, 20px);
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .social-live-note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 6px;
    color: rgba(244,241,232,0.66);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .social-live-note > span:first-child {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-soft);
    box-shadow: 0 0 0 0 rgba(191,239,176,0.38);
    animation: socialPulse 2.2s infinite;
    flex: 0 0 auto;
  }

  @keyframes socialPulse {
    0% { box-shadow: 0 0 0 0 rgba(191,239,176,0.38); }
    70% { box-shadow: 0 0 0 14px rgba(191,239,176,0); }
    100% { box-shadow: 0 0 0 0 rgba(191,239,176,0); }
  }

  .social-follow-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .45s var(--ease), border-color .35s ease, background .35s ease;
    white-space: nowrap;
  }

  .social-follow-link:hover,
  .social-follow-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(191,239,176,0.34);
    background: rgba(191,239,176,0.08);
  }

  .social-profile-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
  }

  .social-profile-chip {
    padding: 16px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    display: grid;
    gap: 8px;
  }

  .social-profile-chip strong {
    color: var(--text);
    font-size: clamp(18px, 1.2vw, 21px);
    line-height: 0.96;
    letter-spacing: -0.03em;
  }

  .social-profile-chip span {
    color: rgba(244,241,232,0.62);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .social-highlights {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 2px 2px;
    margin-top: 22px;
    scrollbar-width: none;
  }

  .social-highlights::-webkit-scrollbar {
    display: none;
  }

  .social-highlight {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--text);
    display: grid;
    justify-items: center;
    gap: 10px;
    min-width: 76px;
    cursor: pointer;
    font-family: inherit;
    transition: transform .45s var(--ease), opacity .35s ease;
    opacity: 0.74;
  }

  .social-highlight:hover,
  .social-highlight:focus-visible,
  .social-highlight.is-active {
    transform: translateY(-2px);
    opacity: 1;
  }

  .social-highlight-ring {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, rgba(147,178,120,0.96), rgba(191,239,176,0.72), rgba(147,178,120,0.96));
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  }

  .social-highlight-ring > span {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #080808;
    display: grid;
    place-items: center;
    padding: 10px;
    color: var(--text);
    text-align: center;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
  }

  .social-highlight-text {
    color: rgba(244,241,232,0.68);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .social-highlight.is-active .social-highlight-ring {
    box-shadow: 0 0 0 6px rgba(147,178,120,0.08), 0 18px 34px rgba(0,0,0,0.28);
  }

  .social-highlight.is-active .social-highlight-text {
    color: var(--text);
  }

  .social-device {
    display: block;
    width: min(100%, 430px);
    margin: 22px auto 0;
    text-decoration: none;
    transform: translateZ(0);
    animation: socialFloat 7.5s ease-in-out infinite;
  }

  @keyframes socialFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
  }

  .social-device-frame {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 38px;
    border: 1px solid rgba(255,255,255,0.14);
    background: #050505;
    box-shadow: 0 28px 70px rgba(0,0,0,0.42);
  }

  .social-device-frame::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    width: 36%;
    height: 26px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(0,0,0,0.72);
    z-index: 5;
    pointer-events: none;
  }

  .social-device-progress {
    position: absolute;
    top: 16px;
    left: 18px;
    right: 18px;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
  }

  .social-device-progress > span {
    height: 3px;
    border-radius: 999px;
    background: rgba(255,255,255,0.24);
    overflow: hidden;
  }

  .social-device-progress > span > i {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: rgba(255,255,255,0.92);
  }

  .social-device-topbar {
    position: absolute;
    top: 34px;
    left: 18px;
    right: 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .social-device-user,
  .social-device-meta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(244,241,232,0.92);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .social-device-user-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-soft);
    box-shadow: 0 0 10px rgba(191,239,176,0.48);
  }

  .social-device img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    opacity: 0;
    transition: opacity .45s ease, transform .75s var(--ease);
  }

  .social-device img.is-ready {
    opacity: 1;
  }

  .social-device:hover img,
  .social-device:focus-visible img {
    transform: scale(1.05);
  }

  .social-device-overlay {
    position: absolute;
    inset: auto 16px 16px;
    z-index: 4;
    display: grid;
    gap: 10px;
    padding: 18px 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.10);
    background: linear-gradient(180deg, rgba(10,10,10,0.18), rgba(10,10,10,0.86));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .social-device-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(244,241,232,0.76);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .social-device-kicker::before {
    content: "";
    width: 18px;
    height: 1px;
    background: rgba(191,239,176,0.82);
    box-shadow: 0 0 18px rgba(191,239,176,0.30);
  }

  .social-device-overlay h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(28px, 3.4vw, 38px);
    line-height: 0.94;
    letter-spacing: -0.05em;
    text-wrap: balance;
  }

  .social-device-overlay p {
    margin: 0;
    color: rgba(244,241,232,0.76);
    font-size: 14px;
    line-height: 1.48;
    letter-spacing: -0.01em;
  }

  .social-device-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .social-device-link::after {
    content: "→";
    font-size: 12px;
    transform: translateY(-1px);
  }

  .social-feed-panel {
    display: grid;
    gap: 20px;
    min-width: 0;
  }

  .social-feed-top {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 16px 20px;
    align-items: end;
  }

  .social-eyebrow {
    margin-bottom: var(--eyebrow-gap);
  }

  .social-feed-top h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(34px, 3vw, 54px);
    line-height: 0.92;
    letter-spacing: -0.05em;
    text-wrap: balance;
  }

  .social-feed-top p:last-child {
    margin: 0;
    color: rgba(244,241,232,0.68);
    font-size: 15px;
    line-height: 1.5;
    max-width: 28rem;
    justify-self: end;
  }

  .social-feed-strip {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    padding: 10px 0;
  }

  .social-feed-strip > div {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-left: 18px;
    min-width: max-content;
    color: rgba(244,241,232,0.72);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    animation: socialTicker 20s linear infinite;
  }

  .social-feed-strip span {
    display: inline-flex;
    align-items: center;
    gap: 18px;
  }

  .social-feed-strip span::after {
    content: "•";
    color: var(--brand-soft);
  }

  @keyframes socialTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .social-post-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .social-post-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.10);
    background: #0b0b0c;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    isolation: isolate;
    transition: transform .5s var(--ease), border-color .35s ease, box-shadow .35s ease;
  }

  .social-post-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7,7,7,0.04) 0%, rgba(7,7,7,0.12) 50%, rgba(7,7,7,0.88) 100%);
    pointer-events: none;
  }

  .social-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
  }

  .social-post-card:hover,
  .social-post-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(191,239,176,0.22);
    box-shadow: 0 24px 56px rgba(0,0,0,0.28);
  }

  .social-post-card:hover img,
  .social-post-card:focus-visible img {
    transform: scale(1.05);
  }

  .social-post-meta {
    position: absolute;
    inset: 14px 14px auto;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .social-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(8,8,8,0.54);
    color: rgba(244,241,232,0.88);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .social-pill-ghost {
    color: rgba(244,241,232,0.68);
  }

  .social-post-copy {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: grid;
    gap: 8px;
  }

  .social-post-copy strong {
    display: block;
    color: var(--text);
    font-size: clamp(24px, 2vw, 32px);
    line-height: 0.96;
    letter-spacing: -0.05em;
    text-wrap: balance;
    max-width: 12ch;
  }

  .social-post-copy span {
    color: rgba(244,241,232,0.74);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  @media (max-width: 1280px) {
    .social-live-shell {
      grid-template-columns: 1fr;
    }

    .social-feed-top {
      grid-template-columns: 1fr;
    }

    .social-feed-top p:last-child {
      justify-self: start;
    }
  }

  @media (max-width: 980px) {
    .social-profile-cards {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .social-post-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 760px) {
    .social-intro {
      gap: 16px;
    }

    .social-intro p {
      font-size: 17px;
    }

    .social-profile-head {
      align-items: flex-start;
      flex-direction: column;
    }

    .social-profile-cards {
      grid-template-columns: 1fr;
    }

    .social-device {
      width: min(100%, 360px);
      animation: none;
    }

    .social-device-frame {
      border-radius: 34px;
    }

    .social-post-grid {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      padding-bottom: 4px;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
    }

    .social-post-grid::-webkit-scrollbar {
      display: none;
    }

    .social-post-card {
      min-width: min(78vw, 320px);
      flex: 0 0 auto;
      scroll-snap-align: start;
    }

    .social-post-copy strong {
      font-size: clamp(22px, 6vw, 28px);
    }
  }

  @media (max-width: 560px) {
    .social-profile-card,
    .social-feed-panel {
      padding: 20px;
      border-radius: 26px;
    }

    .social-highlight {
      min-width: 72px;
    }

    .social-highlight-ring {
      width: 62px;
      height: 62px;
    }

    .social-device-topbar {
      top: 32px;
    }

    .social-device-overlay {
      left: 12px;
      right: 12px;
      bottom: 12px;
      padding: 16px;
      border-radius: 22px;
    }

    .social-device-overlay h3 {
      font-size: clamp(26px, 8vw, 34px);
    }

    .social-feed-strip {
      padding: 9px 0;
    }
  }



  /* --- live instagram feed + story media fix --- */
  .story > .story-media {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 0;
    border-radius: clamp(24px, 3vw, 34px);
    background: #0b0b0c;
    box-shadow: var(--shadow);
  }

  .story > .story-media::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.08), transparent 22%),
      linear-gradient(0deg, rgba(5,5,5,0.22), transparent 30%);
    z-index: 1;
    pointer-events: none;
  }

  .story > .story-media img {
    position: static;
    z-index: auto;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    transition: transform .8s var(--ease);
  }

  .story > .story-media:hover img,
  .story > .story-media:focus-visible img {
    transform: scale(1.03);
  }

  .instagram-live-shell {
    display: flex;
    justify-content: flex-end;
  }

  .instagram-live-panel {
    width: min(100%, 1000px);
    margin-left: auto;
    position: relative;
    padding: clamp(22px, 2.6vw, 32px);
    border-radius: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(255,255,255,0.10);
    background:
      radial-gradient(circle at top left, rgba(147,178,120,0.14), transparent 32%),
      radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 28%),
      linear-gradient(180deg, rgba(14,14,15,0.97), rgba(8,8,9,0.99));
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .instagram-live-panel::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.04);
    pointer-events: none;
  }

  .instagram-live-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 0.58fr);
    gap: clamp(18px, 2.4vw, 34px);
    align-items: end;
    margin-bottom: clamp(16px, 1.8vw, 22px);
  }

  .instagram-live-top h3 {
    margin: 0;
    font-size: clamp(38px, 4.3vw, 66px);
    line-height: 0.92;
    letter-spacing: -0.05em;
  }

  .instagram-live-top p:last-child {
    margin: 0;
    color: rgba(244,241,232,0.76);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.55;
    max-width: 28rem;
    justify-self: end;
  }

  .instagram-live-status {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 18px;
    margin-bottom: clamp(18px, 1.9vw, 22px);
    color: rgba(191,239,176,0.92);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .instagram-live-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-soft);
    box-shadow: 0 0 0 8px rgba(191,239,176,0.10);
    animation: instagramFeedPulse 2.2s infinite;
    flex: 0 0 auto;
  }

  .instagram-live-status.is-error {
    color: rgba(244,241,232,0.70);
  }

  .instagram-live-status.is-error::before {
    background: rgba(244,241,232,0.38);
    box-shadow: 0 0 0 8px rgba(255,255,255,0.05);
    animation: none;
  }

  @keyframes instagramFeedPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.14); opacity: 0.75; }
  }

  .instagram-live-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 18px);
  }

  .instagram-card {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.10);
    background: #0a0a0b;
    color: var(--text);
    text-decoration: none;
    box-shadow: 0 26px 56px rgba(0,0,0,0.28);
    isolation: isolate;
  }

  .instagram-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(6,6,6,0.06) 0%, rgba(6,6,6,0.16) 38%, rgba(6,6,6,0.66) 100%),
      radial-gradient(circle at top right, rgba(147,178,120,0.16), transparent 34%);
    z-index: 1;
    pointer-events: none;
  }

  .instagram-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.04);
    pointer-events: none;
    z-index: 3;
  }

  .instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
  }

  .instagram-card:hover img,
  .instagram-card:focus-visible img {
    transform: scale(1.035);
  }

  .instagram-card-meta {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .instagram-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(10,10,11,0.42);
    backdrop-filter: blur(12px);
    color: rgba(255,255,255,0.90);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .instagram-card-copy {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: grid;
    gap: 6px;
  }

  .instagram-card-copy strong {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0;
    color: #fff;
    font-size: clamp(20px, 1.9vw, 30px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .instagram-card-copy span {
    margin: 0;
    color: rgba(244,241,232,0.76);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.4;
  }

  .instagram-card.is-loading {
    pointer-events: none;
  }

  .instagram-card.is-loading::before {
    background:
      linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.10), rgba(255,255,255,0.02));
    animation: instagramFeedShimmer 1.35s linear infinite;
  }

  @keyframes instagramFeedShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }

  .instagram-card-loading-ui {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 16px;
    display: grid;
    align-content: space-between;
  }

  .instagram-loading-top,
  .instagram-loading-bottom {
    display: grid;
    gap: 10px;
  }

  .instagram-loading-pill,
  .instagram-loading-line {
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
  }

  .instagram-loading-pill {
    width: 88px;
    height: 34px;
  }

  .instagram-loading-line {
    height: 14px;
    width: 74%;
  }

  .instagram-loading-line.small {
    width: 48%;
  }

  .instagram-fallback {
    position: relative;
    z-index: 1;
    margin-top: clamp(18px, 1.9vw, 24px);
    padding: clamp(18px, 2vw, 24px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.09);
    background: rgba(255,255,255,0.03);
  }

  .instagram-fallback p {
    margin: 0 0 16px;
    max-width: 46rem;
    color: rgba(244,241,232,0.76);
  }

  @media (max-width: 1180px) {
    .instagram-live-top {
      grid-template-columns: 1fr;
    }

    .instagram-live-top p:last-child {
      justify-self: start;
      max-width: 36rem;
    }
  }

  @media (max-width: 1024px) {
    .story > .story-media {
      aspect-ratio: 6 / 5;
    }

    .instagram-live-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 860px) {
    .story > .story-media {
      aspect-ratio: 4 / 5;
    }
  }

  @media (max-width: 640px) {
    .instagram-live-panel {
      padding: 20px;
      border-radius: 28px;
    }

    .instagram-live-grid {
      grid-auto-flow: column;
      grid-auto-columns: 78vw;
      grid-template-columns: unset;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 6px;
      scrollbar-width: none;
    }

    .instagram-live-grid::-webkit-scrollbar {
      display: none;
    }

    .instagram-card {
      scroll-snap-align: start;
    }

    .instagram-card-copy strong {
      font-size: clamp(24px, 8vw, 34px);
    }
  }

/* --- motion polish --- */
.hero-card,
.instagram-live-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before,
.instagram-live-panel::before {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at center, rgba(191,239,176,0.14), transparent 54%);
  opacity: 0.34;
  animation: ambientGlow 11s ease-in-out infinite;
}

.hero-card > *,
.instagram-live-panel > * {
  position: relative;
  z-index: 1;
}

.story-media img {
  transform: scale(1.02);
  animation: featureDrift 11.5s ease-in-out infinite;
}

.section-light .story-media img {
  animation-delay: -3.8s;
}

.story-media:hover img,
.story-media:focus-within img {
  animation-play-state: paused;
  transform: scale(1.05);
}

.instagram-live-panel .social-feed-strip {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
}

.hero-stat,
.metric-card,
.club-card,
.member-card,
.pack-card,
.instagram-card {
  transition:
    transform .55s var(--ease),
    box-shadow .35s ease,
    border-color .35s ease,
    background-color .35s ease;
  will-change: transform;
}

.instagram-card {
  opacity: 0;
  transform: translateY(18px);
  animation: instagramCardIn .8s var(--ease) forwards;
  animation-delay: var(--card-delay, 0ms);
}

.instagram-card.is-loading {
  opacity: 1;
  transform: none;
  animation: none;
}

@media (hover: hover) {
  .hero-stat:hover,
  .metric-card:hover,
  .club-card:hover,
  .member-card:hover,
  .pack-card:hover,
  .instagram-card:hover,
  .instagram-card:focus-visible {
    transform: translateY(-6px);
  }

  .hero-stat:hover {
    border-color: rgba(191,239,176,0.22);
    box-shadow: 0 16px 34px rgba(0,0,0,0.18);
  }

  .metric-card:hover,
  .member-card:hover {
    border-color: rgba(191,239,176,0.22);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  }

  .club-card:hover,
  .pack-card:hover {
    border-color: rgba(147,178,120,0.30);
    box-shadow: 0 20px 40px rgba(0,0,0,0.14);
  }

  .instagram-card:hover,
  .instagram-card:focus-visible {
    border-color: rgba(191,239,176,0.22);
    box-shadow: 0 30px 62px rgba(0,0,0,0.34);
  }
}

@keyframes ambientGlow {
  0%, 100% {
    transform: translate3d(-2%, 0, 0) scale(1);
    opacity: 0.28;
  }
  50% {
    transform: translate3d(2%, -1%, 0) scale(1.05);
    opacity: 0.52;
  }
}

@keyframes featureDrift {
  0%, 100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.055) translate3d(0, -1.4%, 0);
  }
}

@keyframes instagramCardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (prefers-reduced-motion: reduce) {
  .hero-card::before,
  .instagram-live-panel::before,
  .story-media img,
  .social-feed-strip > div,
  .instagram-card {
    animation: none !important;
  }

  .instagram-card {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* PDF-comment revision pass: clearer copy, stronger amenities, female club accents, and better anchor spacing. */
:root {
  --female: #e7a8c8;
  --female-soft: #ffd7e8;
  --female-deep: #8d3f62;
}

.hero-card-compact {
  align-self: end;
  padding-bottom: 30px;
}

.hero-card-compact .button {
  margin-top: 24px;
}

.training-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 20px);
}

.training-image-pair figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: clamp(420px, 46vw, 640px);
  border-radius: clamp(22px, 3vw, 34px);
  background: #0b0b0c;
  box-shadow: var(--shadow);
}

.training-image-pair figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.04), rgba(5,5,5,0.20) 50%, rgba(5,5,5,0.72));
  pointer-events: none;
}

.training-image-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.training-image-pair figure:hover img {
  transform: scale(1.035);
}

.training-image-pair figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(8,8,8,0.58);
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.amenities-highlight {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3vw, 48px);
  align-items: end;
  margin-top: clamp(24px, 3vw, 42px);
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at top right, rgba(147,178,120,0.18), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  box-shadow: var(--shadow-soft);
}

.amenities-highlight h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 50px);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 900;
  max-width: 11ch;
}

.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenities-list li {
  padding: 12px 14px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.045);
  color: rgba(244,241,232,0.86);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.club-card-female {
  border-color: rgba(231,168,200,0.42);
  background:
    radial-gradient(circle at top right, rgba(231,168,200,0.20), transparent 34%),
    rgba(255,255,255,0.72);
}

.club-tag-female {
  background: rgba(231,168,200,0.28);
  color: var(--female-deep);
}

.club-card-female .button-dark {
  background: linear-gradient(180deg, var(--female-soft), var(--female));
  color: #171014;
  box-shadow: 0 10px 26px rgba(231,168,200,0.26);
}

.button-directions {
  border-color: rgba(147,178,120,0.32);
}

.whatsapp-cta {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .training-image-pair,
  .amenities-highlight {
    grid-template-columns: 1fr;
  }

  .training-image-pair figure {
    min-height: 420px;
  }

  .amenities-list {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .training-image-pair figure {
    min-height: 330px;
  }

  .amenities-list li {
    font-size: 11px;
    padding: 10px 12px 9px;
  }
}


/* Final mosaic fix: four visible cards in a consistent 5/7 split. */
@media (min-width: 1201px) {
  .mosaic {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: stretch;
  }

  .mosaic-card.mosaic-narrow,
  .mosaic-card.card-hospitality,
  .mosaic-card.card-padel {
    grid-column: 1 / span 5;
    min-height: 620px;
  }

  .mosaic-card.mosaic-wide,
  .mosaic-card.card-ladies,
  .mosaic-card.card-nutrition {
    grid-column: 6 / span 7;
    min-height: 620px;
  }
}

@media (max-width: 1200px) {
  .mosaic-card.mosaic-narrow,
  .mosaic-card.mosaic-wide,
  .mosaic-card.card-padel,
  .mosaic-card.card-nutrition {
    grid-column: span 6;
    min-height: 440px;
  }
}

@media (max-width: 980px) {
  .mosaic-card.mosaic-narrow,
  .mosaic-card.mosaic-wide,
  .mosaic-card.card-padel,
  .mosaic-card.card-nutrition {
    grid-column: auto;
    min-height: 340px;
  }
}

.mosaic-card.card-padel,
.mosaic-card.card-nutrition {
  display: flex !important;
  visibility: visible !important;
  opacity: 1;
}

.mosaic-card.card-padel img {
  object-position: center 42%;
}

.mosaic-card.card-nutrition img {
  object-position: center 54%;
}


/* Final pass: remove Instagram section spacing dependencies and improve phone image scaling. */
@media (max-width: 980px) {
  .story-media,
  .pack-visual,
  .training-image-pair figure,
  .mosaic-card {
    border-radius: clamp(20px, 5vw, 28px);
  }

  .story-media img,
  .pack-visual img,
  .training-image-pair img,
  .mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  :root {
    --container: calc(100% - 28px);
    --section: clamp(68px, 18vw, 92px);
  }

  .container {
    width: var(--container);
  }

  .announcement span {
    display: none;
  }

  .header-inner {
    min-height: var(--header-h);
  }

  .brand img {
    height: auto;
    max-height: 44px;
    max-width: min(270px, 62vw);
  }

  .hero {
    min-height: calc(100svh - var(--announcement-h) - var(--header-h));
    align-items: flex-end;
    padding: clamp(44px, 12vw, 72px) 0 clamp(32px, 9vw, 52px);
  }

  .hero-inner {
    width: var(--container);
    padding-inline: 0;
    gap: 24px;
  }

  .hero h1 {
    max-width: 8.6ch;
    font-size: clamp(44px, 14.5vw, 68px);
    line-height: .9;
  }

  .hero-text {
    font-size: clamp(17px, 4.8vw, 20px);
    line-height: 1.42;
  }

  .hero-slide:nth-child(1) img { object-position: 54% center; }
  .hero-slide:nth-child(2) img { object-position: 56% center; }
  .hero-slide:nth-child(3) img { object-position: 54% center; }

  .hero-card {
    padding: 20px;
    border-radius: 22px;
  }

  .section-head,
  .intro-grid,
  .story,
  .story.story-reverse,
  .pack-layout,
  .trial-grid,
  .footer-inner {
    gap: 24px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2,
  .intro-grid h2,
  .story-copy h3,
  .trial-copy h2 {
    font-size: clamp(38px, 11vw, 58px);
    line-height: .94;
  }

  .story-media {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .story-media img {
    object-position: center center;
  }

  .section-light .story-media img {
    object-position: center 38%;
  }

  .mosaic {
    gap: 14px;
  }

  .mosaic-card.large,
  .mosaic-card.small,
  .mosaic-card,
  .mosaic-card.card-padel,
  .mosaic-card.card-nutrition {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .mosaic-card.card-hospitality img { object-position: center center; }
  .mosaic-card.card-ladies img { object-position: center 42%; }
  .mosaic-card.card-padel img { object-position: center 44%; }
  .mosaic-card.card-nutrition img { object-position: center 52%; }

  .mosaic-copy {
    padding: 20px;
  }

  .mosaic-copy h3 {
    max-width: 12ch;
    font-size: clamp(30px, 9vw, 42px);
  }

  .mosaic-copy p:not(.eyebrow) {
    max-width: 30rem;
  }

  .training-image-pair {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .training-image-pair figure {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .training-image-pair figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
  }

  .pack-visual {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .pack-visual img {
    min-height: 0;
    object-position: center 34%;
  }

  .amenities-highlight {
    padding: 22px;
    gap: 20px;
  }

  .amenities-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .amenities-list li {
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }
}

@media (max-width: 420px) {
  :root {
    --container: calc(100% - 22px);
  }

  .brand img {
    max-height: 40px;
    max-width: min(230px, 64vw);
  }

  .hero h1 {
    font-size: clamp(42px, 15vw, 58px);
  }

  .hero-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stat {
    padding: 13px 10px;
  }

  .hero-stat strong {
    font-size: 23px;
  }

  .hero-stat span {
    font-size: 9px;
    letter-spacing: .08em;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
  }

  .mobile-cta .button {
    width: auto;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }
}
