/* ═══════════════════════════════════════════════════════════
   F45 Training South Lamar — Global Stylesheet
   Based on F45 Westlake design system
   ═══════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito Sans', 'Inter', sans-serif;
  font-weight: 400;
  color: #ffffff;
  background: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Brand Tokens ── */
:root {
  --color-red: #d6001c;
  --color-navy: #211551;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-dark: #0a0a0a;
  --color-surface: #111111;
  --color-surface-2: #181818;

  --text-muted: rgba(255,255,255,0.55);
  --text-soft: rgba(255,255,255,0.75);
  --border: rgba(255,255,255,0.08);
  --border-subtle: rgba(255,255,255,0.06);

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Nunito Sans', 'Inter', sans-serif;

  --container: 1200px;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;

  /* Text sizes */
  --text-xs: 0.72rem;
  --text-sm: 0.85rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-hero: clamp(2.5rem, 6vw, 4.5rem);
}

/* ── Light mode support ── */
[data-theme="light"] {
  --color-dark: #f5f5f5;
  --color-surface: #efefef;
  --color-surface-2: #e8e8e8;
  --text-muted: rgba(0,0,0,0.55);
  --text-soft: rgba(0,0,0,0.75);
  --border: rgba(0,0,0,0.08);
  color: #111;
  background: #fff;
}
[data-theme="light"] body { color: #111; background: #fff; }
[data-theme="light"] .section--dark { background: #f0f0f0; color: #111; }
[data-theme="light"] .section--navy { background: #211551; color: #fff; }
[data-theme="light"] .footer { background: #111; color: #fff; }
[data-theme="light"] .nav { background: rgba(0,0,0,0.95); }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

/* ═══════════════════════════════════════════════
   OPENING SOON BANNER
   ═══════════════════════════════════════════════ */
.opening-banner {
  width: 100%;
  background: var(--color-red);
  color: #fff;
  text-align: center;
  padding: 0.75rem var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  position: relative;
  z-index: 1001;
}
.opening-banner__text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.opening-banner__cta {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  cursor: pointer;
}
.opening-banner__cta:hover { opacity: 0.85; }

@media (max-width: 600px) {
  .opening-banner { flex-direction: column; gap: var(--space-2); padding: 0.6rem var(--space-4); }
  .opening-banner__text { font-size: 0.78rem; }
}

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo img,
.nav__logo svg {
  height: 36px;
  width: auto;
  display: block;
}
.nav__logo-domain {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.nav__logo-city {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  list-style: none;
}
.nav__links li a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links li a:hover { color: #fff; }

.nav__instagram svg {
  width: 20px;
  height: 20px;
  fill: rgba(255,255,255,0.8);
  transition: fill 0.2s;
}
.nav__instagram:hover svg { fill: #fff; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: var(--space-2);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.theme-toggle:hover { color: #fff; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  padding: var(--space-10);
}
.nav__mobile.active { display: flex; }
.nav__mobile a {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
.nav__mobile a:hover { color: var(--color-red); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .desktop-only { display: none !important; }
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-red);
  color: #fff;
  border-color: var(--color-red);
}
.btn--primary:hover {
  background: #b8001a;
  border-color: #b8001a;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

.btn--large {
  font-size: 0.9rem;
  padding: 1rem 2.5rem;
}

.btn--nav {
  font-size: 0.75rem;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
}

.link-arrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-red);
  text-decoration: none;
  display: inline-block;
  margin-top: var(--space-4);
  transition: transform 0.2s;
}
.link-arrow:hover { transform: translateX(4px); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-5);
  max-width: 800px;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--space-4);
  display: block;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: var(--text-hero);
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.6);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════
   OFFER BANNER
   ═══════════════════════════════════════════════ */
.offer-banner {
  background: var(--color-red);
  padding: var(--space-10) var(--space-5);
  text-align: center;
}
.offer-banner__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-3);
}
.offer-banner__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-6);
  line-height: 1.2;
}
.offer-banner__title span {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ═══════════════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════════════ */
.section {
  padding: var(--space-12) var(--space-5);
}
.section--dark {
  background: #0d0d0d;
}
.section--navy {
  background: var(--color-navy);
}
.section--surface {
  background: var(--color-surface);
}
.section--surface-2 {
  background: var(--color-surface-2);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-10);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
.section__subtitle {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   STATS GRID
   ═══════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  text-align: center;
}
.stat-card {
  padding: var(--space-8) var(--space-4);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-card:last-child { border-right: none; }
.stat-card__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-red);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.stat-card__label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-card:nth-child(even) { border-right: none; }
  .stat-card:last-child, .stat-card:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

/* ═══════════════════════════════════════════════
   TWO COL LAYOUT
   ═══════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.two-col__image img {
  border-radius: 12px;
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.two-col__text h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase;
  margin-bottom: var(--space-5);
  line-height: 1.1;
}
.two-col__text p {
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col__image { order: -1; }
  .two-col__image img { height: 300px; }
}

/* ═══════════════════════════════════════════════
   VIDEO SHOWCASE — close the open container tag
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════ */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #0a0a0a 0%, var(--color-navy) 100%);
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.cta-section p {
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  font-size: var(--text-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: var(--space-12) var(--space-5) var(--space-8);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border);
}
.footer__brand img,
.footer__brand svg {
  height: 36px;
  width: auto;
  margin-bottom: var(--space-4);
}
.footer__brand p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}
.footer__links h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-5);
}
.footer__links ul li {
  margin-bottom: var(--space-3);
}
.footer__links ul li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links ul li a:hover { color: #fff; }
.footer__bottom {
  max-width: var(--container);
  margin: var(--space-6) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, background 0.2s;
}
.footer__social a:hover {
  border-color: var(--color-red);
  background: rgba(214,0,28,0.1);
}
.footer__social svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.6);
}
.footer__social a:hover svg { fill: #fff; }

@media (max-width: 800px) {
  .footer__inner { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* ═══════════════════════════════════════════════
   POPUP OVERLAY (2-second delay popup)
   ═══════════════════════════════════════════════ */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.97);
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}
.popup-overlay.active { display: flex; }

.popup {
  background: #111;
  border: 1px solid rgba(214,0,28,0.3);
  border-top: 3px solid var(--color-red);
  border-radius: 16px;
  padding: var(--space-8);
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
}
.popup__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: none;
  border: none;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  line-height: 1;
}
.popup__close:hover { color: #fff; }
.popup__eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--space-3);
}
.popup__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.popup__body {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}
.popup__checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  text-align: left;
  margin-bottom: var(--space-5);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.popup__login {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}
.popup__login a { color: var(--color-red); }
.popup__fine {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════════
   OFFER MODAL
   ═══════════════════════════════════════════════ */
.offer-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.97);
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  overflow-y: auto;
}
.offer-modal-overlay.active { display: flex; }

.offer-modal {
  background: #111;
  border: 1px solid rgba(214,0,28,0.25);
  border-top: 3px solid var(--color-red);
  border-radius: 18px;
  padding: var(--space-8) var(--space-8);
  max-width: 520px;
  width: 100%;
  position: relative;
  text-align: center;
}
.offer-modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.offer-modal__close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.offer-modal__eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: var(--space-3);
}
.offer-modal__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-3);
}
.offer-modal__sub {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

/* ═══════════════════════════════════════════════
   INSTAGRAM HANDLE LINK
   ═══════════════════════════════════════════════ */
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.instagram-handle svg { width: 20px; height: 20px; }
.instagram-handle:hover { color: var(--color-red); }

/* ═══════════════════════════════════════════════
   SCHEDULE SECTION (placeholder for future)
   ═══════════════════════════════════════════════ */
.schedule-section { background: var(--color-dark); }
.schedule-widget { margin-bottom: var(--space-6); }
.schedule-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   REVIEWS SECTION
   ═══════════════════════════════════════════════ */
.reviews-section { background: var(--color-dark); }
.reviews-widget { margin: var(--space-6) 0; min-height: 200px; }

/* ═══════════════════════════════════════════════
   BLOG GRID
   ═══════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214,0,28,0.3);
}
.blog-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.blog-card__body { padding: var(--space-5); }
.blog-card__tag {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-red);
  display: inline-block;
  margin-bottom: var(--space-3);
}
.blog-card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: var(--space-3);
}
.blog-card__title a { color: #fff; text-decoration: none; }
.blog-card__title a:hover { color: var(--color-red); }
.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
.blog-card__link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-red);
}
.blog-card__link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════ */
.desktop-only { display: flex; }
@media (max-width: 900px) {
  .desktop-only { display: none !important; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — Global
   ═══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .section { padding: var(--space-10) var(--space-4); }
  .hero__title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .hero__buttons { flex-direction: column; align-items: center; }
  .offer-modal { padding: var(--space-6) var(--space-5); }
  .popup { padding: var(--space-6) var(--space-5); }
}
