@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

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

:root {
  --red: #C8232A;
  --red-dark: #9E1A20;
  --red-light: #E8353D;
  --red-pale: #FDF0F0;
  --white: #FFFFFF;
  --off-white: #F8F7F5;
  --dark: #111111;
  --dark-mid: #2A2A2A;
  --gray: #6B6B6B;
  --gray-light: #E8E8E8;
  --condensed: 'Barlow Condensed', sans-serif;
  --sans: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--dark); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: var(--white);
  border-bottom: 3px solid var(--red);
}
.site-nav-logo { display: flex; align-items: center; gap: 0; text-decoration: none; }
.site-nav-logo-img { height: 58px; width: 58px; object-fit: cover; display: block; }
.site-nav-logo-icon { width: 36px; height: 36px; background: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.site-nav-logo-icon img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.site-nav-logo-text { font-family: var(--condensed); font-size: 20px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark); }
.site-nav-logo-text span { color: var(--red); }
.site-nav-links { display: flex; gap: 0; align-items: center; height: 64px; }
.site-nav-links a { font-family: var(--condensed); font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); text-decoration: none; padding: 0 20px; height: 64px; display: flex; align-items: center; border-bottom: 3px solid transparent; margin-bottom: -3px; transition: color 0.15s, border-color 0.15s; }
.site-nav-links a:hover { color: var(--red); border-bottom-color: var(--red); }
.site-nav-cta { font-family: var(--condensed); font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 24px; background: var(--red); color: var(--white); border: none; cursor: pointer; margin-left: 16px; transition: background 0.15s; text-decoration: none; display: inline-block; }
.site-nav-cta:hover { background: var(--red-dark); color: var(--white); }

/* ── HERO ── */
.hero { min-height: 92vh; background: var(--dark); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 80px 48px; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-eyebrow-line { width: 40px; height: 3px; background: var(--red); flex-shrink: 0; }
.hero-eyebrow span { font-family: var(--condensed); font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); }
.hero h1 { font-family: var(--condensed); font-size: clamp(52px, 7vw, 82px); font-weight: 800; line-height: 0.95; letter-spacing: 0.02em; text-transform: uppercase; color: var(--white); margin-bottom: 28px; }
.hero h1 .accent { color: var(--red); display: block; }
.hero-desc { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 420px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-right { background: var(--red); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 64px 48px; position: relative; overflow: hidden; }
.hero-right::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border: 60px solid rgba(255,255,255,0.08); border-radius: 50%; }
.hero-right::after { content: ''; position: absolute; bottom: -80px; left: -40px; width: 240px; height: 240px; border: 50px solid rgba(255,255,255,0.06); border-radius: 50%; }
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; width: 100%; position: relative; z-index: 1; }
.hero-stat { background: rgba(0,0,0,0.15); padding: 32px 28px; }
.hero-stat.featured { background: rgba(0,0,0,0.25); grid-column: span 2; }
.hero-stat-num { font-family: var(--condensed); font-size: 52px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; }
.hero-stat.featured .hero-stat-num { font-size: 72px; }
.hero-stat-label { font-family: var(--condensed); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ── STRIP ── */
.strip { background: var(--red); padding: 14px 48px; display: flex; gap: 40px; overflow: hidden; }
.strip-item { font-family: var(--condensed); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); white-space: nowrap; display: flex; align-items: center; gap: 16px; }
.strip-item::after { content: '◆'; font-size: 8px; color: rgba(255,255,255,0.3); }

/* ── BUTTONS ── */
.btn-red { padding: 14px 32px; background: var(--red); color: var(--white); font-family: var(--condensed); font-size: 15px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.15s; text-decoration: none; display: inline-block; }
.btn-red:hover { background: var(--red-light); color: var(--white); }
.btn-outline { padding: 14px 32px; background: transparent; color: rgba(255,255,255,0.7); font-family: var(--condensed); font-size: 15px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: 2px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.15s; text-decoration: none; display: inline-block; }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-red-full { display: block; width: 100%; padding: 16px; background: var(--red); color: var(--white); font-family: var(--condensed); font-size: 16px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.15s; text-align: center; text-decoration: none; }
.btn-red-full:hover { background: var(--red-dark); color: var(--white); }

/* ── SECTION HELPERS ── */
.section-tag { display: inline-flex; align-items: center; gap: 10px; font-family: var(--condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.section-tag::before { content: ''; width: 24px; height: 3px; background: var(--red); }
.section-h2 { font-family: var(--condensed); font-size: clamp(36px, 5vw, 56px); font-weight: 800; text-transform: uppercase; line-height: 0.95; }

/* ── ABOUT ── */
.section-about { background: var(--off-white); padding: 96px 48px; }
.section-header { margin-bottom: 56px; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.about-card { background: var(--white); padding: 40px 32px; border-top: 4px solid var(--gray-light); transition: border-color 0.2s; }
.about-card:hover { border-top-color: var(--red); }
.about-num { font-family: var(--condensed); font-size: 72px; font-weight: 800; color: var(--gray-light); line-height: 1; margin-bottom: 16px; transition: color 0.2s; }
.about-card:hover .about-num { color: var(--red-pale); }
.about-card h3 { font-family: var(--condensed); font-size: 26px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; }
.about-card p { font-size: 14px; line-height: 1.7; color: var(--gray); }

/* ── MEMBERSHIP ── */
.section-membership { background: var(--dark); padding: 96px 48px; }
.membership-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.membership-left .section-tag { color: var(--red); }
.membership-left h2 { color: var(--white); margin-bottom: 20px; }
.membership-left > p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 40px; }
.badge-legend { display: flex; gap: 20px; margin-bottom: 20px; }
.badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; }
.badge-dot.now { background: #4ADE80; }
.badge-dot.soon { background: #FBBF24; }
.badge span { color: rgba(255,255,255,0.4); }
.features-list { display: flex; flex-direction: column; gap: 2px; }
.feature-item { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 16px; padding: 16px 20px; background: rgba(255,255,255,0.04); border-left: 3px solid transparent; transition: background 0.15s, border-color 0.15s; }
.feature-item:hover { background: rgba(255,255,255,0.07); border-left-color: var(--red); }
.feature-icon { width: 28px; height: 28px; background: rgba(200,35,42,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-text h4 { font-family: var(--condensed); font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 2px; }
.feature-text p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.4; }
.feature-badge { font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; white-space: nowrap; }
.feature-badge.now { background: rgba(74,222,128,0.15); color: #4ADE80; }
.feature-badge.soon { background: rgba(251,191,36,0.15); color: #FBBF24; }
.membership-card { background: var(--white); overflow: hidden; position: sticky; top: 80px; }
.membership-card-header { background: var(--red); padding: 32px 40px; display: flex; justify-content: space-between; align-items: flex-end; }
.membership-card-title { font-family: var(--condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.membership-price { font-family: var(--condensed); font-size: 64px; font-weight: 800; color: var(--white); line-height: 1; }
.membership-price sup { font-size: 28px; font-weight: 600; }
.membership-period { font-family: var(--condensed); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); padding-bottom: 8px; }
.membership-body { padding: 32px 40px; }
.card-features { list-style: none; margin-bottom: 28px; }
.card-features li { font-size: 14px; color: var(--dark-mid); padding: 10px 0; border-bottom: 1px solid var(--gray-light); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; }
.card-features li:last-child { border-bottom: none; }
.card-feature-name { display: flex; align-items: center; gap: 10px; }
.card-feature-name::before { content: ''; width: 5px; height: 5px; background: var(--red); flex-shrink: 0; transform: rotate(45deg); }
.card-feature-tag { font-family: var(--condensed); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 2px 7px; }
.card-feature-tag.now { background: rgba(74,222,128,0.12); color: #16A34A; }
.card-feature-tag.soon { background: rgba(251,191,36,0.12); color: #B45309; }
.card-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 14px; }

/* ── EVENTS ── */
.section-events { background: var(--white); padding: 96px 48px; }
.events-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.events-all { font-family: var(--condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); text-decoration: none; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.event-card { border-top: 4px solid var(--gray-light); padding: 28px; transition: border-color 0.15s, background 0.15s; background: var(--off-white); text-decoration: none; color: inherit; display: block; }
.event-card:hover { border-top-color: var(--red); background: var(--white); }
.event-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.event-date { font-family: var(--condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.event-city { font-family: var(--condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--red); color: var(--white); padding: 3px 10px; }
.event-card h3 { font-family: var(--condensed); font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--dark); line-height: 1.15; margin-bottom: 10px; }
.event-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.event-link { font-family: var(--condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); text-decoration: none; }

/* ── POSTS (Blog/Insights) ── */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.post-card { background: var(--off-white); border-top: 4px solid var(--gray-light); transition: border-color 0.15s; text-decoration: none; color: inherit; display: block; }
.post-card:hover { border-top-color: var(--red); }
.post-card-image { aspect-ratio: 16/9; overflow: hidden; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.post-card:hover .post-card-image img { transform: scale(1.03); }
.post-card-body { padding: 24px; }
.post-card-tag { font-family: var(--condensed); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; display: block; }
.post-card h2 { font-family: var(--condensed); font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--dark); line-height: 1.15; margin-bottom: 10px; }
.post-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.post-card-meta { font-size: 12px; color: var(--gray); }

/* ── SINGLE POST ── */
.post-full { max-width: 800px; margin: 64px auto; padding: 0 48px; }
.post-full-header { margin-bottom: 48px; }
.post-full-tag { font-family: var(--condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; display: block; }
.post-full h1 { font-family: var(--condensed); font-size: clamp(36px, 5vw, 60px); font-weight: 800; text-transform: uppercase; line-height: 0.95; color: var(--dark); margin-bottom: 20px; }
.post-full-meta { font-size: 13px; color: var(--gray); }
.post-full-image { margin: 0 -48px 48px; aspect-ratio: 16/6; overflow: hidden; }
.post-full-image img { width: 100%; height: 100%; object-fit: cover; }
.post-full-content { font-size: 17px; line-height: 1.8; color: var(--dark-mid); }
.post-full-content h2 { font-family: var(--condensed); font-size: 32px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin: 48px 0 16px; }
.post-full-content h3 { font-family: var(--condensed); font-size: 24px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin: 32px 0 12px; }
.post-full-content p { margin-bottom: 24px; }
.post-full-content a { color: var(--red); text-decoration: underline; }
.post-full-content ul, .post-full-content ol { padding-left: 24px; margin-bottom: 24px; }
.post-full-content li { margin-bottom: 8px; }
.post-full-content blockquote { border-left: 4px solid var(--red); padding: 16px 24px; margin: 32px 0; background: var(--off-white); font-style: italic; color: var(--gray); }
.post-full-content img { width: 100%; margin: 32px 0; }
.post-full-content hr { border: none; border-top: 1px solid var(--gray-light); margin: 48px 0; }

/* ── SECTION Insights ── */
.section-insights { background: var(--off-white); padding: 96px 48px; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); padding: 64px 48px 32px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; text-decoration: none; }
.footer-brand-icon { width: 32px; height: 32px; background: var(--red); display: flex; align-items: center; justify-content: center; }
.footer-brand-icon img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.footer-brand-name { font-family: var(--condensed); font-size: 18px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.6; }
.footer-col h4 { font-family: var(--condensed); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ── MEMBERS AREA ── */
.members-area { background: var(--off-white); min-height: 60vh; padding: 96px 48px; }
.members-gate { max-width: 480px; margin: 0 auto; text-align: center; }
.members-gate h2 { font-family: var(--condensed); font-size: 40px; font-weight: 800; text-transform: uppercase; color: var(--dark); margin-bottom: 16px; }
.members-gate p { font-size: 15px; color: var(--gray); margin-bottom: 32px; line-height: 1.7; }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 48px 0; }
.pagination a, .pagination span { font-family: var(--condensed); font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 20px; border: 2px solid var(--gray-light); text-decoration: none; color: var(--gray); transition: all 0.15s; }
.pagination a:hover { border-color: var(--red); color: var(--red); }
.pagination .active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── GHOST CARDS (kg-width-wide / kg-width-full required) ── */
.gh-content .kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: auto calc(50% - 42.5vw);
  transform: translateX(calc(50vw - 50%));
}
.gh-content .kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.gh-content .kg-image { max-width: 100%; }
.gh-content .kg-image-card { margin: 32px 0; }
.gh-content .kg-image-card img { width: 100%; }
.gh-content .kg-gallery-container { display: flex; flex-direction: column; margin: 32px 0; }
.gh-content .kg-gallery-row { display: flex; gap: 8px; margin-bottom: 8px; }
.gh-content .kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.gh-content .kg-bookmark-card { border: 1px solid var(--gray-light); margin: 32px 0; }
.gh-content .kg-bookmark-container { display: flex; text-decoration: none; color: inherit; }
.gh-content .kg-bookmark-content { padding: 20px; flex: 1; }
.gh-content .kg-bookmark-title { font-family: var(--condensed); font-weight: 700; font-size: 16px; color: var(--dark); margin-bottom: 6px; }
.gh-content .kg-bookmark-description { font-size: 13px; color: var(--gray); }
.gh-content .kg-bookmark-thumbnail img { width: 160px; height: 100%; object-fit: cover; }
.gh-content .kg-callout-card { display: flex; gap: 16px; padding: 20px 24px; background: var(--off-white); border-left: 4px solid var(--red); margin: 32px 0; }
.gh-content .kg-callout-text { font-size: 16px; line-height: 1.6; }
.gh-content .kg-video-card { margin: 32px 0; }
.gh-content .kg-embed-card { margin: 32px 0; }
.gh-content .kg-embed-card iframe { width: 100%; }

/* ── RESPONSIVE ── */

/* Tablet: 600–900px */
@media (max-width: 900px) {

  /* Nav */
  .site-nav { padding: 0 24px; }
  .site-nav-links { display: none; }
  .site-nav-cta { margin-left: 0; }

  /* Mobile nav hamburger */
  .nav-hamburger {
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px; margin-left: auto; margin-right: 12px;
    background: none; border: none;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 2px; background: var(--dark);
    transition: all 0.2s;
  }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 80px 24px 56px; }
  .hero h1 { font-size: clamp(44px, 12vw, 64px); }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-red,
  .hero-actions .btn-outline { text-align: center; }

  /* Strip */
  .strip { padding: 14px 24px; gap: 24px; }

  /* About */
  .section-about { padding: 64px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 2px; }

  /* Membership */
  .section-membership { padding: 64px 24px; }
  .membership-inner { grid-template-columns: 1fr; gap: 48px; }
  .membership-card { position: static; }

  /* Events */
  .section-events { padding: 64px 24px; }
  .events-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .events-grid { grid-template-columns: 1fr; }

  /* Insights */
  .section-insights { padding: 64px 24px; }
  .posts-grid { grid-template-columns: 1fr; }

  /* Post */
  .post-full { padding: 0 24px; margin: 40px auto; }
  .post-full-image { margin: 0 -24px 40px; }
  .post-full h1 { font-size: clamp(32px, 8vw, 48px); }
  .post-full-content { font-size: 16px; }

  /* Footer */
  .site-footer { padding: 56px 24px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  /* Members */
  .members-area { padding: 64px 24px; }
}

/* Mobile: max 600px */
@media (max-width: 600px) {

  /* Nav */
  .site-nav { padding: 0 16px; height: 56px; }
  .site-nav-logo-text { font-size: 16px; }
  .site-nav-cta { padding: 8px 16px; font-size: 12px; }

  /* Hero */
  .hero-left { padding: 72px 16px 48px; }
  .hero h1 { font-size: clamp(38px, 11vw, 52px); }
  .hero-desc { font-size: 15px; }
  .hero-eyebrow span { font-size: 11px; }

  /* Strip - hide on small screens */
  .strip { display: none; }

  /* Section padding */
  .section-about,
  .section-membership,
  .section-events,
  .section-insights { padding: 48px 16px; }
  .site-footer { padding: 48px 16px 24px; }

  /* About */
  .about-card { padding: 28px 20px; }
  .about-num { font-size: 52px; }

  /* Membership */
  .membership-card-header { padding: 24px 28px; }
  .membership-price { font-size: 52px; }
  .membership-body { padding: 24px 28px; }
  .features-list { gap: 2px; }
  .feature-item { padding: 14px 16px; gap: 12px; }
  .feature-text h4 { font-size: 14px; }
  .badge-legend { flex-direction: column; gap: 10px; }

  /* Events */
  .events-header h2 { font-size: clamp(32px, 9vw, 44px); }
  .event-card { padding: 20px; }

  /* Post */
  .post-full { padding: 0 16px; margin: 32px auto; }
  .post-full-image { margin: 0 -16px 32px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand-logo { margin-bottom: 8px; }

  /* Section headings */
  .section-h2 { font-size: clamp(30px, 8vw, 44px); }

  /* Buttons full-width on mobile */
  .btn-red, .btn-outline { width: 100%; text-align: center; display: block; }
  .hero-actions .btn-red,
  .hero-actions .btn-outline { padding: 16px 24px; }
}

/* Extra small: max 380px */
@media (max-width: 380px) {
  .site-nav-logo-text { display: none; }
  .hero h1 { font-size: 36px; }
  .membership-price { font-size: 44px; }
  .membership-card-header { padding: 20px; }
  .membership-body { padding: 20px; }
}
