/* ============================================================
   TSB Travel — Marketing Website
   Design tokens & component styles (from design handoff).
   Reimplemented as vanilla CSS from the design-system prototype.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand blues */
  --tsb-navy: #1e3a5f;
  --tsb-navy-800: #16304f;
  --tsb-blue: #1A6BBF;
  --tsb-blue-500: #2980b9;
  --tsb-sky: #29ABE2;
  --tsb-sky-200: #C8E0F5;
  --tsb-sky-50: #eff6ff;

  /* Accent / semantic */
  --tsb-red: #E8001C;
  --svc-green: #5AB54F;
  --svc-orange: #F5A623;
  --svc-sky: #29ABE2;
  --svc-red: #EF4423;
  --success: #16a34a;
  --success-bg: #f0fdf4;
  --success-bd: #bbf7d0;
  --danger: #dc2626;
  --warning: #d97706;
  --info: #2980b9;

  /* Neutrals / ink */
  --ink-900: #1e293b;
  --ink-700: #475569;
  --ink-400: #94a3b8;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --surface: #ffffff;
  --surface-2: #f8f9fa;
  --bg-app: #f0f2f5;

  /* Gradients */
  --grad-sky: linear-gradient(180deg, #eaf6ff 0%, #c8e0f5 100%);
  --grad-grandbar: linear-gradient(135deg, #1e3a5f, #2980b9);
  --grad-hero: linear-gradient(135deg, #1f67b4 0%, #3a86cf 55%, #4098d2 100%);

  /* Radius */
  --r-pill: 999px;

  /* Shadow */
  --shadow-card: 0 6px 20px rgba(30, 58, 95, .06);

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);

  /* Fonts */
  --font-sans: 'Sarabun', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--tsb-blue-500); text-decoration: none; }
a:hover { color: var(--tsb-navy); }
::selection { background: var(--tsb-sky-200); }
input::placeholder, textarea::placeholder { color: var(--ink-400); }
img { max-width: 100%; }

/* Visible keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #dbeafe;
  outline-offset: 2px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-1120 { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons (design-system) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  border: none;
  border-radius: 9px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: filter .18s var(--ease), background .18s var(--ease),
    border-color .18s var(--ease), color .18s var(--ease);
}
.btn-primary { background: var(--tsb-blue); color: #fff; }
.btn-primary:hover { filter: brightness(.95); color: #fff; }
.btn-secondary {
  background: #fff; color: var(--tsb-navy);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover { background: var(--surface-2); color: var(--tsb-navy); }
.btn-outline {
  background: transparent; color: var(--tsb-blue);
  border: 1.5px solid var(--tsb-blue);
}
.btn-outline:hover { background: var(--tsb-sky-50); color: var(--tsb-blue); }
.btn-sm { height: 28px; padding: 0 14px; font-size: 12.5px; border-radius: 8px; }
.btn-lg { height: 40px; padding: 0 22px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-header { height: 34px; padding: 0 16px; font-size: 13.5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(30, 58, 95, .10); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  margin-right: auto;
  background: none;
  border: none;
  padding: 0;
}
.brand img { height: 44px; width: auto; display: block; }
.brand-wordmark {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--tsb-blue);
  line-height: 1.05;
}
.main-nav { display: flex; align-items: center; gap: 22px; }
.nav-link {
  color: var(--ink-700);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 6px 1px;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  font-family: var(--font-sans);
  transition: color .15s var(--ease);
}
.nav-link:hover { color: var(--tsb-navy); }
.nav-link.active {
  color: var(--tsb-navy);
  font-weight: 800;
  border-bottom-color: var(--tsb-blue);
}
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 2px;
}
.lang-btn {
  cursor: pointer;
  border: none;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-sans);
  background: transparent;
  color: var(--ink-700);
  transition: all .15s var(--ease);
}
.lang-btn.active { background: var(--tsb-navy); color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--grad-hero); }
.hero-img {
  position: absolute; inset: 0;
  background: url('assets/hero-plane.png') center right / cover no-repeat;
}
.hero-scrim-x {
  position: absolute; inset: 0;
  background: linear-gradient(95deg,
    rgba(16, 48, 92, .66) 0%,
    rgba(20, 58, 108, .4) 32%,
    rgba(20, 58, 108, .05) 56%,
    rgba(20, 58, 108, 0) 72%);
}
.hero-scrim-b {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 58, 108, 0) 74%,
    rgba(255, 255, 255, .14) 100%);
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 86px 24px 116px;
}
.hero-content { max-width: 600px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: var(--r-pill);
  letter-spacing: .2px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, .22);
}
.hero-title {
  font-size: 47px;
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
  margin: 18px 0 0;
  white-space: pre-line;
  letter-spacing: -.5px;
  text-shadow: 0 2px 24px rgba(15, 42, 80, .35);
}
.hero-text {
  font-size: 17px;
  line-height: 1.62;
  color: rgba(255, 255, 255, .92);
  margin: 20px 0 0;
  max-width: 500px;
  text-shadow: 0 1px 12px rgba(15, 42, 80, .3);
}
.hero-ctas { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero-btn {
  height: 48px;
  padding: 0 24px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: filter .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.hero-btn-primary {
  border: none;
  background: #fff;
  color: var(--tsb-navy);
  box-shadow: 0 10px 26px rgba(15, 42, 80, .28);
}
.hero-btn-primary:hover { filter: brightness(.96); }
.hero-btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}
.hero-btn-secondary:hover { background: rgba(255, 255, 255, .18); border-color: #fff; }
.hero-trust { display: flex; gap: 22px; margin-top: 38px; flex-wrap: wrap; }
.trust-item {
  display: flex; gap: 7px; align-items: center;
  font-size: 13px; font-weight: 600; color: #fff;
}
.trust-item .ico { color: #8ce3b0; display: inline-flex; font-size: 17px; }

/* ---------- Quick-quote bar ---------- */
.quotebar {
  max-width: 1120px;
  margin: -58px auto 0;
  position: relative;
  z-index: 5;
  padding: 0 24px;
  scroll-margin-top: 80px;
}
.quotebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(30, 58, 95, .13);
  padding: 24px 26px;
}
.quotebar-title {
  display: flex; align-items: center; gap: 9px; margin-bottom: 16px;
}
.quotebar-title .ico { display: inline-flex; color: var(--tsb-blue); font-size: 20px; }
.quotebar-title strong { font-size: 16px; color: var(--tsb-navy); white-space: nowrap; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 14px;
  align-items: end;
}
.quote-submit-row { margin-top: 16px; display: flex; justify-content: flex-end; }

/* ---------- Field / label / input ---------- */
.field { display: block; }
.field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.input, .select, .textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: #fff;
  outline: none;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.input, .select { height: 42px; padding: 0 12px; }
.select { cursor: pointer; padding: 0 10px; }
.textarea { padding: 11px 13px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--tsb-blue);
  box-shadow: 0 0 0 3px #dbeafe;
}
.input-lg, .select-lg { height: 44px; padding: 0 13px; }
.select-lg { padding: 0 11px; }

/* Success strips */
.success-strip {
  display: flex; align-items: center; gap: 12px;
  background: var(--success-bg);
  border: 1px solid var(--success-bd);
  color: var(--success);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 14.5px;
  font-weight: 600;
}
.success-strip .ico { display: inline-flex; font-size: 22px; }

/* ---------- Section headers ---------- */
.section { max-width: 1200px; margin: 0 auto; padding: 90px 24px 24px; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 46px; }
.section-head.left { text-align: left; max-width: 640px; margin: 0; }
.kicker {
  font-size: 13px; font-weight: 800; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--tsb-blue);
}
.h2 {
  font-size: 34px; font-weight: 800; color: var(--tsb-navy);
  margin: 12px 0 0; letter-spacing: -.4px;
}
.section-lead {
  font-size: 16px; color: var(--ink-700); margin: 14px 0 0; line-height: 1.6;
}

/* ---------- Services grid (Home) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(30, 58, 95, .13);
  border-color: var(--tsb-sky-200);
}
.icon-tile {
  width: 56px; height: 56px; border-radius: 15px;
  background: var(--tsb-sky-50); color: var(--tsb-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex: 0 0 auto;
}
.service-card h3 { font-size: 19px; font-weight: 800; color: var(--tsb-navy); margin: 20px 0 0; }
.service-card p { font-size: 14px; color: var(--ink-700); line-height: 1.6; margin: 9px 0 0; }
.learn-more {
  color: var(--tsb-blue-500); font-weight: 700; font-size: 13.5px;
  display: inline-flex; gap: 6px; align-items: center; margin-top: 16px;
}
.learn-more .ico { font-size: 16px; display: inline-flex; }

/* ---------- Why TSB band ---------- */
.why-band { background: var(--grad-sky); margin-top: 76px; padding: 82px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.value-tile {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--tsb-navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.value-card h3 { font-size: 16px; font-weight: 800; color: var(--tsb-navy); margin: 16px 0 0; }
.value-card p { font-size: 13.5px; color: var(--ink-700); line-height: 1.55; margin: 7px 0 0; }

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 44px;
}
.stat-cell { background: #fff; padding: 30px 18px; text-align: center; }
.stat-value {
  font-family: var(--font-mono); font-size: 36px; font-weight: 800;
  color: var(--tsb-navy); line-height: 1;
}
.stat-label { font-size: 13px; color: var(--ink-700); margin-top: 8px; font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-grandbar); padding: 70px 24px; }
.cta-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.cta-inner h2 { font-size: 32px; font-weight: 800; color: #fff; margin: 0; letter-spacing: -.3px; }
.cta-inner p { font-size: 16px; color: var(--tsb-sky-200); margin: 14px 0 26px; }
.cta-btn {
  height: 50px; padding: 0 30px; border: none; border-radius: 9px;
  background: #fff; color: var(--tsb-navy);
  font-size: 15.5px; font-weight: 800; font-family: var(--font-sans);
  cursor: pointer; transition: filter .18s var(--ease);
}
.cta-btn:hover { filter: brightness(.96); }

/* ---------- Contact ---------- */
.contact-section {
  max-width: 1120px; margin: 0 auto; padding: 88px 24px; scroll-margin-top: 80px;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 34px; align-items: start;
}
.office-card { background: var(--tsb-navy); border-radius: 16px; padding: 28px; color: #fff; }
.office-card .office-title { font-size: 18px; font-weight: 800; }
.office-divider { height: 1px; background: rgba(255, 255, 255, .15); margin: 18px 0; }
.office-rows { display: flex; flex-direction: column; gap: 18px; }
.office-row { display: flex; gap: 13px; align-items: flex-start; }
.office-row.center { align-items: center; }
.office-row .ico { display: inline-flex; color: var(--tsb-sky); font-size: 20px; margin-top: 1px; }
.office-row span.txt { font-size: 14px; line-height: 1.55; color: #dbe6f4; white-space: pre-line; }
.office-row span.txt.nowrap { white-space: normal; }
.office-map {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 700; color: var(--tsb-sky);
  text-decoration: none; margin-left: 33px;
}
.office-map .ico { font-size: 16px; display: inline-flex; }
.office-line {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  display: flex; align-items: center; gap: 10px;
}
.office-line .label { font-size: 9px; font-weight: 800; letter-spacing: 1.4px; color: var(--tsb-sky); }
.office-line .id { font-size: 14px; font-weight: 700; color: #fff; }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 12px 36px rgba(30, 58, 95, .09); padding: 30px;
}
.form-stack { display: flex; flex-direction: column; gap: 16px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 32px 8px;
}
.contact-success .check-circle {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--success-bg); color: var(--success);
  display: flex; align-items: center; justify-content: center; font-size: 34px;
}
.contact-success p {
  font-size: 15.5px; color: var(--ink-900); line-height: 1.6;
  margin: 20px 0 0; max-width: 340px; font-weight: 600;
}

/* ---------- Page header bands (Services / About) ---------- */
.page-band { background: var(--grad-sky); padding: 66px 24px 60px; }
.page-band-inner { max-width: 1200px; margin: 0 auto; }
.page-h1 {
  font-size: 40px; font-weight: 800; color: var(--tsb-navy);
  margin: 12px 0 0; letter-spacing: -.5px;
}
.page-lead {
  font-size: 16.5px; color: var(--ink-700); margin: 14px 0 0;
  line-height: 1.6; max-width: 640px;
}

/* ---------- Services page ---------- */
.svc-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 22px;
}
.svc-list-card {
  display: flex; gap: 20px; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 26px; box-shadow: var(--shadow-card);
}
.svc-list-card h3 { font-size: 19px; font-weight: 800; color: var(--tsb-navy); margin: 0; }
.svc-list-card p { font-size: 14px; color: var(--ink-700); line-height: 1.6; margin: 8px 0 14px; }
.feat-list { display: flex; flex-direction: column; gap: 7px; }
.feat {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; font-weight: 600; color: var(--tsb-navy);
}
.feat .ico { color: var(--svc-green); display: inline-flex; font-size: 15px; }

/* ---------- Popular routes ---------- */
.routes-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 16px; margin-bottom: 26px;
}
.routes-head .h2sm { font-size: 30px; font-weight: 800; color: var(--tsb-navy); margin: 10px 0 0; }
.chips { display: flex; gap: 9px; flex-wrap: wrap; }
.chip {
  cursor: pointer; border: 1px solid var(--line-strong); background: #fff;
  color: var(--ink-700); padding: 8px 17px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 700; font-family: var(--font-sans);
  transition: all .18s var(--ease);
}
.chip:hover { border-color: var(--tsb-blue); color: var(--tsb-navy); }
.chip.active { background: var(--tsb-navy); color: #fff; border-color: var(--tsb-navy); }
.routes-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px;
}
.route-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.route-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(30, 58, 95, .12); }
.route-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.route-card h3 { font-size: 18px; font-weight: 800; color: var(--tsb-navy); margin: 0; }
.region-pill {
  font-size: 11px; font-weight: 700; color: var(--tsb-blue);
  background: var(--tsb-sky-50); padding: 4px 10px; border-radius: var(--r-pill);
  white-space: nowrap;
}
.route-note { font-size: 12.5px; color: var(--ink-400); margin: 6px 0 18px; }
.route-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.route-from { font-size: 11px; color: var(--ink-400); font-weight: 600; }
.route-price { font-family: var(--font-mono); font-size: 22px; font-weight: 800; color: var(--tsb-navy); }

/* ---------- About page ---------- */
.about-story { max-width: 1120px; margin: 0 auto; padding: 70px 24px; }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.story-grid h2 {
  font-size: 28px; font-weight: 800; color: var(--tsb-navy);
  margin: 0 0 16px; letter-spacing: -.3px;
}
.story-grid p { font-size: 15px; color: var(--ink-700); line-height: 1.7; margin: 0 0 14px; }
.story-grid p:last-child { margin: 0; }
.story-img {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 18px 44px rgba(30, 58, 95, .14); border: 1px solid var(--line);
}
.story-img img { width: 100%; height: 340px; object-fit: cover; object-position: top right; display: block; }
.about-why { background: var(--surface-2); padding: 76px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-why-head { text-align: center; max-width: 600px; margin: 0 auto 42px; }
.about-why-head h2 { font-size: 30px; font-weight: 800; color: var(--tsb-navy); margin: 0; }
.about-stats { max-width: 1200px; margin: 0 auto; padding: 70px 24px; }
.about-stats .stat-strip { margin-top: 0; }
.about-stats .stat-cell { padding: 32px 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--tsb-navy); color: #b9c8dc; padding: 56px 24px 30px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px;
}
.footer-brand-name { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: .3px; }
.footer-brand-tag { font-size: 10px; font-weight: 700; letter-spacing: 1.6px; color: var(--tsb-sky); margin-top: 4px; }
.footer-blurb { font-size: 13px; line-height: 1.6; margin: 16px 0 0; max-width: 280px; color: #94a9c4; }
.footer-col-title {
  font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: #fff; margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 13.5px; color: #b9c8dc; cursor: pointer;
  background: none; border: none; padding: 0; text-align: left; font-family: var(--font-sans);
}
.footer-link:hover { color: #fff; }
.footer-contact { font-size: 13.5px; line-height: 1.7; color: #b9c8dc; white-space: pre-line; }
.footer-contact-line { font-size: 13.5px; color: #b9c8dc; margin-top: 10px; }
.footer-bottom {
  max-width: 1200px; margin: 34px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12.5px; color: #7d92b0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-title { font-size: 38px; }
  .hero-inner { padding: 70px 24px 96px; }
  .contact-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 64px 24px 24px; }
}
@media (max-width: 640px) {
  .header-inner { gap: 12px 16px; }
  .main-nav { gap: 16px; order: 3; width: 100%; justify-content: flex-start; }
  .hero-title { font-size: 32px; }
  .h2 { font-size: 28px; }
  .page-h1 { font-size: 32px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .form-row2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .quotebar { margin-top: -40px; }
}
