/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --charcoal2: #1e1e1e;
  --charcoal3: #2a2a2a;
  --yellow: #f5c518;
  --yellow-dark: #d4a800;
  --yellow-light: #ffe566;
  --white: #f0ede6;
  --grey: #888;
  --grey-light: #b8b5ae;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --transition: 0.3s ease;
  --section-pad: 100px 0;
  --fs-2xs: 10px;
  --fs-xs: 11px;
  --fs-sm: 12px;
  --fs-base: 14px;
  --fs-md: 16px;
  --fs-lg: 17px;
  --lh-tight: 1.1;
  --lh-heading: 1.3;
  --lh-body: 1.6;
  --lh-relaxed: 1.7;
  --ls-none: 0;
  --ls-tight: 0.5px;
  --ls-base: 1px;
  --ls-wide: 2px;
  --ls-wider: 3px;
}

html { scroll-behavior: smooth; background: #0a0a0a; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  border-left: 3px solid var(--yellow);
  padding-left: 10px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em { font-style: normal; color: var(--yellow); }

.section-sub {
  font-size: 17px;
  color: var(--grey-light);
  max-width: 600px;
  line-height: 1.7;
}

.section-header.center { text-align: center; margin-bottom: 60px; }
.section-header.center .section-sub { margin: 0 auto; }
.section-header.center .section-tag { border-left: none; border-bottom: 2px solid var(--yellow); padding-left: 0; padding-bottom: 4px; }

.section-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dark-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.7), rgba(10,10,10,0.85)); }
.dark-overlay.heavy { background: rgba(10,10,10,0.8); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--yellow);
}
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,0.3); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--grey-light);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 20px;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.btn-ghost:hover { color: var(--yellow); border-bottom-color: var(--yellow); }

.btn-primary-full, .btn-outline-full {
  display: block; width: 100%; text-align: center;
  font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
  padding: 16px 24px; border-radius: var(--radius); transition: var(--transition);
}
.btn-primary-full { background: var(--yellow); color: var(--black); border: 2px solid var(--yellow); }
.btn-primary-full:hover { background: var(--yellow-dark); box-shadow: 0 8px 24px rgba(245,197,24,0.3); }
.btn-outline-full { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.2); }
.btn-outline-full:hover { border-color: var(--yellow); color: var(--yellow); }

/* ===== ANIMATIONS ===== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .logo-text { font-family: var(--font-display); font-size: 22px; letter-spacing: 3px; color: var(--white); }
.nav-logo .logo-accent { font-family: var(--font-display); font-size: 22px; letter-spacing: 3px; color: var(--yellow); margin-top: -4px; }
.nav-logo .logo-tag { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-top: 2px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--grey-light); transition: color var(--transition); }
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
  background: var(--yellow); color: var(--black); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 10px 20px; border-radius: var(--radius);
  transition: var(--transition);
}
.nav-cta:hover { background: var(--yellow-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.mobile-menu {
  display: none;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px 30px;
  border-top: 1px solid var(--charcoal3);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--grey-light); transition: color var(--transition); }
.mobile-menu a:hover { color: var(--yellow); }
.mobile-cta { color: var(--yellow) !important; }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 14px 22px; border-radius: 50px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.floating-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; padding: 120px 24px 80px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--yellow);
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 28px;
  transition-delay: 0.1s;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: 4px;
  margin-bottom: 24px;
  transition-delay: 0.2s;
}
.hero-title .line1 { display: block; color: var(--white); }
.hero-title .line2 { display: block; color: var(--yellow); }
.hero-title em { font-style: normal; color: rgba(255,255,255,0.5); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.75); max-width: 560px;
  margin-bottom: 36px; line-height: 1.7; transition-delay: 0.3s;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 60px; transition-delay: 0.4s; justify-content: center; }
.hero-stats { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; transition-delay: 0.5s; justify-content: center; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: var(--font-display); font-size: 36px; color: var(--yellow); line-height: 1; }
.stat-plus { font-family: var(--font-display); font-size: 24px; color: var(--yellow); }
.stat-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--grey-light); margin-top: 2px; }
.stat-icon { color: var(--yellow); }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--grey);
}
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--yellow), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(0.8)} 50%{opacity:1;transform:scaleY(1)} }

/* ===== ABOUT ===== */
.about { padding: var(--section-pad); background: var(--charcoal); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { border-radius: 12px; overflow: hidden; height: 500px; }
.about-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  border-radius: 12px; overflow: hidden;
  border: 4px solid var(--charcoal);
}
.about-years {
  position: absolute; top: -20px; left: -20px;
  background: var(--yellow); color: var(--black);
  padding: 20px 24px; border-radius: 12px;
  display: flex; flex-direction: column; align-items: center;
}
.about-years .big-num { font-family: var(--font-display); font-size: 52px; line-height: 1; }
.about-years .years-text { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-align: center; }
.about-content { text-align: center; }
.about-content p { font-size: var(--fs-base); color: var(--grey-light); margin-bottom: 16px; line-height: var(--lh-relaxed); text-align: center; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.pillar { display: flex; align-items: flex-start; gap: 12px; }
.pillar-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.pillar strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.pillar span { font-size: 13px; color: var(--grey); }

/* ===== WHAT IS CROSSFIT ===== */
.what-is { position: relative; padding: var(--section-pad); overflow: hidden; }
.what-is .container { position: relative; z-index: 2; }
.cf-pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.cf-pillar-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
}
.cf-pillar-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--yellow); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.cf-pillar-card:hover { border-color: rgba(245,197,24,0.2); transform: translateY(-4px); }
.cf-pillar-card:hover::before { transform: scaleX(1); }
.cf-num { font-family: var(--font-display); font-size: 48px; color: rgba(245,197,24,0.1); line-height: 1; margin-bottom: 12px; }
.cf-pillar-icon { color: var(--yellow); margin-bottom: 16px; }
.cf-pillar-card h3 { font-family: var(--font-heading); font-size: 19px; font-weight: 600; line-height: var(--lh-heading); margin-bottom: 10px; }
.cf-pillar-card p { font-size: var(--fs-base); color: var(--grey-light); line-height: var(--lh-relaxed); flex: 1; }

/* ===== PROGRAMS ===== */
.programs { padding: var(--section-pad); background: var(--black); }
.programs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.program-card {
  background: var(--charcoal2);
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--charcoal3);
  transition: var(--transition);
}
.program-card:hover { transform: translateY(-6px); border-color: rgba(245,197,24,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.program-img { height: 200px; position: relative; overflow: hidden; }
.program-img img { transition: transform 0.5s ease; }
.program-card:hover .program-img img { transform: scale(1.08); }
.program-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.8), transparent); }
.program-content { padding: 20px; }
.program-icon { font-size: 28px; margin-bottom: 10px; }
.program-content h3 { font-family: var(--font-heading); font-size: 19px; font-weight: 600; line-height: var(--lh-heading); margin-bottom: 10px; }
.program-content p { font-size: var(--fs-base); color: var(--grey-light); line-height: var(--lh-relaxed); margin-bottom: 16px; }
.program-link { font-size: 13px; font-weight: 700; color: var(--yellow); letter-spacing: 0.5px; transition: gap var(--transition); }
.program-link:hover { text-decoration: underline; }

/* ===== WHY CFS ===== */
.why-cfs { padding: var(--section-pad); background: var(--charcoal); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: stretch;
}
.why-content {
  display: flex; flex-direction: column;
}
.why-stats-wrap {
  display: flex; flex-direction: column;
  height: 100%;
}
.why-content p { color: var(--grey-light); margin-bottom: 24px; line-height: 1.7; }
.why-features { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; flex: 1; }
.why-feature { display: flex; align-items: flex-start; gap: 14px; }
.why-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(245,197,24,0.15); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.why-feature strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.why-feature span { font-size: var(--fs-base); color: var(--grey-light); line-height: var(--lh-relaxed); }
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  align-self: stretch;
}
.why-stat-card {
  background: var(--charcoal2); border: 1px solid var(--charcoal3);
  border-radius: 12px; padding: 28px 24px;
  text-align: center; transition: var(--transition);
  display: flex; flex-direction: column; justify-content: center;
}
.why-stat-card:hover { border-color: rgba(245,197,24,0.3); }
.why-stat-num { font-family: var(--font-display); font-size: 48px; color: var(--yellow); line-height: 1; }
.why-stat-plus { font-family: var(--font-display); font-size: 28px; color: var(--yellow); }
.why-stat-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--grey); margin-top: 6px; }
.why-img-card {
  grid-column: span 2;
  border-radius: 12px; overflow: hidden;
  height: 362px;
}
.why-img-card img { width: 100%; height: 362px; object-fit: cover; object-position: center 25%; display: block; }

/* ===== TRAINING EXPERIENCE ===== */
.training-exp { padding: var(--section-pad); background: var(--black); }
.exp-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 260px 320px;
  gap: 16px;
}
.exp-tile {
  position: relative; border-radius: 12px; overflow: hidden;
  height: 100%; cursor: pointer;
  transition: var(--transition);
}
.exp-tile.large { grid-column: span 2; height: 100%; }
.exp-tile:hover { transform: scale(1.02); }
.exp-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent 60%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity var(--transition);
}
.exp-tile:hover .exp-tile-overlay { opacity: 1; }
.exp-tile-overlay span { font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--yellow); text-transform: uppercase; letter-spacing: 2px; }

/* ===== BEGINNER ===== */
.beginner { position: relative; padding: var(--section-pad); overflow: hidden; }
.beginner .container { position: relative; z-index: 2; }
.beginner-steps {
  display: flex; align-items: stretch; gap: 0;
  margin: 0 auto 48px; max-width: 1100px;
}
.beginner-step {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 28px 20px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.step-img {
  width: 100%; height: 160px;
  border-radius: 10px; overflow: hidden;
  margin-bottom: 16px; border: 2px solid rgba(245,197,24,0.15);
  flex-shrink: 0;
}
.step-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.beginner-step:hover .step-img img { transform: scale(1.05); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-display); font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; flex-shrink: 0;
}
.step-content { display: flex; flex-direction: column; flex: 1; width: 100%; }
.step-content h3 { font-family: var(--font-heading); font-size: 19px; font-weight: 600; line-height: var(--lh-heading); margin-bottom: 10px; }
.step-content p { font-size: var(--fs-base); color: var(--grey-light); line-height: var(--lh-relaxed); flex: 1; }
.step-arrow {
  font-size: 24px; color: var(--yellow); padding: 0 6px;
  align-self: center; flex-shrink: 0;
}
.beginner-cta { text-align: center; }

/* ===== COACHES ===== */
.coaches { padding: var(--section-pad); background: var(--charcoal); }
.coaches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.coach-card {
  background: var(--charcoal2);
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--charcoal3);
  transition: var(--transition);
}
.coach-card:hover { transform: translateY(-6px); border-color: rgba(245,197,24,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.coach-img { position: relative; height: 320px; overflow: hidden; }
.coach-img img { filter: grayscale(30%); transition: filter 0.4s ease, transform 0.5s ease; }
.coach-card:hover .coach-img img { filter: grayscale(0%); transform: scale(1.05); }
.coach-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.7), transparent 60%); }
.coach-cert {
  position: absolute; top: 16px; right: 16px;
  background: var(--yellow); color: var(--black);
  font-size: 12px; font-weight: 800; letter-spacing: 1px;
  padding: 6px 12px; border-radius: 4px;
}
.coach-info { padding: 24px; }
.coach-info h3 { font-family: var(--font-heading); font-size: 21px; font-weight: 600; line-height: var(--lh-heading); margin-bottom: 4px; }
.coach-title { font-size: var(--fs-base); color: var(--yellow); font-weight: 600; letter-spacing: var(--ls-tight); display: block; margin-bottom: 12px; }
.coach-specialties { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.coach-specialties span {
  background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.2);
  color: var(--yellow-light); font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
}
.coach-info p { font-size: var(--fs-base); color: var(--grey-light); line-height: var(--lh-relaxed); }

/* ===== COMMUNITY ===== */
.community { padding: var(--section-pad); background: var(--black); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--charcoal2);
  border: 1px solid var(--charcoal3);
  border-radius: 12px; padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(245,197,24,0.2); transform: translateY(-4px); }
.testimonial-card.featured {
  background: rgba(245,197,24,0.06);
  border-color: rgba(245,197,24,0.3);
}
.testi-stars { color: var(--yellow); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { font-size: var(--fs-base); color: var(--grey-light); line-height: var(--lh-relaxed); margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; font-weight: 700; }
.testi-author span { font-size: 12px; color: var(--grey); }

/* ===== SCHEDULE ===== */
.schedule { padding: var(--section-pad); background: var(--charcoal); }
.schedule-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--charcoal3); }
.schedule-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.schedule-table thead tr { background: var(--charcoal3); }
.schedule-table th {
  padding: 14px 16px; text-align: left;
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--grey-light);
}
.schedule-table td { padding: 12px 16px; border-top: 1px solid var(--charcoal3); font-size: 13px; vertical-align: middle; }
.schedule-table tr:hover td { background: rgba(255,255,255,0.02); }
.time-col { font-family: var(--font-heading); font-weight: 600; color: var(--yellow); white-space: nowrap; }
.class-tag { display: inline-block; padding: 5px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap; }
.class-tag.wod { background: rgba(245,197,24,0.12); color: var(--yellow); border: 1px solid rgba(245,197,24,0.25); }
.class-tag.strength { background: rgba(255,80,80,0.1); color: #ff8080; border: 1px solid rgba(255,80,80,0.2); }
.class-tag.oly { background: rgba(80,180,255,0.1); color: #80c8ff; border: 1px solid rgba(80,180,255,0.2); }
.class-tag.gym { background: rgba(150,100,255,0.1); color: #c8a0ff; border: 1px solid rgba(150,100,255,0.2); }
.class-tag.foundations { background: rgba(80,220,130,0.1); color: #80e8a8; border: 1px solid rgba(80,220,130,0.2); }
.class-tag.open { background: rgba(255,160,60,0.1); color: #ffa040; border: 1px solid rgba(255,160,60,0.2); }
.class-tag.comp { background: rgba(255,80,80,0.12); color: #ff8080; border: 1px solid rgba(255,80,80,0.25); }
.schedule-legend { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; align-items: center; justify-content: center; }

/* ===== MEMBERSHIP ===== */
.membership { padding: var(--section-pad); background: var(--black); }
.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; align-items: stretch; }
.pricing-card {
  background: var(--charcoal2);
  border: 1px solid var(--charcoal3);
  border-radius: 16px; padding: 28px 22px 28px;
  transition: var(--transition);
  position: relative;
  display: flex; flex-direction: column;
  height: 100%;
}
.pricing-card:hover { transform: translateY(-6px); border-color: rgba(245,197,24,0.2); }
.pricing-card.featured {
  background: rgba(245,197,24,0.06);
  border-color: rgba(245,197,24,0.4);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--black);
  font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 16px; border-radius: 50px; white-space: nowrap;
}
.pricing-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 12px; }
.pricing-price { font-family: var(--font-display); font-size: 38px; color: var(--white); line-height: 1; margin-bottom: 6px; }
.pricing-price span { font-family: var(--font-body); font-size: 14px; color: var(--grey); font-weight: 400; }
.pricing-save { font-size: 12px; font-weight: 700; color: #4ade80; margin-bottom: 20px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.pricing-features li { font-size: 13px; color: var(--grey-light); line-height: 1.6; }
.pricing-features li.disabled { color: var(--charcoal3); text-decoration: line-through; }
.pricing-note { text-align: center; font-size: 13px; color: var(--grey); margin-top: 24px; }

/* ===== GALLERY ===== */
.gallery { padding: var(--section-pad); background: var(--charcoal); }
.gallery-masonry { columns: 4; gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; }
.gallery-item img { display: block; width: 100%; border-radius: 10px; transition: transform 0.5s ease; }
.gallery-item.tall img { min-height: 400px; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0; border-radius: 10px;
  background: rgba(10,10,10,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--yellow); text-transform: uppercase; letter-spacing: 2px; }

/* ===== INSTAGRAM ===== */
.instagram { padding: var(--section-pad); background: var(--black); }
.insta-handle { display: block; font-size: 18px; font-weight: 700; color: var(--yellow); margin-top: 8px; letter-spacing: 1px; }
.insta-handle:hover { text-decoration: underline; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-bottom: 40px; }
.insta-item { position: relative; aspect-ratio: 1; border-radius: 8px; overflow: hidden; cursor: pointer; }
.insta-item img { transition: transform 0.4s ease; }
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(245,197,24,0.25);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-cta { text-align: center; }

/* ===== CONTACT ===== */
.contact-banner { position: relative; padding: 80px 0; overflow: hidden; text-align: center; }
.contact-banner .container { position: relative; z-index: 2; }
.banner-content h2 { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 56px); font-weight: 700; margin-bottom: 16px; }
.banner-content h2 em { font-style: normal; color: var(--yellow); }
.banner-content p { color: var(--grey-light); font-size: 17px; margin-bottom: 32px; }
.contact-main { padding: 80px 0 100px; background: var(--charcoal); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form-wrap .section-title { margin-top: 10px; }
.contact-form { margin-top: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey-light); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--charcoal2); border: 1px solid var(--charcoal3);
  color: var(--white); border-radius: var(--radius); padding: 12px 16px;
  font-size: 14px; line-height: var(--lh-body); transition: border-color var(--transition); outline: none; resize: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--yellow); }
.form-group select option { background: var(--charcoal2); }
.whatsapp-cta { display: flex; align-items: center; gap: 12px; margin-top: 20px; font-size: 14px; color: var(--grey); }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  font-size: 13px; font-weight: 700; padding: 10px 18px; border-radius: var(--radius);
  transition: var(--transition);
}
.whatsapp-btn:hover { background: #1da851; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.cd-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--yellow); margin-bottom: 4px; }
.contact-detail span, .contact-detail a { font-size: 14px; color: var(--grey-light); line-height: 1.6; }
.contact-detail a:hover { color: var(--yellow); }
.map-embed { border-radius: 12px; overflow: hidden; border: 1px solid var(--charcoal3); }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; filter: grayscale(30%) brightness(0.8); }

/* ===== FOOTER ===== */
.footer { background: var(--charcoal); border-top: 1px solid var(--charcoal3); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px; }
.footer-logo { display: flex; flex-direction: column; margin-bottom: 16px; }
.footer-logo .logo-text { font-family: var(--font-display); font-size: 24px; letter-spacing: 3px; color: var(--white); }
.footer-logo .logo-accent { font-family: var(--font-display); font-size: 24px; letter-spacing: 3px; color: var(--yellow); margin-top: -5px; }
.footer-brand p { font-size: 14px; color: var(--grey); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--charcoal2); border: 1px solid var(--charcoal3);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-light); transition: var(--transition);
}
.footer-social a:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.footer-links h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; color: var(--white); }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--grey); transition: color var(--transition); }
.footer-links a:hover { color: var(--yellow); }
.footer-newsletter h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; color: var(--white); }
.footer-newsletter p { font-size: 14px; color: var(--grey); margin-bottom: 16px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 8px; margin-bottom: 24px; }
.newsletter-form input {
  flex: 1; background: var(--charcoal2); border: 1px solid var(--charcoal3);
  color: var(--white); padding: 10px 14px; border-radius: var(--radius);
  font-size: 13px; outline: none; transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--yellow); }
.newsletter-form button {
  background: var(--yellow); color: var(--black); font-size: 13px; font-weight: 700;
  padding: 10px 18px; border: none; border-radius: var(--radius); cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--yellow-dark); }
.footer-contact-quick { display: flex; flex-direction: column; gap: 6px; }
.footer-contact-quick p { font-size: 14px; color: var(--grey); }
.footer-contact-quick a { color: var(--grey); transition: color var(--transition); }
.footer-contact-quick a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid var(--charcoal3);
  padding: 20px 0;
  display: flex; justify-content: center;
}
.footer-bottom .container { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--grey); }

/* ===== CF PILLAR CARD IMAGES ===== */
.cf-card-img {
  height: 140px; border-radius: 8px; overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.cf-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cf-pillar-card:hover .cf-card-img img { transform: scale(1.06); }
.cf-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.6));
}

/* ===== BEGINNER STEP IMAGES ===== */
.step-img {
  width: 100%; height: 160px; border-radius: 10px; overflow: hidden;
  margin-bottom: 16px; border: 2px solid rgba(245,197,24,0.15);
}
.step-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.beginner-step:hover .step-img img { transform: scale(1.05); }

/* ===== TESTIMONIAL AVATAR PHOTO ===== */
.testi-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
}

/* ===== SCHEDULE BACKGROUND ===== */
.schedule { position: relative; overflow: hidden; }
.schedule-bg { position: absolute; inset: 0; }
.schedule .container { position: relative; z-index: 2; }

/* ===== MEMBERSHIP BANNER ===== */
.membership-banner {
  position: relative; height: 220px; overflow: hidden;
  margin-bottom: 0;
}
.membership-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.membership-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.85) 40%, rgba(10,10,10,0.5));
  display: flex; align-items: center; padding: 0 60px;
}
.membership-banner-text span {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--white);
  max-width: 600px;
  line-height: 1.4;
  border-left: 4px solid var(--yellow);
  padding-left: 20px;
}

/* ===== RESPONSIVE ===== */

/* --- Tablet large (≤1100px) --- */
@media (max-width: 1100px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { columns: 3; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { gap: 48px; }
}

/* --- Tablet (≤900px) --- */
@media (max-width: 900px) {
  :root { --section-pad: 64px 0; }

  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Layouts */
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  /* About visuals */
  .about-img-main { height: 380px; }
  .about-img-accent { width: 140px; height: 140px; right: 0; bottom: -16px; }
  .about-years { top: -16px; left: -8px; padding: 14px 18px; }
  .about-years .big-num { font-size: 40px; }

  /* Why section stacked */
  .why-stats { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .why-img-card { grid-column: span 2; height: 260px; }
  .why-img-card img { height: 260px; }

  /* Methodology */
  .cf-pillars-grid { grid-template-columns: repeat(2, 1fr); }

  /* Programs */
  .programs-grid { grid-template-columns: repeat(2, 1fr); }

  /* Coaches */
  .coaches-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  /* Pricing */
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Experience */
  .exp-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 220px 260px; }
  .exp-tile.large { grid-column: span 2; }

  /* Gallery */
  .gallery-masonry { columns: 2; }

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  /* Schedule */
  .schedule-table-wrap { border-radius: 8px; }

  /* Contact */
  .contact-banner { padding: 60px 0; }
  .map-embed iframe { height: 240px; }
}

/* --- Mobile (≤600px) --- */
@media (max-width: 600px) {
  :root { --section-pad: 56px 0; }

  .container { padding: 0 16px; }

  /* ── Navbar ── */
  .nav-container { height: 60px; padding: 0 16px; }
  .nav-logo .logo-text,
  .nav-logo .logo-accent { font-size: 17px; letter-spacing: 2px; }
  .nav-logo .logo-tag { display: none; }
  .mobile-menu { padding: 16px 16px 28px; }
  .mobile-menu ul { gap: 20px; }
  .mobile-menu a { font-size: 16px; }

  /* ── Floating CTA ── */
  .floating-cta { padding: 14px; border-radius: 50%; bottom: 20px; right: 16px; }
  .floating-cta span { display: none; }

  /* ── Hero ── */
  .hero-content { padding: 90px 16px 56px; text-align: center; align-items: center; }
  .hero-badge {
    font-size: 9px; padding: 6px 10px; letter-spacing: 1.5px;
    white-space: normal; line-height: 1.5;
  }
  .hero-title { font-size: clamp(46px, 13vw, 68px); letter-spacing: 2px; margin-bottom: 16px; }
  .hero-sub { font-size: 14px; margin-bottom: 28px; }
  .hero-ctas {
    flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 36px;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { text-align: center; justify-content: center; width: 100%; }
  .hero-ctas .btn-ghost { align-self: center; text-align: center; justify-content: center; padding: 10px 20px; border-bottom: 1px solid rgba(245,197,24,0.3); }
  /* Stats — clean 2×2 grid, all equal size */
  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    align-items: stretch;
    gap: 12px;
  }
  .stat-div { display: none; }
  .stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; padding: 14px 12px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; height: 100%;
  }
  .stat-num { font-size: 32px; }
  .stat-icon { width: 28px; height: 28px; }
  .stat-label { font-size: 10px; letter-spacing: 0.5px; margin-top: 4px; }
  .hero-scroll { display: none; }

  /* ── Section headings ── */
  .section-tag { display: block; text-align: center; }
  .section-title { font-size: clamp(26px, 7.5vw, 38px); text-align: center; }
  .section-sub { font-size: 14px; text-align: center; }
  .section-header { text-align: center; }
  .section-header.center { margin-bottom: 36px; }

  /* ── About ── */
  .about { padding: 56px 0; }
  .about-grid { gap: 48px; }
  .about-img-main { height: 260px; border-radius: 10px; }
  .about-img-accent { width: 100px; height: 100px; right: 0; bottom: -12px; border-width: 3px; }
  .about-years { top: -12px; left: 0; padding: 10px 14px; border-radius: 10px; }
  .about-years .big-num { font-size: 30px; }
  .about-years .years-text { font-size: 8px; }
  .about-content { text-align: center; }
  .about-content p { font-size: 14px; text-align: justify; }
  .about-pillars { grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
  .pillar { text-align: center; }
  .pillar-icon { font-size: 20px; }
  .pillar strong { font-size: 13px; }
  .pillar span { font-size: 12px; }

  /* ── What Is CrossFit ── */
  .cf-pillars-grid { grid-template-columns: 1fr; gap: 14px; }
  .cf-card-img { height: 150px; }
  .cf-pillar-card { padding: 20px 18px; text-align: center; }
  .cf-num { font-size: 36px; margin-bottom: 8px; }
  .cf-pillar-card h3 { font-size: 17px; }
  .cf-pillar-card p { font-size: 14px; }

  /* ── Programs ── */
  .programs-grid { grid-template-columns: 1fr; gap: 16px; }
  .program-img { height: 180px; }
  .program-content { padding: 16px; text-align: center; }
  .program-content h3 { font-size: 16px; }
  .program-content p { font-size: 14px; }

  /* ── Why CFS ── */
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-content { text-align: center; }
  .why-stats { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .why-img-card { grid-column: span 2; height: 200px; }
  .why-img-card img { height: 200px; }
  .why-stat-card { padding: 18px 12px; text-align: center; }
  .why-stat-num { font-size: 34px; }
  .why-stat-label { font-size: 10px; }
  .why-features { text-align: center; }
  .why-feature { justify-content: center; text-align: center; }
  .why-feature > div { text-align: justify; }
  .why-feature strong { font-size: 14px; }
  .why-feature span { font-size: 14px; }

  /* ── Experience ── */
  .exp-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 160px 180px;
    gap: 10px;
  }
  .exp-tile.large { grid-column: span 2; }
  .exp-tile-overlay span { font-size: 13px; letter-spacing: 1px; }

  /* ── Beginner ── */
  .beginner-steps { flex-direction: column; gap: 0; }
  .beginner-step { border-radius: 12px; margin-bottom: 0; padding: 22px 18px; text-align: center; align-items: center; }
  .step-img { height: 140px; margin-bottom: 14px; }
  .step-num { width: 44px; height: 44px; font-size: 22px; margin: 0 auto 12px; }
  .step-content { text-align: center; }
  .step-content h3 { font-size: 16px; }
  .step-content p { font-size: 14px; }
  .step-arrow {
    transform: rotate(90deg); margin: 10px auto;
    font-size: 18px; padding: 4px 0; display: block; text-align: center;
  }

  /* ── Coaches ── */
  .coaches-grid { grid-template-columns: 1fr; gap: 20px; }
  .coach-img { height: 260px; }
  .coach-info { padding: 18px; text-align: center; }
  .coach-info h3 { font-size: 19px; }
  .coach-info p { font-size: 14px; }
  .coach-specialties { justify-content: center; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card { padding: 22px 18px; text-align: center; }
  .testimonial-card p { font-size: 14px; }
  .testi-author { justify-content: center; }

  /* ── Schedule ── */
  .schedule-header { text-align: center; }
  .schedule-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .schedule-table { min-width: 560px; font-size: 11px; }
  .schedule-table th { padding: 10px 8px; font-size: 10px; }
  .schedule-table td { padding: 9px 7px; }
  .class-tag { font-size: 9px; padding: 3px 5px; white-space: nowrap; }
  .time-col { font-size: 11px; white-space: nowrap; }
  .schedule-legend { gap: 8px; flex-wrap: wrap; justify-content: center; }

  /* ── Membership ── */
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card { padding: 24px 18px; text-align: center; }
  .pricing-card.featured { transform: none; }
  .pricing-price { font-size: 30px; }
  .pricing-badge { font-size: 10px; }
  .pricing-features li { text-align: left; }

  /* ── Gallery ── */
  .gallery-masonry { columns: 2; gap: 10px; }
  .gallery-item { margin-bottom: 10px; border-radius: 8px; }

  /* ── Instagram ── */
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }

  /* ── Contact ── */
  .contact-banner { padding: 44px 0; }
  .banner-content { text-align: center; }
  .banner-content h2 { font-size: clamp(26px, 7vw, 38px); }
  .banner-content p { font-size: 14px; margin-bottom: 24px; }
  .banner-content .btn-primary { width: 100%; justify-content: center; text-align: center; }
  .contact-main { padding: 56px 0 72px; }
  .contact-grid { gap: 40px; }
  .contact-form-block { text-align: center; }
  .contact-form-block .section-tag,
  .contact-form-block h2 { text-align: center; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 14px; }
  .form-group label { text-align: left; display: block; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 14px; }
  .whatsapp-cta { flex-direction: column; align-items: center; gap: 10px; font-size: 13px; text-align: center; }
  .contact-info-block { text-align: center; }
  .contact-details { display: flex; flex-direction: column; align-items: center; gap: 20px; }
  .contact-detail { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
  .cd-icon { margin: 0 auto; font-size: 24px; }
  .contact-detail > div { text-align: center; }
  .contact-detail strong { font-size: 11px; display: block; }
  .contact-detail span,
  .contact-detail a { font-size: 13px; }
  .map-embed iframe { height: 200px; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { padding: 44px 0 32px; }
  .footer-brand { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-logo .logo-text,
  .footer-logo .logo-accent { font-size: 20px; }
  .footer-brand p { font-size: 14px; }
  .footer-links { text-align: center; }
  .footer-links h4,
  .footer-newsletter h4 { font-size: 13px; margin-bottom: 14px; }
  .footer-links a,
  .footer-contact-quick p { font-size: 14px; }
  .footer-contact-quick { text-align: center; }
  .footer-newsletter { text-align: center; }
  .newsletter-form { flex-direction: row; }
  .footer-bottom { padding: 16px 0; text-align: center; }
  .footer-bottom p { font-size: 11px; }
}
