/**
 * Omuto Foundation — Global Styles
 * Core design system used across all pages
 * Version 2.0 - Unified from header.php + accessibility improvements
 */

/* ============================
   CSS VARIABLES
   ============================ */
:root {
  --red: #d62020;
  --navy: #1D2631;
  --cream: #F9F6EE;
  --yellow: #FFCF5D;
  --teal: #40D2AF;
  --blue: #96D9F2;
  --gold: #D69100;
  --white: #fff;
  --ticker-h: 32px;
  --font-head: 'Inter', system-ui, sans-serif;
  --font-ui: 'Space Grotesk', sans-serif;
  --font-sketch: 'Gochi Hand', cursive;
  --b: 4px solid #1D2631;
  --b-thin: 2px solid #1D2631;
  --shadow: 8px 8px 0 #1D2631;
  --shadow-sm: 4px 4px 0 #1D2631;
  --shadow-lg: 12px 12px 0 #1D2631;
  --radius: 16px;
  --radius-sm: 10px;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ─── SKELETON LOADING ─── */
.skeleton {
  background: linear-gradient(90deg, var(--cream) 25%, #e8e6df 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
img.skeleton {
  min-height: 200px;
  border-radius: var(--radius-sm);
}
img.loaded {
  animation: fadeIn .4s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── DONATION PROGRESS STEPS ─── */
.donate-steps {
  display: flex; gap: 0; margin-bottom: 18px;
}
.donate-step {
  flex: 1; display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; font-family: var(--font-ui); font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: rgba(29,38,49,.3);
  border-bottom: 2px solid rgba(29,38,49,.1);
}
.donate-step.active { color: var(--navy); border-bottom-color: var(--navy); }
.donate-step.done { color: var(--teal); border-bottom-color: var(--teal); }
.donate-step-n {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 9px; font-weight: 900;
  background: rgba(29,38,49,.08); color: rgba(29,38,49,.3);
}
.donate-step.active .donate-step-n { background: var(--navy); color: #fff; }
.donate-step.done .donate-step-n { background: var(--teal); color: #fff; }

/* ============================
   ACCESSIBILITY
   ============================ */
.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;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  z-index: 9999;
  transition: top .2s;
}

.skip-link:focus {
  top: 10px;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.btn:focus-visible,
.nav-link:focus-visible,
.vid-card:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================
   UTILITY CLASSES
   ============================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section-lg {
  padding: 104px 0;
}

.section-sm {
  padding: 48px 0;
}

.t-hero {
  font-family: var(--font-head);
  font-size: clamp(54px, 8.5vw, 100px);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.t-section {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.t-ui {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.t-body {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

.t-pullquote {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  line-height: 1.4;
  font-style: italic;
}

.line-red { color: var(--red); }
.line-yellow { color: var(--yellow); }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  display: inline-block;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.ew-red {
  background: rgba(238, 39, 38, .1);
  border: 1.5px solid rgba(238, 39, 38, .3);
  color: var(--red);
}

.ew-teal {
  background: rgba(64, 210, 175, .12);
  border: 1.5px solid rgba(64, 210, 175, .35);
  color: #1a7a64;
}

.ew-navy {
  background: rgba(29, 38, 49, .07);
  border: 1.5px solid rgba(29, 38, 49, .2);
  color: var(--navy);
}

.ew-white {
  background: rgba(255, 255, 255, .15);
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: rgba(255, 255, 255, .9);
}

.ew-yellow {
  background: rgba(255, 207, 93, .25);
  border: 1.5px solid rgba(255, 207, 93, .6);
  color: #7a5d00;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: var(--b);
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
  min-height: 48px;
}

.btn-red {
  background: #d62020;
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-red:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow);
}

.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow);
  background: var(--yellow);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-navy:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .12);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 11px;
  min-height: 40px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================
   VISUAL EFFECTS
   ============================ */
.halftone {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(29, 38, 49, .07) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.halftone-light {
  background-image: radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.rd1 { transition-delay: .08s; }
.rd2 { transition-delay: .16s; }
.rd3 { transition-delay: .24s; }
.rd4 { transition-delay: .32s; }
.rd5 { transition-delay: .4s; }

/* ============================
   TICKER
   ============================ */
#ticker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--ticker-h);
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 800;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 0 16px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.ticker-dot {
  color: var(--red);
  opacity: .7;
}

.ticker-new {
  background: #d62020;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 2px 6px;
  border-radius: 3px;
}

#ticker {
  transition: transform .22s ease-out;
}

#ticker.nav-hidden {
  transform: translateY(-110%);
}

@media (max-width: 600px) {
  #ticker {
    justify-content: flex-start;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .ticker-item {
    width: max-content;
    padding: 4px 16px;
  }
  .ticker-text {
    display: inline-block;
    padding-right: 40px;
  }
}

/* ============================
   NAVIGATION
   ============================ */
#nav {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  width: 100%;
  z-index: 700;
  padding: 6px 16px;
  transition: transform .22s ease-out;
}

#nav.nav-hidden {
  transform: translateY(-110%);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border: var(--b);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 20px;
  gap: 8px;
}

.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.nav-center {
  padding: 0 24px;
}

.nav-center a {
  display: flex;
  align-items: center;
}

.nav-center img {
  height: 64px;
  display: block;
  transition: transform .2s;
}

.nav-center a:hover img {
  transform: scale(1.06);
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--navy);
  transition: all .15s;
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover,
.nav-link.active {
  background: var(--cream);
  color: var(--red);
}

.nav-dd {
  position: relative;
}

.nav-dd-panel {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 2px solid #1D2631;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 210px;
  box-shadow: 4px 4px 0 #1D2631;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 50;
}

.nav-dd:hover .nav-dd-panel,
.nav-dd:focus-within .nav-dd-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dd-panel a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  white-space: nowrap;
  min-height: 40px;
}

.nav-dd-panel a:hover {
  background: var(--cream);
  color: var(--red);
}

.nav-cta-btn {
  font-family: var(--font-ui) !important;
  background: var(--red) !important;
  color: #fff !important;
  border: var(--b) !important;
  border-radius: 8px !important;
  padding: 10px 16px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  transition: all .15s !important;
}

.nav-cta-btn:hover {
  background: var(--navy) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  border-radius: 8px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.hbg:hover {
  background: var(--cream);
}

.hbg:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.hbg span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .2s;
}

.hbg.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hbg.active span:nth-child(2) {
  opacity: 0;
}

.hbg.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
#mob-nav {
  position: fixed;
  top: calc(var(--ticker-h) + 70px);
  left: 12px;
  right: 12px;
  background: #fff;
  border: var(--b);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 690;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  padding: 0 24px;
  transition: max-height .24s cubic-bezier(0.16, 1, 0.3, 1), opacity .24s cubic-bezier(0.16, 1, 0.3, 1), padding-top .24s cubic-bezier(0.16, 1, 0.3, 1), padding-bottom .24s cubic-bezier(0.16, 1, 0.3, 1);
}

#mob-nav.open {
  max-height: 80vh;
  opacity: 1;
  pointer-events: auto;
  padding-top: 24px;
  padding-bottom: 24px;
}

.mob-links a {
  display: block;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 18px;
  border-radius: 8px;
  color: var(--navy);
  min-height: 48px;
}

.mob-links a:hover {
  background: var(--cream);
  color: var(--red);
}

.mob-group-lbl {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(29, 38, 49, .4);
  padding: 10px 14px 4px;
  display: block;
}

.mob-group-links a {
  padding: 8px 14px 8px 24px;
  font-size: 12px;
}

.mob-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 2px solid rgba(29, 38, 49, .08);
}

.mob-ctas a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 20px;
  border-radius: 10px;
  text-align: center;
  border: var(--b);
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-ctas a.primary {
  background: var(--red);
  color: #fff;
}

.mob-ctas a.secondary {
  background: #fff;
  color: var(--navy);
}

@media (max-width: 960px) {
  .nav-left,
  .nav-right {
    display: none;
  }
  .nav-wrap {
    display: flex;
    justify-content: space-between;
  }
  .hbg {
    display: flex;
  }
}

/* ============================
   STICKY BAR
   ============================ */
#sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(29, 38, 49, .96);
  backdrop-filter: blur(12px);
  border-top: 3px solid var(--red);
  padding: 12px 0;
  z-index: 500;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
}

#sticky.show {
  transform: none;
}

.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.sticky-msg {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
}

.sticky-btns {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sticky-btns .btn {
  min-height: 40px;
}

.sticky-x {
  color: rgba(255, 255, 255, .4);
  font-size: 18px;
  padding: 8px;
  cursor: pointer;
  transition: color .15s;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}

.sticky-x:hover {
  color: #fff;
}

@media (max-width: 580px) {
  #sticky {
    padding: 10px 0;
  }
  .sticky-inner {
    gap: 8px;
  }
  .sticky-msg {
    display: none;
  }
  .sticky-btns .btn {
    padding: 10px 16px;
    font-size: 11px;
  }
}

/* ============================
   MODAL
   ============================ */
#modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(29, 38, 49, .82);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#modal.open {
  display: flex;
}

.modal-inner {
  width: 100%;
  max-width: 840px;
  background: #000;
  border: var(--b);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-close {
  position: absolute;
  top: -52px;
  right: 0;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  padding: 10px 18px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  min-height: 44px;
  transition: background .15s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, .15);
}

.modal-close:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.modal-inner iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: var(--navy);
  color: #fff;
  border-top: var(--b);
}

footer .container {
  padding-top: 56px;
  padding-bottom: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img {
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: .75;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 13px;
  font-weight: 500;
  opacity: .52;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  gap: 9px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}

.footer-socials a:hover {
  background: var(--red);
  border-color: var(--red);
}

footer nav h3 {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  opacity: .7;
  margin-bottom: 14px;
}

footer nav ul li {
  margin-bottom: 8px;
}

footer nav ul a {
  font-size: 13px;
  font-weight: 500;
  opacity: .75;
  transition: opacity .15s;
}

footer nav ul a:hover {
  opacity: 1;
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .55;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================
   BACK TO TOP
   ============================ */
#back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  border: var(--b);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s ease;
  z-index: 400;
  box-shadow: var(--shadow-sm);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

#back-to-top:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

#back-to-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 580px) {
  #back-to-top {
    bottom: 80px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

.form-card {
  background: #fff;
  border: var(--b);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 6px;
  line-height: 1;
}

.form-note {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(29, 38, 49, .38);
  margin-bottom: 32px;
  display: block;
}

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

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(29, 38, 49, .5);
}

.field input,
.field textarea,
.field select {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  border: var(--b-thin);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  background: #fff;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  font-style: italic;
  width: 100%;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--red);
  box-shadow: 3px 3px 0 var(--red);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field select {
  cursor: pointer;
}

.interest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.interest-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  border: var(--b-thin);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  cursor: pointer;
  transition: all .15s;
  background: #fff;
}

.interest-opt:hover {
  background: var(--cream);
  border-color: var(--navy);
}

.interest-opt input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--red);
}

.interest-opt span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(29, 38, 49, .7);
}

.interest-opt.checked {
  background: rgba(238, 39, 38, .06);
  border-color: rgba(238, 39, 38, .35);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-privacy {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(29, 38, 49, .35);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  width: 48px;
  height: 48px;
  fill: var(--teal);
  margin: 0 auto 16px;
}

.form-success h4 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(29, 38, 49, .65);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dc-card {
  background: var(--navy);
  border: var(--b);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.dc-card h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  color: #fff;
  margin-bottom: 20px;
}

.dc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.dc-item:last-child { margin-bottom: 0; }

.dc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, .15);
}

.dc-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.dc-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .32);
  display: block;
  margin-bottom: 3px;
}

.dc-val {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.3;
}

.dc-sub {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .3);
  display: block;
  margin-top: 2px;
}

.dc-val a {
  color: inherit;
  transition: color .15s;
}

.dc-val a:hover {
  color: var(--yellow);
}

.visit-card {
  background: var(--cream);
  border: var(--b);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.visit-card h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 16px;
}

.visit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.visit-item:last-child { margin-bottom: 0; }

.vi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  border: 2px solid var(--navy);
  margin-top: 5px;
}

.vi-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(29, 38, 49, .38);
  display: block;
  margin-bottom: 2px;
}

.vi-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.45;
}

.response-sticker {
  background: #fff;
  border: var(--b);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.rs-sketch {
  font-family: var(--font-sketch);
  font-size: 26px;
  color: var(--teal);
  flex-shrink: 0;
  line-height: 1;
}

.rs-text {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(29, 38, 49, .55);
  line-height: 1.6;
}

.rs-text strong {
  color: var(--navy);
}

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================
   PAGE CONTENT WRAPPER
   ============================ */
main {
  padding-top: calc(var(--ticker-h) + 70px);
}

.pt-64 {
  padding-top: calc(var(--ticker-h) + 70px);
}

/* ============================
   IMAGE LIGHTBOX
   ============================ */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(29,38,49,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  cursor: zoom-out;
}
.lightbox-overlay.active {
  opacity: 1; visibility: visible;
}
.lightbox-overlay img {
  max-width: 92vw; max-height: 92vh;
  object-fit: contain;
  border: 3px solid var(--navy);
  box-shadow: 12px 12px 0 rgba(0,0,0,.3);
  transform: scale(.9);
  transition: transform .3s ease;
}
.lightbox-overlay.active img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: var(--red); border: 2px solid #fff;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.lightbox-close:hover { transform: scale(1.1); }
.lightbox-close svg { width: 18px; height: 18px; fill: #fff; }
.lightbox-caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.7); text-align: center;
  max-width: 600px; padding: 8px 16px;
  background: rgba(29,38,49,.6); border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .lightbox-overlay, .lightbox-overlay img, .lightbox-close { transition: none; }
}

/* ─── STAT NUMBER HOVER TOOLTIP ─── */
.stat-num-wrap { position: relative; display: inline-block; cursor: default; }
.stat-num-tooltip {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--navy); color: #fff; padding: 6px 12px; border-radius: 4px;
  font-family: var(--font-ui); font-size: 10px; font-weight: 600; white-space: nowrap;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease;
  pointer-events: none; z-index: 10;
}
.stat-num-tooltip::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: var(--navy);
}
.stat-num-wrap:hover .stat-num-tooltip,
.stat-num-wrap:focus .stat-num-tooltip {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}

/* ============================
   SECTION BACKGROUNDS
   ============================ */
.section-navy {
  background: var(--navy);
  padding: 88px 0;
  border-bottom: var(--b);
  position: relative;
  overflow: hidden;
}
.section-cream {
  background: var(--cream);
  padding: 88px 0;
  border-bottom: var(--b);
  position: relative;
  overflow: hidden;
}
.section-white {
  background: #fff;
  padding: 88px 0;
  border-bottom: var(--b);
  position: relative;
  overflow: hidden;
}
.section-red {
  background: var(--red);
  padding: 88px 0;
  border-top: var(--b);
  position: relative;
  overflow: hidden;
}
.section-yellow {
  background: var(--yellow);
  padding: 88px 0;
  border-bottom: var(--b);
  position: relative;
  overflow: hidden;
}
.section-teal {
  background: var(--teal);
  padding: 88px 0;
  border-bottom: var(--b);
  position: relative;
  overflow: hidden;
}
.section-blue {
  background: var(--blue);
  padding: 88px 0;
  border-bottom: var(--b);
  position: relative;
  overflow: hidden;
}
.section-no-pad {
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* ============================
   GRID LAYOUTS
   ============================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.grid-2-center {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.grid-2-sm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-3-tight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: var(--b);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: var(--b);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: var(--b);
  overflow: hidden;
}
.photo-strip-3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-top: var(--b);
  border-bottom: var(--b);
  overflow: hidden;
}
.photo-strip-3-eq {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: var(--b);
  border-bottom: var(--b);
  overflow: hidden;
}
.photo-strip-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--b);
  border-bottom: var(--b);
  overflow: hidden;
}
@media (max-width: 900px) {
  .grid-2, .grid-2-center, .grid-2-sm {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 760px) {
  .grid-3-tight, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3-tight > :nth-child(2n),
  .grid-4 > :nth-child(2n) { border-right: none; }
  .grid-3-tight > :nth-last-child(-n+2),
  .grid-4 > :nth-last-child(-n+2) { border-bottom: none; }
  .photo-strip-3, .photo-strip-3-eq {
    grid-template-columns: 1fr 1fr;
  }
  .photo-strip-3 > :nth-child(3),
  .photo-strip-3-eq > :nth-child(3) {
    border-top: var(--b);
  }
}
@media (max-width: 580px) {
  .grid-3, .grid-3-tight, .grid-4, .grid-5 {
    grid-template-columns: 1fr;
  }
  .grid-3-tight > *, .grid-4 > *, .grid-5 > * {
    border-right: none !important;
    border-bottom: var(--b) !important;
  }
  .grid-3-tight > :first-child,
  .grid-4 > :first-child,
  .grid-5 > :first-child { border-top: none !important; }
  .photo-strip-3, .photo-strip-3-eq, .photo-strip-4 {
    grid-template-columns: 1fr;
  }
  .photo-strip-3 > *, .photo-strip-3-eq > *, .photo-strip-4 > * {
    border-right: none !important;
    border-bottom: var(--b) !important;
  }
}

/* ============================
   CARD STYLES
   ============================ */
.card {
  border: var(--b);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .22s, box-shadow .22s;
}
.card:hover {
  transform: translate(-4px, -6px);
  box-shadow: var(--shadow);
}
.card-navy {
  background: var(--navy);
  border: var(--b);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.card-cream {
  background: var(--cream);
  border: var(--b);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* Bordered list */
.bordered-list {
  border: var(--b);
  overflow: hidden;
}
.bordered-list-item {
  padding: 16px 20px;
  border-bottom: var(--b);
  background: #fff;
  transition: background .15s;
}
.bordered-list-item:last-child { border-bottom: none; }
.bordered-list-item:hover { background: var(--cream); }

/* Bordered list on navy bg */
.bordered-list-dark {
  border: var(--b-thin);
  border-color: rgba(255,255,255,.12);
  overflow: hidden;
}
.bordered-list-dark-item {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background .15s;
}
.bordered-list-dark-item:last-child { border-bottom: none; }
.bordered-list-dark-item:hover { background: rgba(255,255,255,.04); }

/* Grid card with colored backgrounds */
.grid-card {
  padding: 36px 28px;
  border-right: var(--b);
  border-bottom: var(--b);
  display: flex;
  flex-direction: column;
}
.grid-card:last-child { border-right: none; }
.grid-card-navy { background: var(--navy); }
.grid-card-red { background: var(--red); }
.grid-card-teal { background: var(--teal); }
.grid-card-blue { background: var(--blue); }
.grid-card-yellow { background: var(--yellow); }
.grid-card-navy .grid-card-tag { color: #fff; opacity: .45; }
.grid-card-navy .grid-card-h { color: #fff; }
.grid-card-navy .grid-card-body { color: rgba(255,255,255,.72); }
.grid-card-navy .grid-card-li { color: rgba(255,255,255,.65); }
.grid-card-tag {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .32;
  display: block;
  margin-bottom: 14px;
}
.grid-card-h {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1;
  margin-bottom: 12px;
}
.grid-card-body {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  color: rgba(29,38,49,.7);
  flex: 1;
  margin-bottom: 24px;
}
.grid-card-li {
  font-size: 12px;
  font-weight: 600;
  color: rgba(29,38,49,.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.grid-card-li::before {
  content: "—";
  flex-shrink: 0;
  opacity: .4;
  font-size: 9px;
  margin-top: 2px;
}
@media (max-width: 760px) {
  .grid-card { border-right: none; border-bottom: var(--b); }
  .grid-card:last-child { border-bottom: none; }
}

/* ============================
   PHOTO / IMAGE STYLES
   ============================ */
.img-bordered {
  border: var(--b);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.img-bordered-sm {
  border: var(--b);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.img-bordered-lg {
  border: var(--b);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-overlay-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(29,38,49,.88));
  padding: 28px 16px 12px;
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.65);
}
.img-overlay-label-slide {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(29,38,49,.88));
  padding: 28px 14px 12px;
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.72);
  transform: translateY(100%);
  transition: transform .28s ease;
}
.img-hover-scale img {
  transition: transform .5s ease;
}
.img-hover-scale:hover img {
  transform: scale(1.05);
}
.img-grayscale img {
  filter: grayscale(20%) brightness(.78);
  transition: filter .5s;
}
.img-grayscale:hover img {
  filter: grayscale(0%) brightness(.92);
}
.img-grayscale-light img {
  filter: grayscale(15%);
  transition: transform .5s ease, filter .4s;
}
.img-grayscale-light:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.img-wrap {
  overflow: hidden;
  position: relative;
}
.img-wrap:hover .img-overlay-label-slide {
  transform: translateY(0);
}
.aspect-4-3 { aspect-ratio: 4/3; }
.aspect-3-4 { aspect-ratio: 3/4; }
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-16-10 { aspect-ratio: 16/10; }
.aspect-1-1 { aspect-ratio: 1/1; }
.aspect-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================
   DECORATIVE ELEMENTS
   ============================ */
.glow-red {
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,39,38,.13), transparent 70%);
  pointer-events: none;
}
.glow-teal {
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64,210,175,.08), transparent 70%);
  pointer-events: none;
}
.watermark {
  position: absolute;
  top: 10px; right: -20px;
  font-family: var(--font-head);
  font-size: clamp(90px, 14vw, 170px);
  font-weight: 900;
  color: rgba(29,38,49,.04);
  letter-spacing: -.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.red-rule {
  width: 48px;
  height: 4px;
  background: var(--red);
}

/* ============================
   STAT STRIP (navy bg, horizontal stats)
   ============================ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-strip-cell {
  padding: 20px 0;
  border-right: 1px solid rgba(255,255,255,.06);
}
.stat-strip-cell:last-child { border-right: none; }
.stat-strip-cell + .stat-strip-cell { padding-left: 20px; }
.stat-strip-num {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1;
  display: block;
  color: var(--yellow);
}
.stat-strip-lbl {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.28);
}
@media (max-width: 700px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip-cell:nth-child(2n) { border-right: none; }
  .stat-strip-cell:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.06); }
}
@media (max-width: 480px) {
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip-cell { border-right: none !important; border-top: 1px solid rgba(255,255,255,.06) !important; }
  .stat-strip-cell:first-child { border-top: none !important; }
}

/* ============================
   CTA SECTION (centered)
   ============================ */
.cta-section {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-section-h {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  line-height: .92;
  text-transform: uppercase;
  font-style: italic;
  margin: 16px 0 16px;
  letter-spacing: -.02em;
}
.cta-section-p {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.65;
}
.cta-section-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cta-section-note {
  font-size: 11px;
  font-weight: 600;
  font-style: italic;
  margin-top: 20px;
}
.section-navy .cta-section-h { color: #fff; }
.section-navy .cta-section-h em { color: var(--teal); }
.section-navy .cta-section-p { color: rgba(255,255,255,.62); }
.section-navy .cta-section-note { color: rgba(255,255,255,.28); }
.section-red .cta-section-h { color: #fff; }
.section-red .cta-section-h em { color: var(--yellow); }
.section-red .cta-section-p { color: rgba(255,255,255,.7); }
.section-red .cta-section-note { color: rgba(255,255,255,.4); }
.section-yellow .cta-section-h { color: var(--navy); }
.section-yellow .cta-section-h em { color: var(--red); }
.section-yellow .cta-section-p { color: rgba(29,38,49,.7); }
