:root {
  --ink: #172f42;
  --muted: #586b78;
  --navy: #174364;
  --navy-dark: #0e2f49;
  --amber: #c77c24;
  --amber-light: #f6e6cc;
  --sky: #eaf3f8;
  --sky-deep: #d8e9f2;
  --paper: #fffdfa;
  --white: #ffffff;
  --line: #cfdbe1;
  --error: #a1271c;
  --shadow: 0 18px 50px rgba(15, 47, 73, .12);
  --radius: 20px;
  --content: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 28px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid #e5a34d; outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-dark);
  border-radius: 7px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.operator-bar {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 5px 18px;
  color: #fff;
  background: var(--navy-dark);
  font-size: 13px;
  letter-spacing: .03em;
  text-align: center;
}

.site-header { position: relative; z-index: 30; background: #fff; border-bottom: 1px solid var(--line); }
.header-inner, .hero-inner, .section-inner, .footer-inner, .focus-band {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}
.header-inner {
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.domain-mark {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 26px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -.04em;
  text-decoration: none;
  white-space: nowrap;
}
.domain-mark strong {
  padding: 8px 7px 8px 10px;
  color: #fff;
  background: var(--navy);
  border-radius: 5px 0 0 5px;
}
.domain-mark span {
  padding: 8px 10px 8px 6px;
  color: var(--navy);
  background: var(--amber-light);
  border-radius: 0 5px 5px 0;
}

.main-nav { display: flex; justify-content: center; align-items: center; gap: clamp(17px, 2.5vw, 32px); }
.main-nav a { color: #40596b; font-size: 15px; font-weight: 680; text-decoration: none; }
.main-nav a:hover { color: var(--amber); }
.header-logo, .header-logo img { width: 82px; }
.header-logo img { height: auto; }

.menu-button {
  display: none;
  min-height: 46px;
  align-items: center;
  padding: 8px 12px;
  color: var(--navy-dark);
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 750;
  cursor: pointer;
}
.menu-button i {
  width: 20px;
  height: 12px;
  margin-left: 8px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.hero { padding: 56px 0 50px; background: linear-gradient(105deg, var(--paper) 0 46%, var(--sky) 46% 100%); overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  grid-template-areas: "intro image" "primary image" "secondary image";
  gap: 20px 58px;
  align-items: start;
}
.hero-intro { grid-area: intro; padding-top: 32px; }
.hero-media { grid-area: image; height: 595px; }
.hero-primary { grid-area: primary; }
.hero-secondary { grid-area: secondary; }

.eyebrow, .section-kicker {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .085em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 25px; height: 2px; background: var(--amber); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 650px; margin-bottom: 23px; font-size: clamp(44px, 4vw, 54px); font-weight: 780; }
h2 { margin-bottom: 23px; font-size: clamp(32px, 3.2vw, 41px); font-weight: 760; }
h3 { margin-bottom: 11px; font-size: 23px; }
.hero-copy { max-width: 650px; margin-bottom: 0; color: #455e6f; font-size: 18px; }

.media { position: relative; margin: 0; overflow: hidden; background: var(--sky-deep); box-shadow: var(--shadow); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media { border: 8px solid #fff; border-radius: 16px 96px 16px 16px; }
.hero-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -8px;
  right: -8px;
  width: 112px;
  height: 112px;
  border-top: 12px solid var(--amber);
  border-right: 12px solid var(--amber);
  border-radius: 0 96px 0 0;
  pointer-events: none;
}
.hero-media img { object-position: 54% center; }
.symbol-label {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 9px;
  color: #fff;
  background: rgba(14,47,73,.84);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 780;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, color .16s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--navy); }
.button-primary:hover { background: var(--navy-dark); }
.button-secondary { color: var(--navy-dark); background: #fff; border-color: var(--navy); }
.button-secondary:hover { color: #fff; background: var(--navy); }
.button-large { min-height: 58px; padding-inline: 28px; font-size: 18px; }
.text-link { color: var(--navy-dark); font-weight: 780; text-decoration-color: var(--amber); text-decoration-thickness: 2px; text-underline-offset: 5px; }
.hero-primary p { max-width: 500px; margin: 11px 0 0; color: var(--muted); font-size: 15px; line-height: 1.45; }
.hero-secondary { display: flex; align-items: center; gap: 20px; padding-bottom: 22px; }
.hero-secondary .button { min-height: 46px; padding: 10px 17px; font-size: 16px; }
.hero-secondary .text-link { font-size: 16px; }

.focus-band {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -1px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(15,47,73,.08);
}
.focus-band p { display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; margin: 0; padding: 25px 24px; }
.focus-band p + p { border-left: 1px solid var(--line); }
.focus-band span { grid-row: 1 / 3; color: var(--amber); font-size: 13px; font-weight: 820; }
.focus-band strong, .focus-band small { display: block; }
.focus-band strong { line-height: 1.25; }
.focus-band small { color: var(--muted); font-size: 14px; line-height: 1.35; }

.overview-section, .activity-section, .responsibility-section, .support-section, .property-section, .trust-section, .contact-section { padding: 104px 0; }
.overview-section { background: #fff; }
.overview-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 38px 72px; }
.overview-lead { color: var(--muted); }
.overview-points { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 25px; border-top: 3px solid var(--amber); }
.overview-points article { padding: 30px 28px 0 0; }
.overview-points article + article { padding-left: 28px; border-left: 1px solid var(--line); }
.overview-points b { font-size: 21px; }
.overview-points p { margin: 12px 0 0; color: var(--muted); }

.activity-section { background: var(--sky); }
.activity-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 74px; align-items: center; }
.activity-media { min-height: 610px; border-radius: 70px 16px 16px 16px; }
.activity-media img { object-position: 43% center; }
.activity-copy > p:not(.section-kicker) { color: var(--muted); }
.activity-list { margin: 31px 0 0; padding: 0; list-style: none; border-top: 1px solid #b9ccd8; }
.activity-list li { position: relative; display: grid; grid-template-columns: .75fr 1.25fr; gap: 18px; padding: 17px 0 17px 22px; border-bottom: 1px solid #b9ccd8; }
.activity-list li::before { content: ""; position: absolute; top: 24px; left: 0; width: 7px; height: 7px; background: var(--amber); }
.activity-list strong { font-size: 16px; }
.activity-list span { color: var(--muted); font-size: 14px; line-height: 1.45; }

.responsibility-section { background: var(--paper); }
.responsibility-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: center; }
.responsibility-copy > p:not(.section-kicker) { color: var(--muted); }
.responsibility-note { margin-top: 32px; padding: 23px 24px; background: var(--amber-light); border-top: 4px solid var(--amber); }
.responsibility-note p { margin: 6px 0 0; color: #586062; }
.responsibility-media { min-height: 530px; border-radius: 16px 16px 82px 16px; }
.responsibility-media img { object-position: 46% center; }

.support-section { background: var(--navy-dark); color: #fff; }
.support-inner { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.support-inner::before { content: ""; position: absolute; top: 0; left: -28px; width: 5px; height: 100%; background: var(--amber); }
.support-section .section-kicker { color: #f0b96f; }
.support-section p { color: #d7e5ed; }
.support-section .button { color: var(--navy-dark); background: #fff; }
.support-section .button:hover { background: var(--amber-light); }

.property-section { background: #fff; }
.property-heading { max-width: 760px; }
.property-rows { margin-top: 40px; border-top: 1px solid var(--line); }
.property-rows article { display: grid; grid-template-columns: 100px 1fr auto; gap: 34px; align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line); }
.property-rows article > span { color: var(--amber); font-size: 13px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.property-rows h3 { margin-bottom: 7px; }
.property-rows p { margin-bottom: 0; color: var(--muted); }

.trust-section { padding: 78px 0; background: var(--sky-deep); }
.trust-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 65px; align-items: end; }
.trust-grid p:last-child { margin-bottom: 0; color: var(--muted); }
.trust-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border-top: 1px solid #9fbac9; }
.trust-facts div { padding: 22px 18px 0 0; }
.trust-facts div + div { padding-left: 18px; border-left: 1px solid #9fbac9; }
.trust-facts dt { color: var(--navy-dark); font-size: 26px; font-weight: 820; line-height: 1.15; }
.trust-facts dd { margin: 6px 0 0; color: var(--muted); font-size: 14px; line-height: 1.35; }

.contact-section { background: var(--paper); }
.contact-inner { max-width: 980px; }
.form-intro { margin-bottom: 34px; text-align: center; }
.form-intro h2 { margin-bottom: 0; }
form { padding: clamp(24px,5vw,52px); background: #fff; border: 1px solid var(--line); border-top: 7px solid var(--amber); box-shadow: var(--shadow); }
.intent-fieldset { margin: 0 0 36px; padding: 0; border: 0; }
.intent-options { display: grid; grid-template-columns: 1.25fr .75fr; gap: 14px; }
.intent-secondary { display: grid; gap: 12px; }
.intent-option { min-height: 76px; display: flex; align-items: center; gap: 13px; padding: 15px 17px; border: 1px solid #bacbd5; border-radius: 6px; cursor: pointer; }
.intent-option--primary { min-height: 164px; background: var(--sky); border: 2px solid var(--navy); }
.intent-option:has(input:checked) { border-color: var(--navy); box-shadow: inset 0 0 0 2px var(--navy); }
.intent-option input { width: 21px; height: 21px; margin: 0; accent-color: var(--navy); flex: 0 0 auto; }
.intent-option span, .intent-option strong, .intent-option small { display: block; }
.intent-option strong { line-height: 1.3; }
.intent-option small { margin-top: 3px; color: var(--muted); font-size: 13px; line-height: 1.35; }
.field-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.field-grid--two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; font-weight: 720; }
.field input, .field textarea { width: 100%; color: var(--ink); background: #fff; border: 1px solid #a9bbc6; border-radius: 5px; }
.field input { min-height: 52px; padding: 10px 13px; }
.field textarea { min-height: 170px; padding: 13px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(23,67,100,.15); outline: none; }
.field [aria-invalid="true"] { border-color: var(--error); }
.field-error { min-height: 0; margin: 4px 0 0; color: var(--error); font-size: 14px; font-weight: 650; }
.field-error:empty { display: none; }
.optional-toggle { width: 100%; min-height: 54px; display: flex; justify-content: space-between; align-items: center; margin-top: 26px; padding: 13px 15px; color: var(--navy-dark); background: var(--sky); border: 1px solid #bdd0dc; border-radius: 5px; font-weight: 760; text-align: left; cursor: pointer; }
.optional-toggle [aria-hidden] { font-size: 24px; line-height: 1; transition: transform .2s ease; }
.optional-toggle[aria-expanded="true"] [aria-hidden] { transform: rotate(45deg); }
.optional-fields { padding-top: 22px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: 12px; margin-top: 25px; align-items: flex-start; cursor: pointer; }
.consent input { width: 21px; height: 21px; margin: 4px 0 0; accent-color: var(--navy); flex: 0 0 auto; }
.consent a { color: var(--navy-dark); font-weight: 730; }
.privacy-note { margin: 20px 0 0; padding-left: 15px; color: var(--muted); border-left: 3px solid var(--amber); font-size: 15px; }
.form-status { margin-top: 14px; font-weight: 720; }
.form-status.is-error { padding: 13px 15px; color: #73190f; background: #fff0ec; border: 1px solid #e0aa9e; border-radius: 5px; }
.button-submit { width: 100%; margin-top: 22px; font-size: 18px; }

.personal-contact { max-width: 760px; margin: 28px auto 0; padding: 34px; color: #fff; background: var(--navy-dark); text-align: center; border-radius: 0 0 46px 0; }
.personal-contact h2 { margin-bottom: 14px; font-size: 31px; }
.personal-contact p { margin-bottom: 7px; }
.contact-label { color: #f0b96f; font-size: 13px; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.contact-name { font-weight: 800; }
.personal-contact a { display: block; width: fit-content; margin: 5px auto 0; color: #fff; font-size: 19px; font-weight: 760; }

.site-footer { color: #d8e5ec; background: #0b273d; }
.footer-inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 20px; }
.footer-inner p { margin: 0; font-size: 14px; }
.footer-inner nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-inner a { font-size: 14px; }

.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

@media (max-width: 1050px) {
  .header-inner, .hero-inner, .section-inner, .footer-inner, .focus-band { width: min(100% - 36px,var(--content)); }
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 14px; }
  .hero-inner { gap: 18px 36px; }
  .hero-media { height: 555px; }
  .activity-grid, .responsibility-grid { gap: 45px; }
}

@media (max-width: 900px) {
  .header-inner { min-height: 80px; grid-template-columns: 1fr auto auto; gap: 14px; }
  .menu-button { display: inline-flex; }
  .main-nav { position: absolute; top: 100%; left: 18px; right: 18px; display: none; padding: 12px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; }
  .main-nav a { min-height: 44px; display: flex; align-items: center; padding: 7px 10px; font-size: 16px; }
  .header-logo, .header-logo img { width: 72px; }
  .hero { padding-top: 34px; }
  .hero-inner { grid-template-columns: 1fr; grid-template-areas: "intro" "image" "primary" "secondary"; gap: 20px; }
  .hero-intro { padding-top: 0; }
  .hero-media { height: auto; aspect-ratio: 16 / 9; border-radius: 14px 58px 14px 14px; }
  .hero-media::before { width: 72px; height: 72px; border-width: 8px; border-radius: 0 58px 0 0; }
  .hero-secondary { padding-bottom: 0; }
  .overview-grid, .activity-grid, .responsibility-grid, .support-inner, .trust-grid { grid-template-columns: 1fr; }
  .overview-points { grid-template-columns: 1fr; }
  .overview-points article { padding: 25px 0; border-bottom: 1px solid var(--line); }
  .overview-points article + article { padding-left: 0; border-left: 0; }
  .activity-media, .responsibility-media { min-height: 0; aspect-ratio: 16 / 10; }
  .activity-copy { order: -1; }
  .support-inner::before { left: -18px; }
  .trust-grid { gap: 38px; }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .operator-bar { min-height: 29px; padding-inline: 12px; font-size: 12px; }
  .header-inner, .hero-inner, .section-inner, .footer-inner, .focus-band { width: calc(100% - 32px); }
  .domain-mark { font-size: 20px; }
  .header-logo, .header-logo img { width: 62px; }
  .menu-button { min-height: 44px; padding: 7px 10px; }
  .menu-button > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .menu-button i { margin-left: 0; }
  .hero { padding: 24px 0 32px; }
  .hero-inner { gap: 16px; }
  .eyebrow { margin-bottom: 10px; font-size: 11px; }
  h1 { margin-bottom: 14px; font-size: clamp(33px,9.1vw,38px); }
  h2 { font-size: clamp(28px,7.5vw,33px); }
  .hero-copy { font-size: 16px; line-height: 1.48; }
  .hero-media { aspect-ratio: 16 / 8.7; border-width: 5px; }
  .hero-media img { object-position: 47% center; }
  .symbol-label { right: 8px; bottom: 8px; padding: 4px 7px; font-size: 10px; }
  .button-large { width: 100%; min-height: 55px; padding-inline: 15px; font-size: 17px; }
  .hero-primary p { margin-top: 8px; font-size: 13px; }
  .hero-secondary { flex-wrap: wrap; gap: 13px 17px; }
  .hero-secondary .button { min-height: 44px; padding-inline: 14px; }
  .focus-band { grid-template-columns: 1fr; box-shadow: none; }
  .focus-band p { padding: 16px; }
  .focus-band p + p { border-left: 0; border-top: 1px solid var(--line); }
  .overview-section, .activity-section, .responsibility-section, .support-section, .property-section, .contact-section { padding: 72px 0; }
  .trust-section { padding: 64px 0; }
  .activity-grid, .responsibility-grid, .support-inner { gap: 36px; }
  .activity-media, .responsibility-media { aspect-ratio: 4 / 3; border-radius: 42px 12px 12px 12px; }
  .responsibility-media { border-radius: 12px 12px 46px 12px; }
  .activity-media img { object-position: 42% center; }
  .responsibility-media img { object-position: 42% center; }
  .activity-list li { grid-template-columns: 1fr; gap: 3px; }
  .property-rows article { grid-template-columns: 1fr; gap: 13px; padding: 28px 0; align-items: start; }
  .property-rows article .button { width: fit-content; }
  .trust-facts { grid-template-columns: 1fr; }
  .trust-facts div { padding: 18px 0; }
  .trust-facts div + div { padding-left: 0; border-left: 0; border-top: 1px solid #9fbac9; }
  .form-intro { text-align: left; }
  form { padding: 23px 18px; }
  .intent-options { grid-template-columns: 1fr; }
  .intent-option--primary { min-height: 96px; }
  .intent-secondary { grid-template-columns: 1fr 1fr; }
  .intent-option { min-height: 92px; align-items: flex-start; padding: 14px 12px; }
  .intent-option input { margin-top: 2px; }
  .intent-option strong { font-size: 15px; }
  .intent-option small { font-size: 12px; }
  .field-grid--two { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .optional-toggle, .consent { font-size: 15px; }
  .personal-contact { padding: 28px 18px; border-radius: 0 0 35px 0; }
  .personal-contact h2 { font-size: 28px; }
  .personal-contact a { font-size: 18px; }
  .footer-inner { min-height: 0; flex-direction: column; align-items: flex-start; padding-block: 28px; }
  .footer-inner nav { justify-content: flex-start; }
}

@media (max-width: 390px) {
  .header-inner, .hero-inner, .section-inner, .footer-inner, .focus-band { width: calc(100% - 28px); }
  .domain-mark { font-size: 18px; }
  .header-inner { gap: 9px; }
  .header-logo, .header-logo img { width: 56px; }
  .hero { padding-top: 20px; }
  .hero-copy { font-size: 15.5px; line-height: 1.42; }
  .hero-media { aspect-ratio: 16 / 7.9; }
  .hero-primary p { font-size: 12.5px; }
  .intent-secondary { grid-template-columns: 1fr; }
  .intent-option { min-height: 74px; align-items: center; }
}

@media (max-width: 340px) {
  .domain-mark { font-size: 16px; }
  .domain-mark strong, .domain-mark span { padding-block: 7px; }
  .header-logo, .header-logo img { width: 52px; }
  h1 { font-size: 31px; }
  .hero-secondary { align-items: flex-start; flex-direction: column; }
  .hero-secondary .button { width: 100%; }
  .button { padding-inline: 14px; }
  .symbol-label { font-size: 9px; }
  form { padding-inline: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media (forced-colors: active) {
  .button, .intent-option, .optional-toggle { border: 2px solid currentColor; }
}
