/* ═══════════════════════════════════════════════════════════════
   THE STICKLEY METHOD — style.css
   White/light theme · Barlow Condensed · Mobile-first
═══════════════════════════════════════════════════════════════ */

:root {
  --cyan:        #0EC4E6;
  --cyan-dark:   #0aaac9;
  --gold:        #c9a84c;
  --gold-dark:   #b8933b;
  --navy:        #0a2540;
  --dark:        #111111;
  --mid:         #333333;
  --muted:       #666666;
  --light:       #f5f5f5;
  --white:       #ffffff;
  --border:      #e0e0e0;
  --card-dark:   #111827;
  --card-dark2:  #1a2233;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --header-h:   60px;
  --announce-h: 38px;
  --radius:     8px;
  --tr:         0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

/* ── Utilities ─────────────────────────────────────────────── */
.cyan { color: var(--cyan); }
.gold { color: var(--gold); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--tr), transform 0.12s, box-shadow var(--tr), border-color var(--tr);
  white-space: nowrap;
  min-height: 48px;
}
.btn-primary {
  background: var(--cyan);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,196,230,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-lg { font-size: 1.1rem; padding: 15px 32px; min-height: 54px; }

/* ── Access note ───────────────────────────────────────────── */
.access-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
}
.access-note.light { color: rgba(255,255,255,0.55); }
.access-note svg { flex-shrink: 0; }

/* ── Scroll fade-up ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR — sticky, dark navy
═══════════════════════════════════════════════════════════ */
#announce-bar {
  background: var(--navy);
  color: var(--white);
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  position: sticky;
  top: 0;
  z-index: 300;
  padding: 0 16px;
}
.announce-btn {
  background: var(--cyan);
  color: var(--white);
  padding: 3px 12px;
  border-radius: 3px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background var(--tr);
}
.announce-btn:hover { background: var(--cyan-dark); }

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
#header {
  position: sticky;
  top: var(--announce-h);
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
#logo-canvas {
  height: 53px;
  width: 53px;
  display: block;
  flex-shrink: 0;
}
.logo-brand { display: flex; flex-direction: column; line-height: 1.1; }
.logo-brand-top {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--dark);
}
.logo-brand-bot {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cyan);
}

/* Desktop nav */
.desktop-nav { display: none; align-items: center; gap: 20px; margin-left: auto; }
.nav-link {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mid);
  text-transform: uppercase;
  position: relative;
  transition: color var(--tr);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-link:hover { color: var(--cyan); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta { padding: 8px 18px; font-size: 0.8rem; min-height: 36px; margin-left: 4px; }

/* Hamburger — explicitly dark for visibility on white header */
#hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  width: 42px; height: 42px;
  flex-shrink: 0;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  background: var(--white);
}
#hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV — partial right-side panel
═══════════════════════════════════════════════════════════ */
#nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 350;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#nav-backdrop.show { opacity: 1; pointer-events: auto; }

#mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(80vw, 290px);
  max-height: 55vh;
  height: auto;
  background: var(--white);
  z-index: 400;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 28px rgba(0,0,0,0.18);
  overflow-y: auto;
  border-radius: 0 0 0 12px;
}
#mobile-nav.open { transform: translateX(0); }

.mnav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mnav-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dark);
  text-transform: uppercase;
}
#mobile-close {
  font-size: 1.2rem;
  color: var(--muted);
  padding: 4px 8px;
  line-height: 1;
}

#mobile-nav nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 6px 0;
}
.mnav-link {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--dark);
  text-transform: uppercase;
  padding: 16px 20px;
  display: block;
  border-bottom: 1px solid var(--light);
  transition: color var(--tr), background var(--tr);
}
.mnav-link:hover { color: var(--cyan); background: rgba(14,196,230,0.05); }

.mnav-cta-wrap {
  padding: 14px 18px 18px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mnav-cta { width: 100%; min-height: 50px; font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════════
   FLASH SALE BADGE (reused everywhere)
═══════════════════════════════════════════════════════════ */
.flash-sale {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid var(--gold);
  color: #8a6820;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 7px 18px;
  border-radius: 4px;
  text-transform: uppercase;
  animation: badge-glow 2.2s ease-in-out infinite;
}
.flash-sale strong {
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 1.05em;
  letter-spacing: 0.12em;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(201,168,76,0.2); }
  50%       { box-shadow: 0 0 18px rgba(201,168,76,0.5); }
}

.flash-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: dot-pulse 1.4s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(201,168,76,0.7); }
  50%       { transform: scale(1.3);  box-shadow: 0 0 0 5px rgba(201,168,76,0); }
}

/* Mid-page flash strip */
.flash-mid {
  background: var(--light);
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#hero {
  background: var(--white);
  padding: 18.2vh 24px 13vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.hero-inner {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero heading */
.hero-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.8rem, 12vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 45px;
}

.hero-body {
  font-size: 1rem;
  color: var(--mid);
  max-width: 460px;
  margin: 34px auto 24px;
  line-height: 1.65;
}
.hero-body strong { color: var(--dark); }

/* ═══════════════════════════════════════════════════════════
   STATS — compact, horizontal
═══════════════════════════════════════════════════════════ */
#stats {
  background: var(--navy);
  padding: 36px 16px;
}
.stats-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 4px;
}
.stat-val {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-wrap: nowrap;
}
.stat-num, .stat-pre, .stat-suf {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 9vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.stat-lbl {
  font-family: var(--font-head);
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.stats-cta {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stats-btn { background: var(--white); color: var(--navy); }
.stats-btn:hover { background: rgba(255,255,255,0.9); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ═══════════════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 36px; }
.section-tag {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.section-tag.red { color: #e53e3e; }
.section-header h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 7vw, 3.8rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--dark);
}
.section-sub {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 480px;
  margin: 10px auto 0;
}
.section-cta {
  text-align: center;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════════
   LEARN CAROUSEL
═══════════════════════════════════════════════════════════ */
#learn {
  padding: 60px 0 48px;
  background: var(--white);
  overflow: hidden;
}
#learn .section-header { padding: 0 20px; }

.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.carousel-viewport { overflow: hidden; width: 100%; }
.carousel-track {
  display: flex;
  gap: 0;
  padding: 0;            /* no padding by default — added per-carousel below */
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
/* Multi-card carousels: gap + padding for card breathing room / shadow space */
#learn-track, #rev-track {
  gap: 14px;
  padding: 8px 20px;
}
.carousel-track:active { cursor: grabbing; }

/* Learn cards — full image shown */
.learn-card {
  flex: 0 0 min(88vw, 320px);
  background: var(--card-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.learn-img-wrap {
  width: 100%;
  overflow: hidden;
}
.learn-img-wrap img {
  width: 100%;
  height: auto;          /* show full image, no crop */
  display: block;
  object-fit: initial;
}
.learn-info { padding: 14px 16px 18px; }
.learn-info-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}
.learn-info-top strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
}
.learn-icon { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; }
.learn-info p { font-size: 0.8rem; color: rgba(255,255,255,0.58); line-height: 1.5; }

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px; height: 38px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background var(--tr), border-color var(--tr);
  flex-shrink: 0;
}
.carousel-arrow svg { width: 18px; height: 18px; color: var(--dark); }
.carousel-arrow:hover { background: var(--cyan); border-color: var(--cyan); }
.carousel-arrow:hover svg { color: var(--white); }
.arrow-prev { left: 2px; }
.arrow-next { right: 2px; }

/* Dots — cyan */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  padding: 0 20px;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--tr), transform var(--tr);
}
.dot.active { background: var(--cyan); transform: scale(1.35); }

/* ═══════════════════════════════════════════════════════════
   COMMUNITY
═══════════════════════════════════════════════════════════ */
#community { padding: 60px 24px; background: var(--light); }
.community-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}
.community-globe { width: 180px; flex-shrink: 0; }
#globe-canvas { width: 100%; height: auto; display: block; }
.community-text h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 6vw, 3rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 24px;
}
.community-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.community-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.55;
}
.check-icon { width: 18px; height: 18px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.community-list strong { color: var(--dark); }
.community-tagline {
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 18px;
}

/* ═══════════════════════════════════════════════════════════
   REAL RESULTS — TABS (keep gold here)
═══════════════════════════════════════════════════════════ */
#results { padding: 60px 24px; background: var(--white); }
.results-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}
.rtab {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 7px 18px;
  border-radius: 3px;
  border: 2px solid var(--border);
  color: var(--muted);
  transition: all var(--tr);
}
.rtab:hover, .rtab.active { background: var(--gold); color: var(--white); border-color: var(--gold); }
.results-display { max-width: 800px; margin: 0 auto; }
.results-content { display: none; }
.results-content.active { display: block; }

/* Transformation carousels */
.results-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 44px;
  overflow: hidden;     /* belt-and-braces: clip any sub-pixel bleed */
}
.results-carousel-outer .arrow-prev { left: 0; }
.results-carousel-outer .arrow-next { right: 0; }

/* Each slide is exactly the viewport width — no padding so no peek-through */
.transform-slide {
  flex-shrink: 0;
  box-sizing: border-box;
  /* width set by JS to viewport.offsetWidth */
}

/* Inner breathing room lives inside the pair, not the slide */
.transform-pair {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 0 10px;
}
.transform-img-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.transform-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Show full image — no cropping in CSS */
.transform-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

/* Eyes — single centred photo, smaller than full-width pairs */
.transform-single {
  width: 65%;
  max-width: 320px;
  margin: 0 auto;
  padding: 0 10px;
}
.transform-single img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   EVENTS — "UPCOMING EVENTS" big gold label, headers cyan
═══════════════════════════════════════════════════════════ */
#events {
  padding: 60px 24px;
  background: var(--dark);
  color: var(--white);
}
#events .section-header h2 { color: var(--white); }
#events .section-sub { color: rgba(255,255,255,0.45); }

/* Gold "UPCOMING EVENTS" label */
.events-big-label {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 10px;
}

.events-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.event-card {
  background: var(--card-dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
}
.event-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

/* Event header back to cyan */
.event-header {
  background: rgba(14,196,230,0.1);
  border-bottom: 1px solid rgba(14,196,230,0.2);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cyan);
  text-transform: uppercase;
}
.event-header svg { width: 20px; height: 20px; flex-shrink: 0; }
.event-body { padding: 16px 18px; }
.event-freq {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.event-freq svg { width: 13px; height: 13px; }
.event-body ul { display: flex; flex-direction: column; gap: 9px; }
.event-body li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.event-body li svg { width: 14px; height: 14px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
#events .section-cta .btn-primary { background: var(--cyan); }

/* ═══════════════════════════════════════════════════════════
   STUDENT REVIEWS — white bg, transform carousel, dots
═══════════════════════════════════════════════════════════ */
#reviews {
  padding: 60px 0 48px;
  background: var(--white);
  overflow: hidden;
}
#reviews .section-header { padding: 0 20px; }

.reviews-outer {
  position: relative;
  display: flex;
  align-items: center;
}

/* Review cards — centered text */
.review-card {
  flex: 0 0 min(88vw, 380px);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow var(--tr), transform var(--tr);
}
.review-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-2px); }

.rev-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--a, #0EC4E6), var(--b, #c9a84c));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.rev-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rev-stars {
  font-size: 1rem;
  color: #e6a817;
  letter-spacing: 2px;
}
.review-card > p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.65;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER — light bg, multiply blend on logo
═══════════════════════════════════════════════════════════ */
#footer {
  background: var(--light);
  color: var(--dark);
  text-align: center;
  padding: 32px 24px 24px;
  border-top: 1px solid var(--border);
}
.footer-canvas {
  height: 80px;
  width: 80px;
  display: block;
  margin: 0 auto 12px;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--dark);
  margin-bottom: 4px;
}
.footer-tagline {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-copy {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════
   TABLET — 600px+
═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   MOBILE — results carousel full-width
═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .results-carousel-outer {
    /* cancel the section's 24px padding so carousel reaches near screen edges */
    margin: 0 -20px;
    padding: 0 6px;   /* arrows sit 6px from screen edge */
  }
}

@media (min-width: 600px) {
  .events-grid { grid-template-columns: repeat(3,1fr); }
  .community-inner { flex-direction: row; text-align: left; }
  .community-globe { width: 200px; }
}

/* ═══════════════════════════════════════════════════════════
   DESKTOP — 768px+
═══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  :root { --header-h: 70px; --announce-h: 42px; }
  .desktop-nav { display: flex; }
  #hamburger   { display: none; }
  #logo-img { height: 50px; }

  .learn-card  { flex: 0 0 300px; }
  .review-card { flex: 0 0 360px; }
  .carousel-arrow { width: 44px; height: 44px; }
  .carousel-arrow svg { width: 20px; height: 20px; }

  #hero { padding: 32px 40px 64px; }
  .hero-phoenix-wrap { width: min(65vw, 420px); height: min(65vw, 420px); }
  .community-globe { width: 240px; }
  .rtab { font-size: 0.95rem; padding: 9px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   WIDE — 1024px+
═══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .learn-card  { flex: 0 0 310px; }
  .review-card { flex: 0 0 380px; }
  .carousel-wrap { padding: 0 36px; max-width: 1200px; margin: 0 auto; }
  .reviews-outer { padding: 0 36px; max-width: 1200px; margin: 0 auto; }
  .arrow-prev { left: 0; }
  .arrow-next { right: 0; }
}
