/* ---------- Tokens ---------- */
:root {
  --blue-primary: #1E5AB5;
  --blue-dark: #143D75;
  --purple-accent: #7D4EFA;
  --purple-deep: #6A39D5;
  --blue-soft: #A3C6F7;
  --purple-dark: #6A39D5;
  --purple-soft: #EAE2FD;
  --grey-light: #F5F5F5;
  --grey-dark: #2C2C2C;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;

  --container: 1240px;
  --edge: clamp(1.25rem, 4vw, 3rem);

  --shadow-card: 0 20px 50px -20px rgba(20, 61, 117, 0.35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--grey-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; font-weight: 600; line-height: 1.1; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--purple-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--edge);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow--blue { color: var(--blue-primary); }
.eyebrow--purple { color: var(--purple-accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue-primary); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-purple { background: var(--purple-accent); color: var(--white); }
.btn-purple:hover { background: var(--purple-deep); }
.btn-purple.on-dark { background: var(--purple-soft); color: var(--purple-deep); }
.btn-purple.on-dark:hover { background: var(--white); }
.btn-outline { border-color: currentColor; background: transparent; }
.btn-outline.on-dark { color: var(--white); }
.btn-outline.on-dark:hover { background: rgba(255,255,255,0.12); }
.btn-ghost { color: var(--blue-dark); padding: 0.6rem 0.2rem; display: inline-flex; align-items: center; }
.btn-ghost::after { content: '\2192'; transition: transform 0.15s ease; }
.btn-ghost:hover::after { transform: translateX(4px); }

.price-tag {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  display: inline-block;
}
.price-tag--blue { background: rgba(30, 90, 181, 0.1); color: var(--blue-primary); }
.price-tag--purple { background: rgba(125, 78, 250, 0.1); color: var(--purple-deep); }
.price-tag.on-dark { background: rgba(255, 255, 255, 0.16); color: var(--white); }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 61, 117, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue-dark);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-brand img { height: 42px; width: 42px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a { position: relative; padding-block: 0.3rem; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--blue-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.4rem;
  min-width: 44px;
  min-height: 44px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--blue-dark); border-radius: 2px; }

@media (max-width: 1080px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(20,61,117,0.08);
    padding: 0.5rem var(--edge) 1rem;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { width: 100%; padding-block: 0.7rem; }
  .nav-toggle { display: flex; }
  .site-header { position: sticky; }
}
@media (max-width: 480px) {
  .nav-brand-text { display: none; }
  .nav .btn-primary { padding: 0.7rem 1.1rem; font-size: 0.85rem; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--blue-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 8vw, 6rem) clamp(6rem, 12vw, 9rem);
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(125, 78, 250, 0.35), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-eyebrow { color: var(--blue-soft); margin-bottom: 1.4rem; }
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.3rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue-soft);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
  margin-bottom: 2.2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  min-width: 0;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { margin-top: 2rem; aspect-ratio: 16 / 11; }
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,61,117,0) 55%, rgba(20,61,117,0.55));
}
.on-air {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(20, 61, 117, 0.85);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.on-air .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff5a5a;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ---------- Floating service switcher ---------- */
.switcher {
  position: relative;
  z-index: 10;
  margin-top: clamp(-5rem, -8vw, -3.5rem);
}
.switcher-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.switcher-tab {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
  transition: background 0.2s ease;
}
.switcher-tab:hover { background: var(--grey-light); }
.switcher-tab + .switcher-tab { border-left: 1px solid rgba(20,61,117,0.08); }
.switcher-tab h3 { font-size: 1.3rem; color: var(--blue-dark); }
.switcher-tab p { color: #555; font-size: 0.92rem; max-width: 32ch; }
.switcher-tab .btn { margin-top: 0.4rem; }

@media (max-width: 720px) {
  .switcher-card { grid-template-columns: 1fr; }
  .switcher-tab + .switcher-tab { border-left: none; border-top: 1px solid rgba(20,61,117,0.08); }
}

/* ---------- Waveform divider ---------- */
.waveform {
  display: block;
  width: 100%;
  height: 34px;
  fill: rgba(20, 61, 117, 0.18);
}
.waveform--tight { height: 22px; margin-block: 0.5rem; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(4rem, 8vw, 6.5rem); }
.section-light { background: var(--white); }
.section-tint-blue { background: linear-gradient(180deg, #EEF3FC 0%, #FFFFFF 100%); }
.section-tint-purple { background: linear-gradient(180deg, #F3EEFE 0%, #FFFFFF 100%); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); color: var(--blue-dark); max-width: 20ch; }
.section-head p { color: #555; max-width: 40ch; font-size: 1.02rem; }

/* Glow card */
.glow-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.glow-card::before {
  content: '';
  position: absolute;
  inset: -18% -18% auto auto;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  z-index: 0;
}
.glow-card--blue::before { background: var(--blue-soft); }
.glow-card--purple::before { background: var(--purple-accent); }
.glow-card img { position: relative; z-index: 1; border-radius: var(--radius-md); width: 100%; height: 100%; object-fit: cover; }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 0.9rem; }
.feature-list.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 2.5rem; }
@media (max-width: 640px) { .feature-list.two-col { grid-template-columns: 1fr; } }
.feature-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 1rem; }
.feature-list li::before {
  content: '\2713';
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  margin-top: 0.15rem;
}
.feature-list--blue li::before { background: rgba(30,90,181,0.12); color: var(--blue-primary); }
.feature-list--purple li::before { background: rgba(125,78,250,0.12); color: var(--purple-deep); }

/* Two-up service explainer */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) {
  .split, .split.reverse .split-media { grid-template-columns: 1fr; order: 0; }
  .split { grid-template-columns: 1fr; }
}
.split-media { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; }
.split-media .glow-card:first-child { grid-row: span 2; aspect-ratio: 3/4; }
.split-media .glow-card:nth-child(2) { aspect-ratio: 4/3; }
.split-media .glow-card:nth-child(3) { aspect-ratio: 4/3; }
@media (max-width: 560px) {
  .split-media { grid-template-columns: 1fr; }
  .split-media .glow-card:first-child { grid-row: auto; aspect-ratio: 4/3; }
}
.split-media.single { display: block; }
.split-media.single .glow-card { aspect-ratio: 4/3; }

.stat-row { display: flex; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2rem; flex-wrap: wrap; }
.stat-row .stat b { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--blue-dark); }
.stat-row .stat span { font-size: 0.85rem; color: #666; }

/* Training sub-cards */
.training-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 720px) { .training-cards { grid-template-columns: 1fr; } }
.training-card {
  background: var(--white);
  border: 1px solid rgba(125,78,250,0.15);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.training-card h3 { font-size: 1.4rem; color: var(--purple-deep); }
.training-card p { color: #555; font-size: 0.98rem; }

/* Amenity cards */
.amenity-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .amenity-cards { grid-template-columns: 1fr; } }
.amenity-card {
  background: var(--white);
  border: 1px solid rgba(30,90,181,0.15);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.amenity-card h3 { font-size: 1.15rem; color: var(--blue-dark); }
.amenity-card p { color: #555; font-size: 0.95rem; }

/* Photo gallery */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.photo-grid .glow-card { aspect-ratio: 4 / 3; }
@media (max-width: 860px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .photo-grid { grid-template-columns: 1fr; } }

/* Page hero (sub-pages) */
.page-hero { background: var(--blue-dark); color: var(--white); padding-block: clamp(3rem, 7vw, 5rem); }
.page-hero .eyebrow { color: var(--blue-soft); margin-bottom: 1.2rem; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: var(--white); margin-bottom: 1.1rem; }
.page-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 52ch; margin-bottom: 1.6rem; }
.page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 860px) { .page-hero-grid { grid-template-columns: 1fr; } }
.page-hero-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.nav-links a.active::after { transform: scaleX(1); }
.page-hero.purple { background: var(--purple-dark); }
.page-hero.purple .eyebrow { color: var(--purple-soft); }
.events-banner.purple { background: var(--purple-dark); }
.events-banner.purple p { color: var(--purple-soft); }

/* Numbered process */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
@media (max-width: 860px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(125,78,250,0.15);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem 1.8rem;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  background: var(--purple-accent);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.process-step h3 { font-size: 1.15rem; color: var(--purple-deep); margin-bottom: 0.5rem; }
.process-step p { color: #555; font-size: 0.95rem; }

/* Mission quote */
.mission-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.5;
  color: var(--blue-dark);
  border-left: 3px solid var(--blue-primary);
  padding-left: 1.6rem;
  max-width: 62ch;
}

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
@media (max-width: 780px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { display: flex; flex-direction: column; gap: 1.2rem; }
.team-photo { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-card); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.3rem; color: var(--blue-dark); }
.team-card .role { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--purple-deep); margin-top: -0.6rem; }
.team-card p.bio { color: #555; font-size: 0.96rem; line-height: 1.6; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info address { font-style: normal; line-height: 1.9; font-size: 1rem; color: #444; }
.contact-info h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-primary); margin: 1.6rem 0 0.5rem; font-weight: 600; }
.contact-info h4:first-child { margin-top: 0; }
.contact-form-wrap { border-radius: var(--radius-md); overflow: hidden; min-height: 804px; background: var(--grey-light); }
.contact-form-wrap iframe { width: 100%; height: 804px; border: none; display: block; }

/* Event filter */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.filter-pill {
  padding: 0.5rem 1.1rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(125,78,250,0.3);
  background: var(--white);
  color: var(--purple-deep);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.filter-pill:hover { border-color: var(--purple-accent); }
.filter-pill.active { background: var(--purple-accent); color: var(--white); border-color: var(--purple-accent); }
.event-card[hidden] { display: none; }

/* Event cards */
.event-phase-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-deep);
  opacity: 0.75;
}
.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 780px) { .event-grid { grid-template-columns: 1fr; } }
.event-card {
  background: var(--white);
  border: 1px solid rgba(125,78,250,0.15);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.event-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.event-badge {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--purple-deep);
  background: rgba(125,78,250,0.1);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  flex-shrink: 0;
}
.event-card h3 { font-size: 1.2rem; color: var(--blue-dark); line-height: 1.3; }
.event-card p.summary { color: #555; font-size: 0.94rem; }
.event-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #777;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.event-card-footer {
  margin-top: auto;
  padding-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Events banner */
.events-banner {
  background: var(--blue-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.events-banner h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.2rem); max-width: 22ch; }
.events-banner p { color: var(--blue-soft); margin-top: 0.6rem; }

/* Blog teaser */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  border: 1px solid rgba(20,61,117,0.1);
  border-radius: var(--radius-md);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.blog-card .date { font-family: var(--font-mono); font-size: 0.75rem; color: var(--purple-deep); letter-spacing: 0.05em; }
.blog-card h3 { font-size: 1.15rem; color: var(--blue-dark); line-height: 1.3; }
.blog-card p { color: #666; font-size: 0.92rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--grey-dark);
  color: rgba(255,255,255,0.85);
  padding-top: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer-brand img { height: 38px; width: 38px; }
.footer-brand span { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.1rem; }
.footer-about { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 32ch; }
.footer-social { display: flex; gap: 0.4rem; margin-top: 1.2rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-social a:hover { background: rgba(255,255,255,0.16); color: var(--white); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.92rem; }
.footer-col a { display: inline-block; padding-block: 0.35rem; }
.footer-col a:hover { color: var(--white); }
.footer-col address { font-style: normal; line-height: 1.6; font-size: 0.92rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.14);
  font-size: clamp(4rem, 16vw, 11rem);
  line-height: 0.8;
  text-align: center;
  margin-top: 1.5rem;
  white-space: nowrap;
  user-select: none;
}

/* ---------- Utility ---------- */
.mt-lg { margin-top: clamp(3rem, 6vw, 4.5rem); }
.text-center { text-align: center; }
.center-head { max-width: 640px; margin-inline: auto; text-align: center; }
