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

:root {
  --red: #dc2626;
  --red-dark: #b91c1c;
  --red-light: #ef4444;
  --black: #0a0a0a;
  --black-light: #171717;
  --white: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-600: #525252;
  --gray-800: #262626;
  --gold: #fbbf24;
  --navy: #1a1a2e;
  --navy-dark: #16213e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Header ─────────────────────────────── */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  text-transform: uppercase;
}

/* ── Desktop Nav ─────────────────────────── */

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav-item {
  position: relative;
}

.nav-item > a,
.nav-item > button {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--gray-200);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
  transition: all 0.15s;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.nav-item > a:hover,
.nav-item > button:hover,
.nav-item.open > a,
.nav-item.open > button {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-item > a.nav-cta {
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  padding: 0.5rem 1rem;
}

.nav-item > a.nav-cta:hover {
  background: var(--red-dark);
}

/* Members button - solid red */
.nav-item > a.nav-members {
  background: var(--red);
  color: var(--white);
}

.nav-item > a.nav-members:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.chevron {
  width: 10px;
  height: 10px;
  opacity: 0.6;
  transition: transform 0.2s;
}

.nav-item.open .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.6rem;
  min-width: 200px;
  padding: 0.4rem;
  z-index: 1001;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.nav-item.open .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 0.55rem 0.875rem;
  color: var(--gray-200);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 0.4rem;
  transition: all 0.15s;
  white-space: nowrap;
}

.dropdown a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Mobile */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
}

@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: block; }
}

/* ── Mobile Nav ─────────────────────────── */

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(10,10,10,0.98);
  overflow-y: auto;
  padding: 5rem 2rem 3rem;
  flex-direction: column;
  gap: 0;
}

.mobile-nav.open { display: flex; }

.mobile-close {
  position: fixed;
  top: 1.25rem;
  right: 1.75rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  z-index: 1101;
}

.mobile-nav-section {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.25rem 0;
}

.mobile-nav-section a,
.mobile-nav-section button {
  display: block;
  width: 100%;
  text-align: left;
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.875rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color 0.15s;
}

.mobile-nav-section > a:hover,
.mobile-nav-section > button:hover { color: var(--red); }

.mobile-sub {
  display: none;
  padding-bottom: 0.5rem;
}

.mobile-sub.open { display: block; }

.mobile-sub a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-400);
  padding: 0.5rem 0 0.5rem 1rem;
}

.mobile-sub a:hover { color: var(--white); }

.mobile-nav-cta {
  margin-top: 1.5rem;
  display: inline-block;
  background: var(--red);
  color: var(--white) !important;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  text-align: center;
  width: calc(100% - 3rem);
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.mobile-members-cta {
  margin-top: 0.75rem;
  background: transparent;
  border: 2px solid var(--red);
}

/* ── Buttons ─────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

/* ── Page Hero ───────────────────────────── */

.page-hero {
  padding: 8rem 2rem 4rem;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.page-hero h1 span { color: var(--red); }

.page-hero p {
  color: var(--gray-400);
  font-size: 1.125rem;
  max-width: 600px;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb a:hover { color: var(--white); }

/* ── Sections ────────────────────────────── */

.section {
  padding: 5rem 2rem;
}

.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--gray-100); }
.section-navy { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); }
.section-red { background: var(--red); color: var(--white); }

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-dark .section-header p { color: var(--gray-400); }

/* ── Cards ───────────────────────────────── */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,0.25));
}

.card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 2rem;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-body { padding: 1.5rem; }

.card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.card-body p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1rem;
  text-decoration: none;
  transition: gap 0.15s;
}

.card-link:hover { gap: 0.65rem; }

/* ── Person Card ─────────────────────────── */

.person-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.person-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.person-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(220,38,38,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  border: 3px solid var(--red);
  overflow: hidden;
}

.person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Lead instructor cards with larger photos */
.lead-instructor-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(220,38,38,0.1);
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  overflow: hidden;
}

.lead-instructor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.person-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0.25rem;
}

.person-card .role {
  font-size: 0.775rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.person-card .grade {
  display: inline-block;
  margin-top: 0.5rem;
  background: rgba(220,38,38,0.1);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
}

/* ── Table ───────────────────────────────── */

.timetable-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.timetable-table th {
  background: var(--black);
  color: var(--white);
  padding: 0.875rem 1rem;
  text-align: left;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.timetable-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.timetable-table tr:hover td { background: rgba(220,38,38,0.04); }

.timetable-table .day-row td {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
}

/* ── Prose ───────────────────────────────── */

.prose {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.prose h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  color: var(--black);
  margin: 2rem 0 0.75rem;
  letter-spacing: 0.02em;
}

.prose h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin: 1.5rem 0 0.5rem;
}

.prose p { margin-bottom: 1.25rem; }

.prose ul, .prose ol {
  margin: 0 0 1.25rem 1.5rem;
}

.prose li { margin-bottom: 0.4rem; }

.prose strong { color: var(--black); }

/* ── Two-col layout ──────────────────────── */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── Features ────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(220,38,38,0.15);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.feature p {
  font-size: 0.825rem;
  color: var(--gray-400);
  margin: 0;
}

/* ── Contact Form ────────────────────────── */

.contact-form-wrap {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.775rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.25rem;
}

.form-submit:hover { background: var(--red-dark); transform: translateY(-2px); }

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem;
}

.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 0.5rem;
}

/* ── CTA Banner ──────────────────────────── */

.cta-banner {
  padding: 5rem 2rem;
  background: var(--red);
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--red);
  font-size: 1rem;
}

.cta-banner .btn:hover {
  background: var(--black);
  color: var(--white);
}

/* ── Footer ──────────────────────────────── */

footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 2rem 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

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

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

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

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-brand h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--gray-200);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--red); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  color: var(--gray-600);
  font-size: 0.8rem;
}

.footer-policies {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-policies a {
  color: var(--gray-600);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-policies a:hover { color: var(--gray-400); }

/* ── Stat bar ────────────────────────────── */

.stat-bar {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}

.stat-value span { color: var(--red); }

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 0.2rem;
}

/* ── Diary / Event list ──────────────────── */

.event-month {
  margin-bottom: 2.5rem;
}

.event-month h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  color: var(--red);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray-200);
}

.event-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
  align-items: flex-start;
}

.event-date {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--black);
  min-width: 160px;
}

.event-desc { color: var(--gray-600); }

/* ── Safeguarding contact cards ─────────── */

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(220,38,38,0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.contact-card .role { font-size: 0.775rem; color: var(--red); font-weight: 600; margin-bottom: 0.5rem; }
.contact-card p { font-size: 0.825rem; color: var(--gray-600); margin: 0; }
.contact-card a { color: var(--gray-600); text-decoration: none; }
.contact-card a:hover { color: var(--red); }

/* ── Cookie Banner ──────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.5rem;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.show { display: flex; }

.cookie-banner p {
  color: var(--gray-300);
  font-size: 0.875rem;
  margin: 0;
  max-width: 600px;
}

.cookie-banner a {
  color: var(--red-light);
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: var(--white);
}

.cookie-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-btn:hover {
  background: var(--red-light);
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--gray-400);
  border: 1px solid var(--gray-600);
}

.cookie-btn-secondary:hover {
  background: var(--gray-800);
  color: var(--white);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
    gap: 1rem;
  }
  .cookie-banner p { font-size: 0.8rem; }


/* ── Utility ─────────────────────────────── */

.text-center { text-align: center; }
.text-red { color: var(--red); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

@media (max-width: 600px) {
  .section { padding: 3.5rem 1.25rem; }
  .page-hero { padding: 7rem 1.25rem 3rem; }
  .header-inner { padding: 0.75rem 1.25rem; }
  .stat-bar { gap: 1.75rem; }
}
