/* =========================
   CSS VARIABLES
========================= */
:root {
  --navy: #071e35;
  --blue: #123d67;
  --teal: #0a7b7f;
  --teal-light: #59c2bd;
  --gold: #d8a84e;
  --text: #17202b;
  --muted: #667085;
  --light: #f4f8fb;
  --white: #ffffff;
  --border: #dce5ec;
  --shadow: 0 24px 64px rgba(7, 30, 53, .16);
  --container: 1200px;
}

/* =========================
   RESET & BASE
========================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--white); font-family: Inter, Arial, sans-serif; line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; padding: 10px 16px; background: var(--white); color: var(--navy); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

/* =========================
   HEADER
========================= */
.site-header { position: sticky; z-index: 50; top: 0; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(220,229,236,.9); }
.header-bar { color: #d8e6ee; background: var(--navy); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.header-bar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-bar a { color: var(--white); font-weight: 700; }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: 294px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 38px; }
.site-nav a { position: relative; color: #2c4052; font-size: .93rem; font-weight: 700; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: -12px; left: 0; height: 2px; background: var(--teal); transform: scaleX(0); transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid var(--border); border-radius: 8px; background: var(--white); }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================
   HERO
========================= */
.hero { position: relative; isolation: isolate; color: var(--white); background: var(--navy); overflow: hidden; }
.hero::before { content: ""; position: absolute; z-index: -1; top: -260px; right: -120px; width: 760px; height: 760px; border: 1px solid rgba(89,194,189,.16); border-radius: 50%; box-shadow: 0 0 0 110px rgba(89,194,189,.025), 0 0 0 220px rgba(89,194,189,.02); }
.hero__grid { min-height: 660px; padding-block: 88px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; }
.eyebrow { margin: 0 0 20px; color: #9ddbd8; font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { color: var(--gold); }
h1, h2, h3 { font-family: Manrope, Arial, sans-serif; line-height: 1.12; }
h1 { max-width: 780px; margin: 0; font-size: clamp(2.8rem, 5.4vw, 5rem); letter-spacing: -.048em; }
.hero__lead { max-width: 650px; margin: 28px 0 0; color: #c7d6e2; font-size: 1.08rem; }
.button-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; padding: 13px 23px; display: inline-flex; align-items: center; justify-content: center; gap: 15px; border: 1px solid transparent; border-radius: 6px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--navy); background: var(--gold); }
.button--secondary { color: var(--white); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.06); }
.hero__proof { margin-top: 46px; display: flex; flex-wrap: wrap; gap: 10px 24px; color: #a7bac7; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero__proof span:not(:last-child)::after { content: "•"; margin-left: 24px; color: var(--teal-light); }
.hero__visual { position: relative; min-height: 450px; display: grid; place-items: center; }
.operations-card { position: relative; z-index: 2; width: min(100%, 475px); padding: 28px; color: var(--text); background: rgba(255,255,255,.97); border: 1px solid rgba(255,255,255,.5); border-radius: 16px; box-shadow: var(--shadow); transform: rotate(-1.5deg); }
.operations-card__top { padding-bottom: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--border); }
.operations-card small { display: block; color: var(--muted); font-size: .72rem; }
.operations-card strong { display: block; color: var(--navy); font-family: Manrope, Arial, sans-serif; }
.status { padding: 6px 10px; color: #006b60; background: #dff7f2; border-radius: 20px; font-size: .66rem; font-weight: 800; text-transform: uppercase; }
.operations-card__body { padding: 14px 0 6px; display: grid; gap: 5px; }
.metric { padding: 14px 10px; display: flex; align-items: center; gap: 14px; border-radius: 9px; }
.metric:nth-child(2) { background: var(--light); }
.metric__icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: var(--teal); border-radius: 7px; font-size: .7rem; font-weight: 800; }
.metric small { margin-top: 2px; }
.operations-card__footer { margin-top: 12px; padding-top: 18px; display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); }
.operations-card__footer span { width: 34px; height: 4px; background: var(--gold); }
.operations-card__footer p { margin: 0; color: var(--navy); font-size: .78rem; font-weight: 800; }
.hero__accent { position: absolute; border: 1px solid rgba(89,194,189,.45); }
.hero__accent--one { width: 175px; height: 175px; right: -20px; top: 20px; border-radius: 50%; }
.hero__accent--two { width: 120px; height: 120px; bottom: 5px; left: -10px; border-color: rgba(216,168,78,.35); transform: rotate(45deg); }

/* =========================
   LICENCE STRIP
========================= */
.licence-strip { color: var(--white); background: var(--teal); }
.licence-strip__grid { min-height: 120px; display: grid; grid-template-columns: 1fr 1fr 1.5fr; align-items: stretch; }
.licence-strip__grid > div { padding: 24px 24px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,.18); }
.licence-strip__grid > div:last-child { border-right: 1px solid rgba(255,255,255,.18); }
.licence-strip span { color: #c1eeea; font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.licence-strip strong { margin-top: 5px; font-family: Manrope, Arial, sans-serif; font-size: .94rem; }

/* =========================
   SHARED SECTIONS
========================= */
.section { padding-block: 108px; }
.section-kicker { margin: 0 0 16px; color: var(--teal); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-kicker--light { color: #8fd6d2; }
.section h2, .feature-band h2, .location-band h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 3.8vw, 3.35rem); letter-spacing: -.035em; }
.section-intro { color: #405465; font-size: 1.08rem; }
.section-copy > p:not(.section-kicker) { margin: 24px 0 0; color: var(--muted); }
.split-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 90px; }
.media-frame { position: relative; min-height: 545px; }
.media-frame::before { content: ""; position: absolute; inset: 26px -22px -22px 26px; border: 1px solid #abc6cf; }
.media-frame img { position: relative; z-index: 1; width: 100%; height: 545px; object-fit: cover; }
.media-note { position: absolute; z-index: 2; right: -20px; bottom: 35px; min-width: 235px; padding: 20px 24px; color: var(--white); background: var(--navy); border-left: 4px solid var(--gold); box-shadow: var(--shadow); }
.media-note strong, .media-note span { display: block; }
.media-note strong { font-family: Manrope, Arial, sans-serif; }
.media-note span { margin-top: 3px; color: #acc0ce; font-size: .78rem; }
.check-list, .feature-list { margin: 28px 0; padding: 0; display: grid; gap: 11px; list-style: none; }
.check-list li, .feature-list li { position: relative; padding-left: 30px; color: #34495b; font-weight: 700; }
.check-list li::before, .feature-list li::before { content: "✓"; position: absolute; top: 0; left: 0; color: var(--teal); font-weight: 900; }
.text-link { display: inline-flex; align-items: center; gap: 14px; color: var(--navy); font-weight: 800; border-bottom: 2px solid var(--gold); }
.section-heading { margin-bottom: 52px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; }
.section-heading > p { max-width: 480px; margin: 0; color: var(--muted); }
.section-heading--center { grid-template-columns: 1fr; justify-items: center; gap: 18px; text-align: center; }
.section-heading--center > p { max-width: 620px; }
.center-action { margin-top: 42px; text-align: center; }
.button--navy { color: var(--white); background: var(--navy); }
.button--gold { color: var(--navy); background: var(--gold); }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.38); background: transparent; }

/* =========================
   SERVICES PREVIEW
========================= */
.services-preview { background: var(--light); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { min-height: 305px; padding: 34px; background: var(--white); border: 1px solid var(--border); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: #a8ced0; box-shadow: 0 18px 45px rgba(7,30,53,.09); }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; color: var(--teal); background: #e8f5f4; border-radius: 9px; }
.icon-box svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 26px 0 12px; color: var(--navy); font-size: 1.2rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .91rem; }

/* =========================
   WHY US
========================= */
.why-us { color: var(--white); background: var(--navy); }
.why-us__grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; }
.why-us__intro h2 { color: var(--white); }
.why-us__intro p:not(.section-kicker) { margin: 24px 0 32px; color: #b7c8d4; }
.advantage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.advantage-card { min-height: 230px; padding: 30px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); }
.advantage-card > span { color: var(--gold); font-family: Manrope, Arial, sans-serif; font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.advantage-card h3 { margin: 28px 0 10px; color: var(--white); font-size: 1.12rem; }
.advantage-card p { margin: 0; color: #aebfcb; font-size: .88rem; }

/* =========================
   INSTITUTIONS & PROCESS
========================= */
.institution-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.institution-card { min-height: 170px; padding: 25px 15px; display: grid; place-items: center; align-content: center; gap: 18px; text-align: center; border: 1px solid var(--border); background: var(--white); }
.institution-card span { width: 58px; height: 58px; display: grid; place-items: center; color: var(--teal); background: #e9f6f5; border-radius: 50%; font-family: Manrope, Arial, sans-serif; font-size: .72rem; font-weight: 800; }
.institution-card strong { color: var(--navy); font-family: Manrope, Arial, sans-serif; font-size: .91rem; }
.process-section { background: var(--light); }
.process-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; counter-reset: steps; }
.process-step { position: relative; min-height: 255px; padding: 34px 30px; background: var(--white); border-top: 3px solid transparent; border-right: 1px solid var(--border); }
.process-step:first-child { border-left: 1px solid var(--border); }
.process-step:hover { border-top-color: var(--teal); }
.process-step > span { color: var(--gold); font-family: Manrope, Arial, sans-serif; font-size: 1.5rem; font-weight: 800; }
.process-step h3 { margin: 30px 0 12px; color: var(--navy); font-size: 1.08rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .87rem; }

/* =========================
   FEATURE & CTA
========================= */
.feature-band { color: var(--white); background: #0b354c; }
.feature-band__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; }
.feature-band__image { min-height: 600px; margin-left: calc((100vw - min(calc(100vw - 40px), var(--container))) / -2); }
.feature-band__image img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; }
.feature-band__copy { padding: 95px 0 95px 75px; }
.feature-band h2 { color: var(--white); }
.feature-band__copy > p:not(.section-kicker) { margin: 24px 0 0; color: #b8ccd6; }
.feature-list { margin-top: 30px; grid-template-columns: 1fr 1fr; }
.feature-list li { color: var(--white); font-size: .9rem; }
.feature-list li::before { color: var(--gold); }
.cta-section { padding-block: 84px; background: var(--light); }
.cta-box { padding: 62px 66px; display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: 60px; color: var(--white); background: var(--teal); box-shadow: 0 24px 60px rgba(10,123,127,.2); }
.cta-box h2 { color: var(--white); font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
.cta-box p:not(.section-kicker) { margin: 18px 0 0; color: #d0efed; }
.cta-box__actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }

/* =========================
   PAGE HERO
========================= */
.page-hero { position: relative; isolation: isolate; min-height: 490px; display: grid; align-items: center; color: var(--white); background: var(--navy); overflow: hidden; }
.page-hero__image { position: absolute; z-index: -2; inset: 0; }
.page-hero__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,30,53,.96) 0%, rgba(7,30,53,.87) 47%, rgba(7,30,53,.35) 100%); }
.page-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__content { padding-block: 90px; }
.page-hero h1 { max-width: 830px; font-size: clamp(2.7rem, 5.8vw, 5rem); }
.page-hero__content > p:not(.eyebrow) { max-width: 680px; margin: 25px 0 0; color: #c8d7e1; font-size: 1.08rem; }
.breadcrumbs { margin-top: 38px; display: flex; align-items: center; gap: 10px; color: #b3c6d2; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.breadcrumbs a { color: var(--white); }

/* =========================
   SERVICES PAGE
========================= */
.services-intro { padding-bottom: 40px; }
.intro-panel { padding: 0 0 55px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: end; gap: 90px; border-bottom: 1px solid var(--border); }
.intro-panel > p { margin: 0; color: var(--muted); }
.service-details { padding-top: 35px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.detail-card { position: relative; min-height: 395px; padding: 42px; overflow: hidden; background: var(--white); border: 1px solid var(--border); box-shadow: 0 14px 42px rgba(7,30,53,.055); }
.detail-card__number { position: absolute; top: 16px; right: 24px; color: #edf2f5; font-family: Manrope, Arial, sans-serif; font-size: 4.7rem; font-weight: 800; line-height: 1; }
.detail-card h2 { position: relative; margin-top: 25px; font-size: 1.5rem; letter-spacing: -.02em; }
.detail-card p { position: relative; margin: 16px 0 22px; color: var(--muted); }
.detail-card ul { position: relative; margin: 0; padding: 0; display: grid; gap: 9px; list-style: none; }
.detail-card li { padding-left: 22px; color: #405465; font-size: .87rem; font-weight: 700; }
.detail-card li::before { content: ""; position: absolute; width: 7px; height: 7px; margin: 9px 0 0 -21px; background: var(--gold); transform: rotate(45deg); }

/* =========================
   CONTACT PAGE
========================= */
.contact-layout { display: grid; grid-template-columns: minmax(0, 880px); justify-content: center; }
.contact-content h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
.contact-cards { margin: 34px 0; display: grid; gap: 12px; }
.contact-card { padding: 18px; display: flex; align-items: flex-start; gap: 16px; border: 1px solid var(--border); background: var(--white); transition: border-color .2s ease, transform .2s ease; }
a.contact-card:hover { border-color: #8fc5c7; transform: translateX(4px); }
.contact-card .icon-box { flex: 0 0 auto; width: 46px; height: 46px; }
.contact-card small, .contact-card strong, .contact-card em { display: block; }
.contact-card small { color: var(--muted); font-size: .69rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-card strong { margin-top: 3px; color: var(--navy); font-size: .9rem; overflow-wrap: anywhere; }
.contact-card em { margin-top: 4px; color: var(--muted); font-size: .78rem; font-style: normal; }
.location-band { padding-block: 62px; color: var(--white); background: var(--teal); }
.location-band__grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1.2fr; align-items: center; gap: 32px; }
.location-band h2 { color: var(--white); font-size: 2rem; }
.location-band span, .location-band strong, .location-band small { display: block; }
.location-band span { color: #bce8e5; font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.location-band strong { margin-top: 6px; font-family: Manrope, Arial, sans-serif; font-size: .9rem; }
.location-band small { margin-top: 4px; color: #c6ecea; }

/* =========================
   FOOTER
========================= */
.site-footer { color: #b7c8d3; background: #06192c; }
.footer-grid { padding-block: 75px 58px; display: grid; grid-template-columns: 1.35fr .65fr 1fr .9fr; gap: 48px; }
.footer-brand img { width: 294px; }
.footer-brand p { max-width: 330px; margin: 24px 0 0; font-size: .87rem; }
.site-footer h2 { margin: 0 0 21px; color: var(--white); font-size: .81rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; display: grid; gap: 10px; list-style: none; font-size: .8rem; }
.site-footer a:hover { color: var(--white); }
.site-footer strong { color: var(--white); }
.footer-bottom { padding-block: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: #8299a8; font-size: .7rem; }

/* =========================
   REVEAL ANIMATIONS
========================= */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .header-bar { display: none; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 220px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 74px; right: 0; left: 0; padding: 18px 20px 24px; display: flex; flex-direction: column; align-items: stretch; gap: 4px; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 18px 35px rgba(7,30,53,.12); opacity: 0; visibility: hidden; transform: translateY(-8px); pointer-events: none; transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
  .site-nav a { padding: 12px; }
  .site-nav a::after { display: none; }
  .hero__grid { min-height: auto; padding-block: 72px; grid-template-columns: 1fr; gap: 55px; }
  .hero__visual { min-height: 360px; }
  .licence-strip__grid { grid-template-columns: 1fr 1fr; }
  .licence-strip__grid > div { border-bottom: 1px solid rgba(255,255,255,.18); }
  .section { padding-block: 82px; }
  .split-grid, .why-us__grid, .feature-band__grid { grid-template-columns: 1fr; gap: 55px; }
  .media-frame, .media-frame img { min-height: 440px; height: 440px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .institution-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(3) { border-left: 1px solid var(--border); }
  .feature-band__image { min-height: 460px; margin-left: 0; }
  .feature-band__image img { min-height: 460px; }
  .feature-band__copy { padding: 0 0 75px; }
  .cta-box { grid-template-columns: 1fr; padding: 50px; gap: 35px; }
  .cta-box__actions { flex-direction: row; }
  .intro-panel { grid-template-columns: 1fr; gap: 25px; }
  .location-band__grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
}
@media (max-width: 560px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .brand img { width: 190px; }
  .hero__grid { padding-block: 58px; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.35rem); }
  .hero__lead { font-size: 1rem; }
  .button-row, .button { width: 100%; }
  .hero__proof { display: grid; gap: 8px; }
  .hero__proof span::after { display: none; }
  .hero__visual { min-height: 340px; }
  .operations-card { padding: 19px; }
  .operations-card__top { align-items: flex-start; }
  .licence-strip__grid { grid-template-columns: 1fr; }
  .licence-strip__grid > div { padding-inline: 16px; border-right: 1px solid rgba(255,255,255,.18); }
  .section { padding-block: 68px; }
  .section-heading { margin-bottom: 36px; grid-template-columns: 1fr; gap: 18px; }
  .media-frame, .media-frame img { min-height: 350px; height: 350px; }
  .media-frame::before { inset: 14px -8px -12px 14px; }
  .media-note { right: -5px; bottom: 18px; min-width: 210px; }
  .service-grid, .advantage-grid, .institution-grid, .process-grid, .detail-grid, .location-band__grid, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 27px; }
  .why-us__grid { gap: 42px; }
  .advantage-card { min-height: 195px; }
  .institution-card { min-height: 145px; }
  .process-step { min-height: auto; border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .feature-band__image, .feature-band__image img { min-height: 340px; }
  .feature-band__copy { padding-bottom: 60px; }
  .feature-list { grid-template-columns: 1fr; }
  .cta-section { padding-block: 54px; }
  .cta-box { width: calc(100% - 24px); padding: 36px 24px; gap: 30px; }
  .cta-box__actions { flex-direction: column; }
  .page-hero { min-height: 430px; }
  .page-hero__content { padding-block: 65px; }
  .page-hero__image::after { background: rgba(7,30,53,.82); }
  .detail-card { min-height: auto; padding: 31px 25px; }
  .detail-card__number { font-size: 3.8rem; }
  .location-band__grid { gap: 26px; }
  .footer-grid { gap: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
