:root {
  --bg: #F6F7F8;
  --navy: #14213D;
  --wheat: #FCA311;
  --sky: #8ECDE6;
  --ink: #1E2530;
  --white: #ffffff;
  --sky-tint: #EAF5FA;
  --line: #DDE3E8;
  --muted: #5B6572;
  --radius: 12px;
  --horizon: 44px;
  --shadow: 0 10px 30px rgba(20, 33, 61, 0.10);
  --font-display: 'Big Shoulders Display', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Rubik', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

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

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--wheat); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.container { width: min(1120px, 92%); margin: 0 auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff; padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: #E8ECF3;
  font-size: 13px;
  letter-spacing: 1.5px;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 8px 0;
}
.topbar__loc { text-transform: uppercase; font-weight: 500; }
.topbar__phone {
  color: var(--wheat); font-weight: 600; letter-spacing: 1px; white-space: nowrap;
}
.topbar__phone:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px; flex: 0 0 auto;
  background: var(--wheat);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  line-height: 1;
}
.brand__name span { color: var(--wheat); }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav__links { display: flex; gap: 24px; list-style: none; }
.site-nav__links a {
  font-weight: 500; font-size: 15px; color: var(--ink);
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  color: var(--navy); border-bottom-color: var(--wheat);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600; font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--outline { background: transparent; color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: #0D1730; border-color: #0D1730; color: #fff; }
.btn--wheat { background: var(--wheat); border-color: var(--wheat); color: var(--navy); }
.btn--wheat:hover { background: #E8940A; border-color: #E8940A; color: var(--navy); }

.nav-toggle {
  display: none;
  background: none; border: 2px solid var(--navy); border-radius: 8px;
  padding: 8px 10px; cursor: pointer;
}
.nav-toggle__bar {
  display: block; width: 22px; height: 2px; background: var(--navy);
  margin: 4px 0;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--sky-tint) 0%, #DDEEF6 100%);
  border-radius: 0 0 var(--horizon) var(--horizon);
  padding: 64px 0 0;
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--navy);
  background: rgba(252, 163, 17, 0.18);
  border-left: 4px solid var(--wheat);
  padding: 6px 14px; border-radius: 0 8px 8px 0;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 800;
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--wheat); }
.hero__lead { font-size: 18px; color: var(--muted); max-width: 52ch; margin-bottom: 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__figure { margin: 0; }
.hero__frame {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  border: 6px solid #fff;
  border-bottom: none;
  box-shadow: var(--shadow);
}
.hero__frame img { width: 100%; }
.hero__caption {
  background: #fff;
  border: 6px solid #fff; border-top: none;
  border-radius: 0;
  font-size: 13.5px; color: var(--muted);
  padding: 10px 6px;
}

/* ---------- Stats strip ---------- */
.stats {
  background: var(--navy);
  padding: 34px 0;
}
.stats__row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  text-align: center;
}
.stats__item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 28px);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--wheat);
  padding: 6px 10px;
}
.stats__item small {
  display: block;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400; letter-spacing: 0.5px;
  text-transform: none;
  color: #B9C3D6;
  margin-top: 4px;
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section--curve { border-radius: var(--horizon) var(--horizon) 0 0; margin-top: -22px; }
.section--sky { background: var(--sky-tint); }
.section--white { background: var(--white); }

.section__head { max-width: 640px; margin-bottom: 40px; }
.section__head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 12px; }
.section__head p { color: var(--muted); }
.eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--navy);
  border-left: 4px solid var(--wheat); padding-left: 10px; margin-bottom: 14px;
}

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--wheat);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: 0 4px 14px rgba(20, 33, 61, 0.05);
}
.section--white .card { background: var(--bg); }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--muted); }
.card__icon {
  width: 40px; height: 40px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sky-tint); border-radius: 10px;
}

/* ---------- Split blocks ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}
.split__body h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 14px; }
.split__body p { color: var(--muted); margin-bottom: 14px; }
.split__body ul { list-style: none; margin: 18px 0 6px; }
.split__body li {
  padding: 8px 0 8px 30px; position: relative; color: var(--ink); font-size: 15px;
}
.split__body li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 16px; height: 16px; border-radius: 4px;
  background: var(--wheat);
}
.split--reverse .split__media { order: 2; }
.split--reverse .split__body { order: 1; }
.split__caption {
  font-size: 13.5px; color: var(--muted); margin-top: 10px;
}

/* ---------- Image band ---------- */
.band { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.band figure { margin: 0; }
.band img {
  border-radius: var(--radius); box-shadow: var(--shadow); width: 100%;
}
.band figcaption {
  margin-top: 10px; font-size: 14px; color: var(--muted);
  border-left: 4px solid var(--wheat); padding-left: 12px;
}

/* ---------- Process rail ---------- */
.rail {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  counter-reset: step;
}
.rail__step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.rail__disc {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--wheat);
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.rail__step h3 { font-size: 21px; margin-bottom: 8px; }
.rail__step p { font-size: 14.5px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--wheat);
  border-radius: var(--horizon) var(--horizon) 0 0;
  padding: 60px 0;
}
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--navy); font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 8px; }
.cta-band p { color: #4A3A10; max-width: 56ch; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--sky-tint) 0%, #E3F1F8 100%);
  border-radius: 0 0 var(--horizon) var(--horizon);
  padding: 52px 0;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 10px; }
.page-hero p { color: var(--muted); max-width: 62ch; }

/* ---------- Prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); margin: 34px 0 12px; }
.prose h3 { font-size: 20px; margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--ink); }
.prose ul { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
.prose .updated {
  display: inline-block; background: var(--sky-tint);
  border-left: 4px solid var(--sky);
  padding: 8px 14px; border-radius: 0 8px 8px 0;
  font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 24px;
}
.policy-table { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 14.5px; }
.policy-table th, .policy-table td {
  border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top;
}
.policy-table th { background: var(--sky-tint); color: var(--navy); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-card {
  background: var(--white); border: 1px solid var(--line);
  border-top: 4px solid var(--wheat); border-radius: var(--radius);
  padding: 28px; box-shadow: 0 4px 14px rgba(20, 33, 61, 0.05);
}
.info-card h2 { font-size: 24px; margin-bottom: 14px; }
.info-card dl { margin: 0; }
.info-card dt {
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: 16px;
}
.info-card dd { margin: 4px 0 0; font-size: 15.5px; }
.info-card a { font-weight: 600; }

.contact-form {
  background: var(--white); border: 1px solid var(--line);
  border-top: 4px solid var(--wheat); border-radius: var(--radius);
  padding: 28px; box-shadow: 0 4px 14px rgba(20, 33, 61, 0.05);
}
.contact-form h2 { font-size: 24px; margin-bottom: 6px; }
.contact-form .form-note { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block; font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--navy); margin-bottom: 6px;
}
.form-row input, .form-row textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); color: var(--ink);
}
.form-row input:focus, .form-row textarea:focus {
  outline: 2px solid var(--sky); border-color: var(--sky); background: #fff;
}
.form-row textarea { min-height: 130px; resize: vertical; }

.map-wrap { margin-top: 44px; }
.map-embed { width: 100%; border: 0; min-height: 360px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy); color: #C6CEE0;
  border-radius: var(--horizon) var(--horizon) 0 0;
  margin-top: 40px;
  padding: 56px 0 0;
  font-size: 14.5px;
}
.site-footer a { color: #E8ECF3; }
.site-footer a:hover { color: var(--wheat); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 40px;
}
.footer-grid h3 {
  color: var(--wheat); font-size: 17px; letter-spacing: 2px; margin-bottom: 14px;
}
.footer-brand__name {
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  text-transform: uppercase; color: #fff; letter-spacing: 1px; margin-bottom: 10px;
}
.footer-brand p { color: #9FAAC2; max-width: 34ch; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer address { font-style: normal; line-height: 1.8; }
.footer-small {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: #8B96AE;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 500;
  background: var(--navy); color: #E8ECF3;
  box-shadow: 0 -8px 24px rgba(20, 33, 61, 0.35);
  padding: 16px 0;
}
.cookie-banner__inner {
  width: min(1120px, 92%); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cookie-banner p { font-size: 14px; max-width: 70ch; }
.cookie-banner a { color: var(--wheat); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  padding: 10px 22px; border-radius: var(--radius); cursor: pointer;
  border: 2px solid transparent;
}
.cookie-btn--accept { background: var(--wheat); color: var(--navy); border-color: var(--wheat); }
.cookie-btn--accept:hover { background: #E8940A; }
.cookie-btn--decline { background: transparent; color: #E8ECF3; border-color: #4A5670; }
.cookie-btn--decline:hover { border-color: #E8ECF3; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid, .split, .split--reverse, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
  .split--reverse .split__body { order: 1; }
  .cards, .rail { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .site-nav { position: relative; }
  .site-nav__links {
    display: none;
    position: absolute; top: calc(100% + 14px); right: 0;
    background: var(--white);
    border: 1px solid var(--line); border-top: 4px solid var(--wheat);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex-direction: column; gap: 0;
    min-width: 220px; padding: 8px 0;
  }
  .site-nav__links.open { display: flex; }
  .site-nav__links li { border-bottom: 1px solid var(--line); }
  .site-nav__links li:last-child { border-bottom: none; }
  .site-nav__links a { display: block; padding: 12px 20px; border-bottom: none; }
  .header-cta { display: none; }
  .stats__row { grid-template-columns: 1fr; gap: 14px; }
  .band, .cards, .rail { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .topbar__inner { justify-content: center; flex-wrap: wrap; text-align: center; }
  .footer-small { flex-direction: column; }
}
