:root {
  --ink: #10212a;
  --muted: #63717a;
  --paper: #ffffff;
  --soft: #eef2f3;
  --line: #d7dee1;
  --brand: #0b6270;
  --brand-dark: #074853;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-synthesis: none;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); letter-spacing: 0; -webkit-font-smoothing: antialiased; }
button, input, select { font: inherit; letter-spacing: 0; }
:focus-visible { outline: 3px solid rgba(11, 98, 112, .34); outline-offset: 2px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 68px;
  padding: 9px max(20px, calc((100vw - 1220px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
}
.site-brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 13px; font-weight: 800; text-decoration: none; }
.site-brand img { width: 48px; height: 48px; border-radius: 5px; object-fit: cover; }
.site-header nav { display: flex; justify-content: center; gap: clamp(14px, 2.2vw, 30px); }
.site-header nav a { color: var(--muted); font-size: 13px; font-weight: 700; text-decoration: none; }
.site-header nav a:hover { color: var(--brand-dark); }
.site-languages { display: flex; gap: 3px; padding: 3px; border: 1px solid var(--line); border-radius: 6px; background: var(--soft); }
.site-languages button { min-height: 30px; padding: 4px 7px; border: 0; border-radius: 4px; color: var(--muted); background: transparent; font-size: 12px; font-weight: 750; cursor: pointer; }
.site-languages button.is-selected { color: var(--ink); background: var(--paper); box-shadow: 0 1px 2px rgba(16, 33, 42, .12); }

.hero { position: relative; min-height: min(700px, calc(100vh - 68px)); overflow: hidden; color: #fff; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: rgba(4, 18, 25, .49); }
.hero-content { position: relative; z-index: 1; width: min(1220px, calc(100% - 40px)); padding-top: clamp(110px, 17vh, 190px); margin: 0 auto; }
.hero-content > p:first-child, .section-eyebrow, .section-heading > p { margin: 0 0 8px; color: #8ed3d8; font-size: 12px; font-weight: 850; text-transform: uppercase; }
.hero h1 { max-width: 820px; margin: 0; font-size: clamp(48px, 8vw, 92px); line-height: .98; }
.hero-lead { max-width: 610px; margin: 24px 0 0; font-size: clamp(17px, 2vw, 22px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.site-button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 9px 16px; border: 1px solid var(--brand); border-radius: 5px; font-weight: 800; text-decoration: none; cursor: pointer; }
.site-button.primary { color: #fff; background: var(--brand); }
.site-button.secondary { color: #fff; border-color: rgba(255,255,255,.68); background: rgba(7, 29, 37, .62); }
.site-button:hover { filter: brightness(.94); }

.about-band, .drive-band, .contact-band { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.about-band { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 7vw, 100px); padding: 74px 0; }
.section-heading > p, .section-eyebrow { color: var(--brand); }
.section-heading h2, .drive-copy h2, .contact-band h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; }
.about-copy > p, .drive-copy > p:last-child, .contact-band > p:not(.section-eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.65; }
.about-copy ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0; margin: 28px 0 0; list-style: none; }
.about-copy li { padding-top: 12px; border-top: 3px solid var(--brand); font-weight: 750; }

.drive-band { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 8vw, 110px); padding: 72px 0; border-top: 1px solid var(--line); }
.drive-copy { padding-top: 8px; }
#application-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; padding: 22px; border: 1px solid var(--line); border-radius: 7px; background: var(--soft); }
.site-field label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 800; }
.site-field input, .site-field select { width: 100%; min-height: 42px; padding: 8px 10px; border: 1px solid #bcc7cc; border-radius: 5px; background: var(--paper); }
.consent-row, #application-form > button, #application-status { grid-column: 1 / -1; }
.consent-row { display: grid; grid-template-columns: auto 1fr; gap: 9px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.consent-row input { margin-top: 2px; }
#application-status { min-height: 18px; margin: 0; color: var(--brand-dark); font-size: 12px; text-align: center; }

.contact-band { padding: 72px 0; border-top: 1px solid var(--line); text-align: center; }
.contact-band p { max-width: 650px; margin-left: auto; margin-right: auto; }
.site-footer { padding: 24px 20px; color: var(--muted); background: var(--soft); font-size: 12px; text-align: center; }

@media (max-width: 920px) {
  .site-header { grid-template-columns: auto auto; }
  .site-header nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; overflow-x: auto; padding: 5px 0; }
  .site-languages { justify-self: end; }
  .about-band, .drive-band { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 620px) {
  .site-header { gap: 10px; padding: 7px 12px; }
  .site-brand span { display: none; }
  .site-brand img { width: 42px; height: 42px; }
  .site-header nav { gap: 18px; }
  .hero { min-height: 590px; }
  .hero-content { width: calc(100% - 28px); padding-top: 100px; }
  .hero h1 { font-size: 36px; line-height: 1.02; overflow-wrap: normal; word-break: normal; }
  .about-band, .drive-band, .contact-band { width: calc(100% - 28px); padding-top: 52px; padding-bottom: 52px; }
  .about-copy ul { grid-template-columns: 1fr; }
  #application-form { grid-template-columns: 1fr; padding: 16px; }
  .site-field, .consent-row, #application-form > button, #application-status { grid-column: 1; }
}
