:root {
  --navy: #06192c;
  --navy-2: #0b2941;
  --navy-3: #103650;
  --structural: #17344a;
  --orange: #ff6b2c;
  --cyan: #21b9d4;
  --ivory: #f5f1e8;
  --white: #ffffff;
  --muted: #afc2cf;
  --ink: #0a1d2d;
  --line: rgba(6, 25, 44, 0.16);
  --shadow: 0 24px 70px rgba(6, 25, 44, 0.12);
  --radius: 2px;
  --container: min(1240px, calc(100vw - 48px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--cyan); color: var(--navy); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 120px 0; }
.section-sm { padding: 76px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-white { background: var(--white); }
.section-cyan { background: var(--cyan); color: var(--navy); }
.section-orange { background: var(--orange); color: var(--navy); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.eyebrow-cyan { color: var(--cyan); }
.eyebrow-navy { color: var(--navy); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: "Aptos Display", Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.03;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3.5rem, 8vw, 7.8rem); font-weight: 700; }
h2 { font-size: clamp(2.6rem, 5vw, 5.6rem); font-weight: 650; }
h3 { font-size: clamp(1.5rem, 2.3vw, 2.25rem); }
.display-small { font-size: clamp(2.8rem, 5vw, 5rem); }
.lede { max-width: 760px; font-size: clamp(1.15rem, 2vw, 1.48rem); line-height: 1.5; }
.muted { color: #587084; }
.text-cyan { color: var(--cyan); }
.text-orange { color: var(--orange); }
.text-ivory { color: var(--ivory); }
.serif-accent { font-family: Georgia, serif; font-style: italic; font-weight: 400; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 84px;
  color: var(--white);
  transition: background .35s ease, height .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  height: 70px;
  background: rgba(6, 25, 44, .95);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-size: .92rem; letter-spacing: .08em; }
.brand-text span { margin-top: 6px; color: var(--cyan); font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a, .nav-dropdown > button {
  position: relative;
  padding: 12px 0;
  border: 0;
  background: none;
  color: rgba(255,255,255,.8);
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links > a::after, .nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--orange);
  transition: right .3s ease;
}
.nav-links > a:hover::after, .nav-links > a.active::after, .nav-dropdown > button:hover::after { right: 0; }
.nav-links > a:hover, .nav-links > a.active, .nav-dropdown > button:hover { color: var(--white); }
.nav-cta {
  padding: 11px 17px !important;
  border: 1px solid rgba(255,255,255,.45) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { border-color: var(--cyan) !important; background: var(--cyan); color: var(--navy) !important; }
.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 450px;
  padding: 12px;
  background: var(--ivory);
  color: var(--navy);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 12px);
  transition: .25s ease;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown-panel a { display: grid; grid-template-columns: 12px 1fr; gap: 12px; padding: 14px; }
.dropdown-panel a:hover { background: #ebe6dc; }
.dropdown-dot { width: 8px; height: 8px; margin-top: 8px; background: var(--cyan); }
.dropdown-panel a:nth-child(2) .dropdown-dot, .dropdown-panel a:nth-child(4) .dropdown-dot { background: var(--orange); }
.dropdown-panel strong { display: block; font-size: .95rem; }
.dropdown-panel small { display: block; margin-top: 2px; color: #65798a; font-size: .76rem; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; color: white; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 6px auto; background: currentColor; transition: .3s ease; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  background: var(--orange);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn::after { content: "↗"; font-size: 1.05rem; }
.btn:hover { transform: translateY(-3px); background: var(--cyan); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.42); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: var(--white); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-3); color: var(--white); }
.text-link { display: inline-flex; gap: 16px; align-items: center; font-weight: 800; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.text-link::after { content: "→"; font-size: 1.25rem; color: var(--orange); transition: transform .25s ease; }
.text-link:hover::after { transform: translateX(6px); }

.hero {
  position: relative;
  min-height: 760px;
  height: min(920px, 100vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,25,44,.98) 0%, rgba(6,25,44,.84) 39%, rgba(6,25,44,.22) 72%, rgba(6,25,44,.2) 100%), url("../images/exh-hero.webp") center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}
.hero-content { position: relative; z-index: 2; width: min(760px, 65vw); padding-top: 70px; }
.hero h1 { max-width: 830px; margin-bottom: 28px; }
.hero h1 span { color: var(--cyan); }
.hero .lede { color: rgba(255,255,255,.76); max-width: 660px; margin-bottom: 40px; }
.hero-meta {
  position: absolute;
  right: 28px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  gap: 28px;
  color: rgba(255,255,255,.65);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-axis { position: absolute; z-index: 2; bottom: 0; left: 0; width: 55%; height: 4px; background: var(--orange); }
.hero-axis::after { content: ""; position: absolute; left: 100%; top: 0; width: 22%; height: 4px; background: var(--cyan); }

.page-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  padding: 170px 0 90px;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,25,44,.96), rgba(6,25,44,.44) 70%, rgba(6,25,44,.2)), var(--page-image) center/cover no-repeat; }
.page-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: linear-gradient(90deg, var(--orange) 0 48%, var(--cyan) 48% 67%, transparent 67%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero-content { max-width: 870px; }
.page-hero h1 { margin-bottom: 25px; font-size: clamp(3.9rem, 8vw, 7rem); }
.page-hero .lede { color: rgba(255,255,255,.8); margin-bottom: 35px; }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(60px, 8vw, 130px); align-items: start; }
.split-center { align-items: center; }
.section-heading { max-width: 900px; margin-bottom: 65px; }
.section-heading h2 { margin-bottom: 24px; }
.section-heading p { max-width: 680px; color: #5e7486; font-size: 1.12rem; }
.section-dark .section-heading p { color: rgba(255,255,255,.67); }

.idea-lockup { position: sticky; top: 120px; }
.idea-lockup h2 { max-width: 620px; margin-bottom: 28px; }
.idea-list { border-top: 1px solid var(--line); }
.idea-item { display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.idea-item .letter { color: var(--orange); font-size: 2rem; font-weight: 800; line-height: 1; }
.idea-item:nth-child(2) .letter { color: var(--cyan); }
.idea-item h3 { margin-bottom: 8px; font-size: 1.35rem; letter-spacing: -.02em; }
.idea-item p { margin-bottom: 0; color: #617486; }

.ecosystem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ecosystem-card {
  position: relative;
  min-height: 520px;
  padding: 38px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-2);
}
.ecosystem-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,25,44,.05), rgba(6,25,44,.92)), var(--card-image) center/cover no-repeat; transition: transform .8s var(--ease); }
.ecosystem-card::after { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 5px; background: var(--card-accent, var(--orange)); transition: width .55s var(--ease); }
.ecosystem-card:hover::before { transform: scale(1.04); }
.ecosystem-card:hover::after { width: 100%; }
.ecosystem-card-content { position: relative; z-index: 2; width: 100%; }
.ecosystem-number { display: block; margin-bottom: 60px; color: var(--card-accent, var(--cyan)); font-size: .72rem; font-weight: 800; letter-spacing: .13em; }
.ecosystem-card h3 { margin-bottom: 13px; font-size: clamp(2.3rem, 4vw, 4rem); }
.ecosystem-card p { max-width: 470px; margin-bottom: 25px; color: rgba(255,255,255,.74); }
.ecosystem-card .text-link::after { color: var(--card-accent, var(--orange)); }

.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.program-card { position: relative; min-height: 390px; padding: 36px; background: var(--ivory); transition: background .3s ease, transform .3s ease; }
.program-card:hover { z-index: 2; background: var(--white); transform: translateY(-6px); box-shadow: var(--shadow); }
.program-tag { display: inline-block; margin-bottom: 70px; color: var(--cyan); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.program-card:nth-child(2) .program-tag { color: var(--orange); }
.program-card h3 { margin-bottom: 16px; }
.program-card p { color: #5f7485; }
.program-footer { position: absolute; left: 36px; right: 36px; bottom: 32px; display: flex; justify-content: space-between; gap: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .71rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.process-step { min-height: 320px; padding: 34px 25px 30px 0; border-right: 1px solid rgba(255,255,255,.16); }
.process-step + .process-step { padding-left: 25px; }
.process-step:last-child { border-right: 0; }
.process-number { display: block; margin-bottom: 90px; color: var(--cyan); font-size: .78rem; font-weight: 800; letter-spacing: .14em; }
.process-step:nth-child(even) .process-number { color: var(--orange); }
.process-step h3 { font-size: 1.65rem; margin-bottom: 14px; }
.process-step p { color: rgba(255,255,255,.62); }

.statement { max-width: 1080px; }
.statement h2 { margin-bottom: 30px; }
.statement p { max-width: 700px; font-size: 1.2rem; }

.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 60px; }
.impact-item { padding: 30px; border: 1px solid rgba(6,25,44,.22); min-height: 180px; }
.impact-item span { display: block; margin-bottom: 45px; color: var(--orange); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.impact-item strong { display: block; font-size: 1.18rem; line-height: 1.25; }

.cta-band { position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; top: -230px; border: 2px solid rgba(6,25,44,.15); transform: rotate(30deg); }
.cta-inner { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-end; gap: 60px; }
.cta-inner h2 { max-width: 850px; margin-bottom: 0; }

.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.content-card { padding: 34px; background: var(--white); border-top: 4px solid var(--cyan); min-height: 285px; }
.content-card:nth-child(even) { border-color: var(--orange); }
.content-card .index { display: block; margin-bottom: 52px; color: #6a7d8d; font-size: .73rem; font-weight: 800; letter-spacing: .12em; }
.content-card h3 { font-size: 1.55rem; }
.content-card p { margin-bottom: 0; color: #607486; }
.section-dark .content-card { background: var(--navy-2); }
.section-dark .content-card p { color: rgba(255,255,255,.62); }

.feature-image { position: relative; min-height: 620px; overflow: hidden; }
.feature-image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.feature-image::after { content: ""; position: absolute; inset: auto 0 0; height: 6px; background: linear-gradient(90deg, var(--orange) 0 62%, var(--cyan) 62%); }
.feature-copy { padding: 60px 0; }
.feature-copy h2 { margin-bottom: 26px; }
.feature-list { list-style: none; padding: 0; margin: 38px 0; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.feature-list li::before { content: "↗"; color: var(--orange); font-weight: 800; }

.quote-block { padding: 90px; background: var(--navy-2); color: var(--white); }
.quote-block blockquote { margin: 0; max-width: 1000px; font-family: Georgia, serif; font-style: italic; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.18; }
.quote-block cite { display: block; margin-top: 35px; color: var(--cyan); font-family: Aptos, sans-serif; font-size: .75rem; font-style: normal; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.schedule { border-top: 1px solid var(--line); }
.schedule-row { display: grid; grid-template-columns: 130px 1fr 1fr; gap: 30px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.schedule-time { color: var(--orange); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.schedule-row h3 { margin-bottom: 0; font-size: 1.25rem; }
.schedule-row p { margin-bottom: 0; color: #637788; }

.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.18); }
.metric { padding: 35px; background: var(--navy); }
.metric strong { display: block; margin-bottom: 8px; color: var(--cyan); font-size: clamp(2.3rem, 4vw, 4rem); line-height: 1; }
.metric span { color: rgba(255,255,255,.64); }

.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 9vw, 140px); }
.contact-details { margin-top: 50px; border-top: 1px solid var(--line); }
.contact-detail { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-detail small { display: block; color: #687c8c; text-transform: uppercase; letter-spacing: .12em; }
.contact-detail strong { display: block; margin-top: 5px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 15px;
  border: 1px solid rgba(6,25,44,.24);
  border-radius: 0;
  background: rgba(255,255,255,.68);
  color: var(--navy);
  outline: none;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(33,185,212,.13); }
.form-note { grid-column: 1 / -1; color: #6c7e8c; font-size: .8rem; }
.form-status { display: none; grid-column: 1 / -1; padding: 16px; background: rgba(33,185,212,.16); border-left: 4px solid var(--cyan); }
.form-status.show { display: block; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 35px; }
.filter-btn { padding: 11px 15px; border: 1px solid var(--line); background: transparent; color: var(--navy); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: white; }
.filterable.hidden { display: none; }

.site-footer { background: #041421; color: var(--white); padding: 80px 0 28px; }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 70px; padding-bottom: 70px; }
.footer-brand img { width: 72px; height: 72px; }
.footer-brand p { max-width: 360px; margin: 24px 0 0; color: rgba(255,255,255,.56); }
.footer-col h4 { margin-bottom: 20px; color: var(--cyan); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-col a { display: block; padding: 5px 0; color: rgba(255,255,255,.66); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1060px) {
  .nav-links { position: fixed; inset: 0; padding: 120px 32px 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; background: var(--navy); transform: translateX(100%); transition: transform .45s var(--ease); }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a, .nav-dropdown > button { font-size: 1.3rem; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-dropdown { width: 100%; }
  .dropdown-panel { position: static; display: grid; grid-template-columns: 1fr 1fr; width: 100%; margin-top: 8px; opacity: 1; visibility: visible; transform: none; box-shadow: none; }
  .split, .form-layout { grid-template-columns: 1fr; }
  .idea-lockup { position: static; }
  .program-grid, .content-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card:last-child { grid-column: 1 / -1; }
  .process-grid, .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 34px, 1240px); }
  .section { padding: 84px 0; }
  .section-sm { padding: 60px 0; }
  .site-header { height: 72px; }
  .brand img { width: 39px; height: 39px; }
  .brand-text span { display: none; }
  .hero { min-height: 760px; height: 100svh; align-items: flex-end; padding-bottom: 80px; }
  .hero-content { width: 100%; padding-top: 90px; }
  .hero h1 { font-size: clamp(3.3rem, 16vw, 5.4rem); }
  .hero::before { background: linear-gradient(0deg, rgba(6,25,44,.98) 0%, rgba(6,25,44,.76) 65%, rgba(6,25,44,.25) 100%), url("../images/exh-hero.webp") 65% center/cover no-repeat; }
  .hero-meta { display: none; }
  .page-hero { min-height: 660px; padding-bottom: 70px; }
  .page-hero h1 { font-size: clamp(3.5rem, 16vw, 5.4rem); }
  .ecosystem-grid, .program-grid, .content-grid, .process-grid, .impact-grid, .metric-row, .form-grid { grid-template-columns: 1fr; }
  .program-card:last-child { grid-column: auto; }
  .ecosystem-card { min-height: 460px; padding: 28px; }
  .program-card { min-height: 350px; }
  .process-step { padding: 28px 0 !important; min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .process-number { margin-bottom: 40px; }
  .impact-item { min-height: 150px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .feature-image { min-height: 440px; }
  .quote-block { padding: 55px 26px; }
  .schedule-row { grid-template-columns: 1fr; gap: 8px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .dropdown-panel { grid-template-columns: 1fr; max-height: 48vh; overflow: auto; }
  .field-full, .form-note, .form-status { grid-column: auto; }
}

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