/* ==========================================================================
   Collegiate Clean — Design System
   Art direction: collegiate / academic. Navy + collegiate gold from the
   company seal. Zodiak (display serif) + Switzer (body sans).
   ========================================================================== */

:root {
  /* ---- Type scale ---- */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* ---- Fonts ---- */
  --font-display: 'Zodiak', 'Iowan Old Style', 'Palatino Linotype', serif;
  --font-body: 'Switzer', ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* ---- Spacing (4px base) ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --section-pad: clamp(var(--space-16), 9vw, var(--space-32));

  /* ---- Color: derived from the Collegiate Clean seal ---- */
  --navy-900: oklch(24% 0.075 255);
  --navy-800: oklch(31% 0.095 255);
  --navy-700: oklch(40% 0.125 255);
  --navy-600: oklch(48% 0.145 254);   /* seal blue #0052A0 */
  --navy-500: oklch(58% 0.135 253);
  --navy-100: oklch(93% 0.02 250);
  --navy-050: oklch(97% 0.011 250);

  --gold-600: oklch(78% 0.15 90);
  --gold-500: oklch(87% 0.165 95);    /* seal gold #FAE700 */
  --gold-200: oklch(95% 0.075 98);
  --gold-050: oklch(98% 0.03 98);

  --brick-600: oklch(56% 0.19 27);    /* seal red #E73C34, used sparingly */

  --paper: oklch(99% 0.004 95);
  --paper-2: oklch(97% 0.007 95);
  --ink: oklch(21% 0.014 265);
  --ink-2: oklch(43% 0.014 265);
  --ink-3: oklch(58% 0.012 265);
  --line: oklch(90% 0.008 265);
  --line-strong: oklch(83% 0.01 265);

  --surface: var(--paper);
  --surface-alt: var(--paper-2);
  --accent: var(--navy-600);
  --accent-ink: #fff;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 2px oklch(24% 0.075 255 / 0.06), 0 1px 3px oklch(24% 0.075 255 / 0.05);
  --shadow-md: 0 4px 8px oklch(24% 0.075 255 / 0.05), 0 12px 28px oklch(24% 0.075 255 / 0.08);
  --shadow-lg: 0 8px 16px oklch(24% 0.075 255 / 0.06), 0 28px 56px oklch(24% 0.075 255 / 0.11);

  --maxw: 1200px;
  --maxw-prose: 68ch;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 110px; }
@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;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.018em;
  text-wrap: balance;
  color: var(--navy-900);
}
h1 { font-size: var(--text-2xl); }
h2 { font-size: var(--text-xl); }
h3 { font-size: var(--text-lg); line-height: 1.25; }
h4 { font-size: var(--text-base); font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }
p { text-wrap: pretty; }

a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-600); }

:focus-visible {
  outline: 3px solid var(--navy-600);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---- Layout primitives ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(var(--space-5), 5vw, var(--space-10)); }
.wrap-narrow { max-width: 900px; }
.section { padding-block: var(--section-pad); }
.section--tight { padding-block: clamp(var(--space-12), 6vw, var(--space-20)); }
.section--alt { background: var(--surface-alt); }
.section--navy { background: var(--navy-900); color: oklch(94% 0.008 250); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.prose { max-width: var(--maxw-prose); }
.prose p + p { margin-top: var(--space-4); }
.prose h2 { margin-top: var(--space-12); margin-bottom: var(--space-4); }
.prose h3 { margin-top: var(--space-8); margin-bottom: var(--space-3); }
.prose ul, .prose ol { margin-top: var(--space-4); padding-left: var(--space-6); display: grid; gap: var(--space-2); }

.stack > * + * { margin-top: var(--space-4); }
.grid { display: grid; gap: clamp(var(--space-6), 3vw, var(--space-10)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

/* ---- Eyebrow / kicker ---- */
.eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-600);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold-500);
  flex: none;
}
.section--navy .eyebrow { color: var(--gold-500); }
.eyebrow--center { justify-content: center; }

.lede { font-size: var(--text-lg); line-height: 1.5; color: var(--ink-2); max-width: 60ch; }
.section--navy .lede { color: oklch(85% 0.012 250); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
  min-height: 46px;
}
.btn-primary { background: var(--navy-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-700); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-500); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-600); color: var(--navy-900); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--line-strong); color: var(--navy-800); background: transparent; }
.btn-outline:hover { border-color: var(--navy-600); color: var(--navy-700); background: var(--navy-050); }
.section--navy .btn-outline,
.hero .btn-outline,
.page-head .btn-outline,
.cta-band .btn-outline,
.contact-card .btn-outline { border-color: oklch(100% 0 0 / 0.4); color: #fff; background: oklch(100% 0 0 / 0.06); }
.section--navy .btn-outline:hover,
.hero .btn-outline:hover,
.page-head .btn-outline:hover,
.cta-band .btn-outline:hover,
.contact-card .btn-outline:hover { border-color: #fff; background: oklch(100% 0 0 / 0.14); color: #fff; }

/* Primary button on dark surfaces reads better as white */
.hero .btn-primary,
.page-head .btn-primary,
.cta-band .btn-primary { background: #fff; color: var(--navy-800); }
.hero .btn-primary:hover,
.page-head .btn-primary:hover,
.cta-band .btn-primary:hover { background: var(--navy-050); color: var(--navy-900); }
.btn-lg { font-size: var(--text-base); padding: var(--space-4) var(--space-8); min-height: 54px; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ---- Cards ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
a.card { text-decoration: none; color: inherit; }
a.card:hover { border-color: var(--navy-500); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.card__img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; background: var(--navy-100); }
.card__title { font-size: var(--text-lg); }
.card__text { font-size: var(--text-sm); color: var(--ink-2); }
.card__link { margin-top: auto; padding-top: var(--space-2); font-size: var(--text-sm); font-weight: 600; color: var(--navy-600); display: inline-flex; align-items: center; gap: var(--space-2); }
a.card:hover .card__link .arr { transform: translateX(4px); }
.arr { transition: transform 0.25s var(--ease); }

/* ---- Skip link ---- */
.skip {
  position: absolute; left: var(--space-4); top: -100px;
  background: var(--navy-900); color: #fff; padding: var(--space-3) var(--space-5);
  border-radius: var(--radius); z-index: 200; font-size: var(--text-sm); font-weight: 600;
  text-decoration: none;
}
.skip:focus { top: var(--space-4); color: #fff; }

/* ---- Header ---- */
.topbar {
  background: var(--navy-900);
  color: oklch(88% 0.01 250);
  font-size: var(--text-xs);
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-6); align-items: center; justify-content: space-between; padding-block: var(--space-2); }
.topbar a { color: oklch(92% 0.01 250); text-decoration: none; display: inline-flex; align-items: center; gap: var(--space-2); }
.topbar a:hover { color: var(--gold-500); }
.topbar__group { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); align-items: center; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: oklch(99% 0.004 95 / 0.92);
  backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); padding-block: var(--space-3); }

.brand { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; color: var(--navy-900); }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; line-height: 1.05; letter-spacing: -0.02em; }
.brand__tag { font-size: 0.6875rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }

.nav { display: flex; align-items: center; gap: var(--space-1); }
.nav a {
  font-size: var(--text-sm); font-weight: 500; color: var(--ink-2); text-decoration: none;
  padding: var(--space-2) var(--space-3); border-radius: var(--radius-sm);
  transition: color 0.18s var(--ease), background-color 0.18s var(--ease);
  white-space: nowrap;
}
.nav a:hover { color: var(--navy-700); background: var(--navy-050); }
.nav a[aria-current="page"] { color: var(--navy-800); font-weight: 600; }
/* .nav a would otherwise out-specify the button colour rules */
.nav a.btn-primary { color: #fff; }
.nav a.btn-primary:hover { color: #fff; background: var(--navy-700); }
.nav a.btn-gold { color: var(--navy-900); }
.header-cta { margin-left: var(--space-3); padding-inline: var(--space-5); }

.nav-toggle { display: none; background: none; border: 1px solid var(--line-strong); border-radius: var(--radius); padding: var(--space-2) var(--space-3); align-items: center; gap: var(--space-2); font-size: var(--text-sm); font-weight: 600; color: var(--navy-800); }

@media (max-width: 940px) {
  /* backdrop-filter would make the header the containing block for the fixed nav */
  .site-header { backdrop-filter: none; background: var(--surface); }
  .nav-toggle { display: inline-flex; }
  .brand__tag { white-space: nowrap; }
  .nav {
    position: fixed; left: 0; right: 0; top: 0; bottom: auto;
    max-height: 100dvh;
    background: var(--surface);
    flex-direction: column; align-items: stretch;
    padding: var(--space-20) var(--space-6) var(--space-10);
    gap: var(--space-1);
    transform: translateY(-101%);
    transition: transform 0.32s var(--ease);
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    visibility: hidden;
  }
  .nav[data-open="true"] { visibility: visible; }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { font-size: var(--text-base); padding: var(--space-4) var(--space-3); border-bottom: 1px solid var(--line); border-radius: 0; }
  .header-cta { margin: var(--space-5) 0 0; }
  .nav-close { position: absolute; top: var(--space-5); right: var(--space-6); background: none; border: none; font-size: 1.75rem; line-height: 1; color: var(--ink-2); }
}
.nav-close { display: none; }
@media (max-width: 940px) { .nav-close { display: block; } }
@media (max-width: 420px) {
  .site-header .brand__tag { display: none; }
  .brand img { width: 40px; height: 40px; }
}

/* ---- Hero ---- */
.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, oklch(24% 0.075 255 / 0.96) 0%, oklch(24% 0.075 255 / 0.86) 45%, oklch(24% 0.075 255 / 0.58) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-block: clamp(var(--space-20), 11vw, var(--space-32)); }
.hero__inner { max-width: 760px; display: grid; gap: var(--space-6); }
.hero h1 { color: #fff; font-size: var(--text-2xl); }
.hero h1 em { font-style: normal; color: var(--gold-500); }
.hero .lede { color: oklch(89% 0.012 250); }
.hero .eyebrow { color: var(--gold-500); }

.hero-strip { background: var(--gold-500); color: var(--navy-900); }
.hero-strip .wrap { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-8); justify-content: center; padding-block: var(--space-4); font-size: var(--text-sm); font-weight: 600; }
.hero-strip span { display: inline-flex; align-items: center; gap: var(--space-2); }

/* ---- Page header (interior) ---- */
.page-head { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.page-head::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 100% at 88% 0%, oklch(48% 0.145 254 / 0.5), transparent 70%),
    radial-gradient(40% 80% at 0% 100%, oklch(40% 0.125 255 / 0.45), transparent 70%);
}
.page-head .wrap { position: relative; z-index: 2; padding-block: clamp(var(--space-12), 7vw, var(--space-20)); display: grid; gap: var(--space-5); }
.page-head h1 { color: #fff; max-width: 22ch; font-size: var(--text-2xl); }
.page-head .lede { color: oklch(88% 0.012 250); }

/* ---- Breadcrumbs ---- */
.crumbs { font-size: var(--text-xs); color: oklch(80% 0.012 250); display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; }
.crumbs a { color: oklch(85% 0.012 250); text-decoration: none; }
.crumbs a:hover { color: var(--gold-500); text-decoration: underline; }
.crumbs span[aria-current] { color: var(--gold-500); }
.crumbs .sep { opacity: 0.5; }

/* ---- Stats ---- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--space-6); }
.stat { border-left: 3px solid var(--gold-500); padding-left: var(--space-5); }
.stat__num { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; line-height: 1; color: var(--navy-800); letter-spacing: -0.03em; }
.section--navy .stat__num, .hero .stat__num { color: #fff; }
.stat__label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); margin-top: var(--space-2); font-weight: 600; }
.section--navy .stat__label, .hero .stat__label { color: oklch(80% 0.012 250); }

/* ---- Split / feature ---- */
.split { display: grid; gap: clamp(var(--space-8), 5vw, var(--space-16)); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
}
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__body { display: grid; gap: var(--space-5); align-content: start; }

/* ---- Checklist ---- */
.ticks { list-style: none; padding: 0; display: grid; gap: var(--space-3); }
.ticks li { display: grid; grid-template-columns: 22px 1fr; gap: var(--space-3); align-items: start; font-size: var(--text-sm); }
.ticks li::before {
  content: '';
  width: 20px; height: 20px; margin-top: 2px; border-radius: 50%;
  background: var(--gold-200) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a3d78' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.section--navy .ticks li::before { background-color: var(--gold-500); }
.ticks--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }

/* ---- Testimonials ---- */
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex; flex-direction: column; gap: var(--space-5);
  position: relative;
}
.quote__mark { font-family: var(--font-display); font-size: 3.5rem; line-height: 0.6; color: var(--gold-500); height: 24px; }
.quote__text { font-size: var(--text-base); color: var(--ink); }
.quote__head { font-family: var(--font-display); font-size: var(--text-lg); color: var(--navy-800); }
.quote__by { margin-top: auto; font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); }

/* ---- CTA band ---- */
.cta-band { background: var(--navy-800); color: #fff; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(70% 140% at 85% 20%, oklch(48% 0.145 254 / 0.55), transparent 65%);
}
.cta-band .wrap { position: relative; z-index: 2; padding-block: clamp(var(--space-12), 7vw, var(--space-20)); display: grid; gap: var(--space-6); justify-items: start; }
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: oklch(87% 0.012 250); max-width: 55ch; }

/* ---- FAQ ---- */
.faq { display: grid; gap: var(--space-3); max-width: 820px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.2s var(--ease);
}
.faq details[open] { border-color: var(--navy-500); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: var(--space-5) var(--space-6);
  font-weight: 600; font-size: var(--text-base); color: var(--navy-800);
  display: flex; justify-content: space-between; gap: var(--space-4); align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; line-height: 1; color: var(--navy-600); flex: none; transition: transform 0.2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__a { padding: 0 var(--space-6) var(--space-6); color: var(--ink-2); font-size: var(--text-sm); display: grid; gap: var(--space-3); }

/* ---- Forms ---- */
.form { display: grid; gap: var(--space-5); }
.field { display: grid; gap: var(--space-2); }
.field label { font-size: var(--text-sm); font-weight: 600; color: var(--navy-800); }
.field .req { color: var(--brick-600); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  background: #fff;
  font-size: var(--text-sm);
  min-height: 48px;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-600);
  box-shadow: 0 0 0 3px oklch(48% 0.145 254 / 0.16);
}
.field-row { display: grid; gap: var(--space-5); grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.form__note { font-size: var(--text-xs); color: var(--ink-3); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: var(--text-sm); padding: var(--space-4) var(--space-5); border-radius: var(--radius); display: none; scroll-margin-top: 120px; }
.form-status[data-state="ok"] { display: block; background: var(--gold-050); border: 1px solid var(--gold-500); color: var(--navy-900); }
.form-status[data-state="err"] { display: block; background: oklch(96% 0.03 27); border: 1px solid var(--brick-600); color: oklch(38% 0.15 27); }

/* ---- Contact panel ---- */
.quote-layout { display: grid; gap: var(--space-8); align-items: start; }
@media (min-width: 900px) { .quote-layout { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: var(--space-10); } }
.contact-card { background: var(--navy-900); color: #fff; border-radius: var(--radius-lg); padding: var(--space-8); display: grid; gap: var(--space-6); align-content: start; }
.contact-card h2, .contact-card h3 { color: #fff; }
.contact-line { display: grid; grid-template-columns: 20px 1fr; gap: var(--space-4); align-items: start; font-size: var(--text-sm); color: oklch(88% 0.012 250); }
.contact-line svg { width: 20px; height: 20px; margin-top: 3px; color: var(--gold-500); }
.contact-line a { color: #fff; text-decoration: none; font-weight: 600; }
.contact-line a:hover { color: var(--gold-500); text-decoration: underline; }
.contact-line strong { display: block; color: #fff; font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: var(--space-1); font-weight: 700; }

/* ---- Area chips ---- */
.chips { display: flex; flex-wrap: wrap; gap: var(--space-2); list-style: none; padding: 0; }
.chips a {
  display: inline-block; font-size: var(--text-sm); font-weight: 500;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--line-strong); border-radius: 999px;
  text-decoration: none; color: var(--navy-800); background: var(--surface);
  transition: all 0.18s var(--ease);
}
.chips a:hover { border-color: var(--navy-600); background: var(--navy-600); color: #fff; }

/* ---- Logo row ---- */
.logo-row { display: flex; flex-wrap: wrap; gap: clamp(var(--space-6), 4vw, var(--space-12)); align-items: center; justify-content: center; }
.logo-row img { height: 44px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.6; transition: filter 0.25s var(--ease), opacity 0.25s var(--ease); }
.logo-row img:hover { filter: none; opacity: 1; }

/* ---- Footer ---- */
.site-footer { background: var(--navy-900); color: oklch(80% 0.012 250); font-size: var(--text-sm); }
.site-footer .wrap { padding-block: var(--space-16) var(--space-8); }
.footer-grid { display: grid; gap: var(--space-10); grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.footer-grid > div:first-child { grid-column: span 1; min-width: 240px; }
.site-footer h3 { color: #fff; font-family: var(--font-body); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; margin-bottom: var(--space-4); }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: var(--space-2); }
.site-footer a { color: oklch(82% 0.012 250); text-decoration: none; }
.site-footer a:hover { color: var(--gold-500); text-decoration: underline; }
.footer-brand { display: flex; gap: var(--space-3); align-items: center; margin-bottom: var(--space-4); }
.footer-brand img { width: 52px; height: 52px; object-fit: contain; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__tag { color: var(--gold-500); }
.footer-bottom {
  margin-top: var(--space-12); padding-top: var(--space-6);
  border-top: 1px solid oklch(100% 0 0 / 0.12);
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6);
  justify-content: space-between; font-size: var(--text-xs); color: oklch(70% 0.012 250);
}
.footer-bottom a { color: oklch(75% 0.012 250); }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---- Utilities ---- */
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lede { margin-inline: auto; }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
