/* ============================================================
   EBPC — Components (v2.3)
   Dusty palette. Squircle shape language.
   Refined mobile drawer. Hero motto as subtitle below the H1.
   ============================================================ */


/* =========================================================
   1. BUTTONS — squircle
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 44px;
  padding: 0.8125rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.005em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--dur) var(--ease),
    border-color     var(--dur) var(--ease),
    color            var(--dur) var(--ease),
    box-shadow       var(--dur) var(--ease),
    transform        var(--dur-fast) var(--ease);
}
.btn:hover  { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.btn--lg {
  min-height: 52px;
  padding: 1rem 1.875rem;
  font-size: var(--fs-base);
  border-radius: var(--radius-lg);
}

.btn--primary {
  background: var(--action);
  color: #fff;
  box-shadow: 0 4px 12px rgba(53, 87, 122, 0.22);
}
.btn--primary:hover {
  background: var(--action-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(53, 87, 122, 0.28);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(53, 87, 122, 0.20);
}

.btn--secondary {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--border-strong);
}
.btn--secondary:hover {
  border-color: var(--navy-900);
  background: var(--bg-ice);
  color: var(--navy-900);
  transform: translateY(-1px);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.80);
  color: #fff;
  transform: translateY(-1px);
}

.btn--light {
  background: #fff;
  color: var(--navy-900);
  box-shadow: 0 4px 12px rgba(21, 32, 47, 0.18);
}
.btn--light:hover {
  background: var(--blue-050);
  color: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(21, 32, 47, 0.24);
}

.btn--block { width: 100%; }


/* =========================================================
   2. TAGS — pills (semantic labels)
   ========================================================= */
.tag {
  display: inline-block;
  padding: var(--sp-1) var(--sp-4);
  background: var(--blue-100);
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  line-height: 1.6;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-4);
}

.tag--small {
  font-size: 0.6875rem;
  padding: 3px var(--sp-3);
  letter-spacing: var(--tracking-wider);
}

.section--invert .tag,
.section--navy .tag {
  background: rgba(154, 174, 198, 0.18);
  color: var(--blue-200);
}

.page-head .tag { margin-bottom: var(--sp-4); }


/* =========================================================
   3. SITE HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
          backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 4px 16px rgba(21, 32, 47, 0.06);
  background: rgba(255, 255, 255, 0.95);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: 72px;
}


/* ---------- Brand ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--navy-900);
  text-decoration: none;
  min-width: 0;
}
.brand:hover {
  color: var(--navy-900);
  text-decoration: none;
}

.brand__mark {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--navy-900), var(--blue-700));
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 8px rgba(21, 32, 47, 0.20);
}

.brand__mark-letters {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: 0.8125rem;
  letter-spacing: -0.005em;
  color: var(--navy-900);
}

.brand__sub {
  font-size: 0.6875rem;
  color: var(--fg-muted);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: var(--fw-medium);
}

@media (max-width: 380px) {
  .brand__sub { display: none; }
  .brand__name { font-size: 0.875rem; }
}


/* ---------- Desktop primary nav ---------- */
.primary-nav { display: none; }

@media (min-width: 900px) {
  .primary-nav { display: block; }

  .primary-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
  }

  .primary-nav a {
    position: relative;
    display: inline-block;
    padding: var(--sp-3) var(--sp-4);
    color: var(--ink-700);
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: -0.005em;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition:
      color var(--dur) var(--ease),
      background-color var(--dur) var(--ease);
  }
  .primary-nav a:hover {
    color: var(--navy-900);
    background: var(--bg-ice);
    text-decoration: none;
  }
  .primary-nav a[aria-current="page"] {
    color: var(--blue-700);
    background: var(--blue-100);
  }
}


/* ---------- Header actions ---------- */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.header-actions .btn { display: none; }
@media (min-width: 900px) {
  .header-actions .btn { display: inline-flex; }
}


/* ---------- Menu toggle — squircle ---------- */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--bg-ice);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--navy-900);
  transition: background-color var(--dur) var(--ease),
              border-color     var(--dur) var(--ease),
              transform        var(--dur-fast) var(--ease);
}
.nav-toggle:hover {
  background: var(--blue-100);
  border-color: var(--blue-200);
}
.nav-toggle:active { transform: scale(0.97); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
}

.nav-toggle__icon {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}

.nav-toggle__line {
  position: absolute;
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition:
    width     var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    top       var(--dur) var(--ease),
    left      var(--dur) var(--ease);
}

.nav-toggle__line--top {
  top: 0;
  left: 0;
  width: 20px;
}

.nav-toggle__line--bottom {
  top: 12px;
  left: 9px;
  width: 11px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line--top {
  top: 6px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line--bottom {
  top: 6px;
  left: 0;
  width: 20px;
  transform: rotate(-45deg);
}


/* =========================================================
   4. MOBILE NAV DRAWER
   Refined for EBPC:
   - narrower width (88vw, capped at 340px)
   - squircle outer corner
   - softer active state with accent bar
   - better rhythm and blue accents
   ========================================================= */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  display: none;
}
.nav-drawer[data-open="true"] { display: block; }

.nav-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 21, 36, 0.52);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  animation: ebpc-fade-in var(--dur) var(--ease);
}

.nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  padding: var(--sp-6);
  background: #fff;
  border-left: 1px solid var(--border);
  border-top-left-radius: var(--radius-4xl);
  border-bottom-left-radius: var(--radius-4xl);
  box-shadow: -16px 0 40px rgba(13, 21, 36, 0.18);
  overflow-y: auto;
  overscroll-behavior: contain;
  animation: ebpc-slide-in var(--dur-slow) var(--ease-out);
}

.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-soft);
}

.nav-drawer__brand {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: var(--fs-lg);
  letter-spacing: -0.01em;
  color: var(--blue-700);
}

.nav-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--bg-ice);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--navy-900);
  transition: background-color var(--dur) var(--ease),
              border-color     var(--dur) var(--ease);
}
.nav-drawer__close:hover {
  background: var(--blue-100);
  border-color: var(--blue-200);
}

.nav-drawer nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.nav-drawer nav a {
  position: relative;
  display: block;
  padding: var(--sp-4) var(--sp-5);
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  letter-spacing: -0.01em;
  line-height: 1.25;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition:
    background-color var(--dur) var(--ease),
    color            var(--dur) var(--ease);
}

.nav-drawer nav a:hover {
  background: var(--blue-050);
  color: var(--blue-700);
  text-decoration: none;
}

.nav-drawer nav a[aria-current="page"] {
  background: var(--blue-050);
  color: var(--blue-700);
  text-decoration: none;
}
.nav-drawer nav a[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 22px;
  background: var(--blue-600);
  border-radius: var(--radius-pill);
}

.nav-drawer__contact {
  margin-top: auto;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-soft);
  font-size: var(--fs-sm);
  color: var(--fg-muted);
}
.nav-drawer__contact p { margin-bottom: var(--sp-4); }
.nav-drawer__contact strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--blue-700);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-2);
}
.nav-drawer__contact a {
  color: var(--navy-900);
  font-weight: var(--fw-semibold);
}

@keyframes ebpc-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ebpc-slide-in {
  from { transform: translateX(24px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-drawer__overlay,
  .nav-drawer__panel { animation: none; }
}

@media (max-width: 340px) {
  .nav-drawer__panel { padding: var(--sp-5); }
  .nav-drawer nav a {
    font-size: var(--fs-base);
    padding: var(--sp-4);
  }
}


/* =========================================================
   5. SECTIONS
   ========================================================= */
.section { padding-block: var(--section-y); }
.section--alt  { background: var(--bg-ice); }
.section--cool { background: var(--bg-tint); }
.section--ice  { background: var(--bg-ice); }

.section--navy {
  background: var(--navy-900);
  color: var(--fg-invert);
  position: relative;
  isolation: isolate;
}
.section--navy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--glow-brand);
  opacity: 0.55;
  pointer-events: none;
}

.section--invert {
  background: var(--navy-900);
  color: var(--fg-invert);
}
.section--invert h1,
.section--invert h2,
.section--invert h3 { color: #fff; }
.section--invert p  { color: var(--fg-invert-muted); }
.section--invert a  { color: #fff; }

.section--pattern {
  position: relative;
  isolation: isolate;
  background: var(--white);
}
.section--pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../img/pattern/cross-tile.svg");
  background-repeat: repeat;
  background-size: 96px 96px;
  opacity: 0.45;
  pointer-events: none;
}

.section-head {
  max-width: 46rem;
  margin-bottom: var(--sp-10);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.lede {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  color: var(--fg-muted);
  line-height: var(--lh-snug);
}
.section--invert .lede,
.section--navy .lede { color: var(--fg-invert-muted); }


/* =========================================================
   6. HERO
   Motto sits directly under the H1 as a quiet subtitle.
   ========================================================= */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-900);
  color: #fff;
  padding-block: clamp(4.5rem, 3rem + 8vw, 8rem);
}

.hero__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--glow-brand);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 12%;
  right: -6%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      rgba(154, 174, 198, 0.12),
      rgba(154, 174, 198, 0) 68%);
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 899px) {
  .hero::after { display: none; }
}

.hero__inner {
  max-width: 44rem;
  display: flex;
  flex-direction: column;
}

.hero__title {
  order: 1;
  color: #fff;
  font-size: var(--fs-5xl);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: var(--sp-3);
}

.hero__tag {
  order: 2;
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--blue-300);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}

.hero__sub {
  order: 3;
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: var(--sp-8);
  max-width: 40rem;
  line-height: var(--lh-snug);
}

.hero__actions {
  order: 4;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

@media (max-width: 380px) {
  .hero__title { font-size: 2.125rem; letter-spacing: -0.02em; }
  .hero__tag   { font-size: var(--fs-xs); }
  .hero__sub   { font-size: var(--fs-base); }
}


/* =========================================================
   7. CARD — squircle
   ========================================================= */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition:
    border-color  var(--dur) var(--ease),
    box-shadow    var(--dur) var(--ease),
    transform     var(--dur) var(--ease);
}
.card--hover:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card--narrow { max-width: 36rem; }
.card--spaced { margin-top: var(--sp-6); }

.card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--navy-900);
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-2);
}
.card__meta {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--blue-600);
  letter-spacing: 0.005em;
  margin-bottom: var(--sp-3);
}
.card__body {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
}
.card__footer-link {
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-soft);
  margin-bottom: 0;
}


/* =========================================================
   8. GRID LAYOUTS
   ========================================================= */
.grid { display: grid; gap: var(--sp-8); }
.grid--2,
.grid--3 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.grid--teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}
@media (min-width: 900px) {
  .grid--teaser {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: var(--sp-12);
    align-items: start;
  }
}

.grid--teaser-lg {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}
@media (min-width: 900px) {
  .grid--teaser-lg {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: var(--sp-14);
    align-items: start;
  }
}


/* =========================================================
   9. FEATURE BLOCK
   ========================================================= */
.feature-block {
  position: relative;
  padding-left: var(--sp-6);
  border-left: 3px solid var(--blue-200);
}
.feature-block--offset { border-left-color: var(--blue-400); }

@media (max-width: 899px) {
  .feature-block--offset {
    padding-top: var(--sp-8);
    border-top: 1px solid var(--border);
    border-left: 0;
    padding-left: 0;
  }
}

.feature-block h2 { margin-bottom: var(--sp-4); }
.feature-block p:last-of-type { margin-top: var(--sp-2); }


/* =========================================================
   10. INFO CARD — squircle
   ========================================================= */
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--sp-7);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.info-card--soft {
  background: linear-gradient(180deg, var(--blue-050), var(--white) 65%);
  border-color: var(--blue-100);
}

.info-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--navy-900);
  letter-spacing: -0.015em;
  margin-bottom: var(--sp-2);
  line-height: var(--lh-snug);
}
.info-card__time {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  color: var(--blue-600);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--sp-4);
}
.info-card__body {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-6);
}
.info-card .btn { margin-top: var(--sp-2); }


/* =========================================================
   11. WEEKLY SCHEDULE — squircle
   ========================================================= */
.schedule { display: grid; gap: var(--sp-3); }

.schedule__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
  padding: var(--sp-5) var(--sp-6);
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue-200);
  border-radius: var(--radius-xl);
  transition:
    border-color var(--dur) var(--ease),
    box-shadow   var(--dur) var(--ease),
    transform    var(--dur) var(--ease);
}
.schedule__row:hover {
  border-color: var(--border-strong);
  border-left-color: var(--blue-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .schedule__row {
    grid-template-columns: 11rem 1fr auto;
    align-items: center;
    gap: var(--sp-6);
  }
}

.schedule__day {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.schedule__name {
  font-weight: var(--fw-medium);
  color: var(--ink-700);
}
.schedule__time {
  font-variant-numeric: tabular-nums;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--blue-600);
  letter-spacing: 0.005em;
}

.schedule__row--feature {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-color: var(--navy-900);
  border-left-color: var(--blue-400);
  color: #fff;
  padding-block: var(--sp-6);
  box-shadow: 0 6px 16px rgba(21, 32, 47, 0.16);
}
.schedule__row--feature:hover {
  border-color: var(--navy-900);
  border-left-color: var(--blue-300);
  box-shadow: 0 10px 22px rgba(21, 32, 47, 0.22);
}
.schedule__row--feature .schedule__day,
.schedule__row--feature .schedule__name { color: #fff; }
.schedule__row--feature .schedule__name { color: rgba(255, 255, 255, 0.85); }
.schedule__row--feature .schedule__time { color: var(--blue-200); }

.schedule--compact .schedule__row { padding: var(--sp-4) var(--sp-5); }
.schedule--compact .schedule__row--feature { padding-block: var(--sp-5); }


/* =========================================================
   12. CTA BAND — squircle
   ========================================================= */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: var(--sp-6);
  align-items: center;
  padding: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff;
  border-radius: var(--radius-4xl);
  box-shadow: 0 10px 28px rgba(21, 32, 47, 0.16);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(500px 300px at 100% 0%,
      rgba(75, 112, 153, 0.28),
      rgba(75, 112, 153, 0) 60%);
  pointer-events: none;
}
@media (min-width: 900px) {
  .cta-band {
    grid-template-columns: 1.6fr 1fr;
    gap: var(--sp-10);
  }
}

.cta-band h2 {
  color: #fff;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}
.cta-band p { color: var(--fg-invert-muted); margin: 0; }

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
@media (min-width: 900px) {
  .cta-band__actions { justify-content: flex-end; }
}


/* =========================================================
   13. CONTACT LIST — squircle
   ========================================================= */
.contact-grid {
  display: grid;
  gap: var(--sp-10);
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: var(--sp-12);
  }
}

.contact-list {
  list-style: none;
  display: grid;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.contact-list__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--sp-4);
  align-items: start;
  padding: var(--sp-4);
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  transition:
    border-color var(--dur) var(--ease),
    box-shadow   var(--dur) var(--ease);
}
.contact-list__item:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-sm);
}

.contact-list__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: var(--radius-md);
}

.contact-list__label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--blue-700);
  margin-bottom: var(--sp-1);
}

.contact-list__value {
  font-size: var(--fs-base);
  color: var(--ink-900);
  line-height: 1.55;
}
.contact-list__value a {
  color: var(--navy-900);
  font-weight: var(--fw-semibold);
}


/* =========================================================
   14. CTA ROW
   ========================================================= */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}


/* =========================================================
   15. LINK ARROW
   ========================================================= */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--blue-600);
  text-decoration: none;
  transition: color var(--dur) var(--ease),
              gap var(--dur) var(--ease);
}
.link-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform var(--dur) var(--ease);
}
.link-arrow:hover {
  color: var(--blue-700);
  text-decoration: none;
  gap: var(--sp-3);
}
.link-arrow:hover::after { transform: translateX(2px); }


/* =========================================================
   16. SITE FOOTER
   ========================================================= */
.site-footer {
  margin-top: var(--sp-24);
  padding-block: var(--sp-16) var(--sp-8);
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.76);
  position: relative;
  isolation: isolate;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(75, 112, 153, 0.45) 50%,
    transparent 100%);
}

.site-footer h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--fs-sm);
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: var(--sp-8);
  }
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: var(--sp-3);
  line-height: 1.25;
}
.footer-brand__motto {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  color: var(--blue-200);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.005em;
}
.footer-brand__slogan {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.58);
}

.footer-list {
  list-style: none;
  display: grid;
  gap: var(--sp-3);
}
.footer-list li {
  font-size: var(--fs-sm);
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.48);
}
.footer-bottom p { margin: 0; }