/* =========================================================
   Wenze Investments LLC — marketing pages design system
   Applies to: home, about, contact, office hiring, legal pages.
   NOT loaded by hiring/hiring-drivers.php or hiring/thank-you.php —
   those two pages keep /style.css and are intentionally untouched.
   ========================================================= */

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/barlow-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/barlow-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Semi Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-semi-condensed-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Semi Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-semi-condensed-latin-700-normal.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  --navy: #0b2350;        /* primary brand navy (logo: #002048) */
  --navy-deep: #061840;   /* footer / dark bands */
  --navy-soft: #163a78;   /* hover on navy */
  --red: #e4262d;         /* signal red (logo: #f82830), 4.5:1 on white */
  --red-dark: #c41f26;
  --ink: #0f1f3d;
  --muted: #56657d;
  --line: #d9e1ec;
  --surface: #f3f6fa;
  --white: #ffffff;

  --font-body: "Barlow", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Barlow Semi Condensed", "Barlow", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --section: clamp(64px, 9vw, 112px);
  --header-h: 76px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  min-width: 320px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}

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

a { color: inherit; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); }

h1 { font-size: clamp(40px, 5.2vw, 62px); font-weight: 700; line-height: 1.02; letter-spacing: -0.012em; }
h2 { font-size: clamp(32px, 3.6vw, 44px); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }
h3 { font-size: 26px; font-weight: 600; line-height: 1.2; }
h4 { font-size: 18px; font-weight: 600; line-height: 1.3; }

.lead { font-size: 20px; line-height: 1.5; color: var(--muted); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 24px;
  border-radius: var(--radius-sm); border: 2px solid transparent;
  font: 600 16px/1 var(--font-body);
  text-decoration: none; cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn-primary { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,.85); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

/* ---------- Section divider: one solid grey line (edit height/color here) ---------- */
.tape {
  height: 4px;
  background: #cfd8e3;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 100%;
}
.brand { display: flex; align-items: center; height: 100%; }
.brand { gap: 12px; text-decoration: none; }
.brand img { height: 54px; width: auto; }
.brand-name { font: 700 19px/1.05 var(--font-display); color: var(--navy); letter-spacing: .01em; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav-link, .dropdown-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  font: 500 16px/1 var(--font-body); color: var(--ink); text-decoration: none;
  background: none; border: 0; cursor: pointer;
}
.nav-link:hover, .dropdown-toggle:hover { background: var(--surface); color: var(--navy); }
.nav-link[aria-current="page"] { color: var(--navy); box-shadow: inset 0 -2px 0 var(--red); border-radius: 0; }

.dropdown { position: relative; }
.dropdown-toggle::after {
  content: ""; width: 7px; height: 7px; margin-left: 2px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 190px; padding: 6px;
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 16px 40px rgba(6,24,64,.12);
}
.dropdown-menu.open { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 12px; border-radius: 6px;
  font-weight: 500; text-decoration: none; color: var(--ink);
}
.dropdown-menu a:hover { background: var(--surface); color: var(--navy); }

.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: 12px; padding: 10px 6px;
  font: 600 16px/1 var(--font-body); color: var(--navy); text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.nav-phone svg { width: 18px; height: 18px; }
.nav-cta { margin-left: 8px; min-height: 44px; padding: 0 18px; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 9px;
  background: none; border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer;
}
.hamburger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  color: var(--white);
  padding: clamp(84px, 12vw, 156px) 0 clamp(88px, 12vw, 160px);
  background: var(--navy-deep);
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: 72% center;
}

/* Hero slideshow (home page) */
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide { opacity: 0; transition: opacity 1.2s ease; z-index: auto; }
.hero-slide.is-active { opacity: 1; }
.hero-dots {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 2;
}
.hero-dots button {
  width: 10px; height: 10px; padding: 0; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.45); transition: background-color .2s ease, transform .2s ease;
}
.hero-dots button[aria-selected="true"] { background: var(--white); transform: scale(1.25); }
.hero-dots button:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(6,24,64,.94) 0%, rgba(6,24,64,.86) 36%, rgba(6,24,64,.42) 56%, rgba(6,24,64,.14) 78%, rgba(6,24,64,.08) 100%),
    linear-gradient(180deg, rgba(6,24,64,.08) 0%, rgba(6,24,64,0) 40%, rgba(6,24,64,.45) 100%);
}
.hero-content { max-width: 720px; }
.hero-kicker { font: 600 16px/1.3 var(--font-body); color: rgba(255,255,255,.78); margin-bottom: 20px; }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero .lead { color: rgba(255,255,255,.86); margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* one orchestrated entrance on load */
.hero-content > * { opacity: 0; transform: translateY(14px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-content > :nth-child(2) { animation-delay: .08s; }
.hero-content > :nth-child(3) { animation-delay: .16s; }
.hero-content > :nth-child(4) { animation-delay: .24s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Manifest strip (key facts) ---------- */
.manifest { background: var(--white); padding: 20px 0; }
.manifest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.manifest-cell { padding: 30px 32px; background: #eef2f7; border: 1px solid #cfd8e3; border-radius: 14px; }
.manifest-cell strong {
  display: block; font: 700 clamp(34px, 3.2vw, 44px)/1 var(--font-display);
  color: var(--navy); letter-spacing: -0.01em; margin-bottom: 8px;
}
.manifest-cell span { display: block; color: var(--muted); font-size: 16px; line-height: 1.4; max-width: 26ch; }

/* ---------- Sections ---------- */
.section { padding: var(--section) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { margin-bottom: 14px; }

/* Services tiles */
.services { background: var(--surface); }
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px 36px;
  transition: border-color .2s ease;
}
.tile:hover { border-color: var(--navy); }
.tile h3 { margin: 26px 0 10px; }
.tile p { color: var(--muted); max-width: 34ch; }

/* shield badge — echoes the logo's shield */
.badge {
  display: grid; place-items: center;
  width: 58px; height: 64px; color: var(--white); background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 62%, 50% 100%, 0 62%);
  transition: background-color .2s ease;
}
.badge svg { width: 26px; height: 26px; transform: translateY(-4px); }
.tile:hover .badge { background: var(--red); }

/* Split (who we are) */
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.pin {
  position: absolute; left: 20px; bottom: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.96); color: var(--navy);
  font: 600 15px/1 var(--font-body);
}
.pin svg { width: 16px; height: 16px; color: var(--red); }
.split-text h2 { margin-bottom: 18px; max-width: 20ch; }
.split-text p { color: var(--muted); font-size: 18px; max-width: 52ch; }
.split-text .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* Hiring band */
.hiring { background: var(--navy); color: var(--white); }
.hiring h2, .hiring h3 { color: var(--white); }
.hiring .lead { color: rgba(255,255,255,.78); }
.hire-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.hire-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 36px 34px; border-radius: var(--radius);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
}
.hire-card p { color: rgba(255,255,255,.84); max-width: 46ch; }
.hire-card small { color: rgba(255,255,255,.6); font-size: 14px; }
.hire-card .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.82); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px;
  padding: 64px 0 52px;
}
.footer-brand img { height: 72px; width: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 34ch; font-size: 16px; }
.footer h4 { color: var(--white); margin-bottom: 16px; font-family: var(--font-body); font-size: 15px; letter-spacing: .01em; }
.footer-col a { display: block; padding: 6px 0; color: rgba(255,255,255,.82); text-decoration: none; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.22); color: var(--white);
  transition: background-color .18s ease, border-color .18s ease;
}
.socials a:hover { background: var(--red); border-color: var(--red); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: 14px; color: rgba(255,255,255,.62); }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; }
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-phone { display: none; }
}

@media (max-width: 979px) {
  .hamburger { display: flex; }
  .nav {
    display: none; position: absolute; top: 100%; left: calc(-1 * var(--gutter)); right: calc(-1 * var(--gutter));
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 10px var(--gutter) 18px;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(6,24,64,.12);
  }
  .nav.open { display: flex; }
  .nav-link, .dropdown-toggle { width: 100%; justify-content: space-between; padding: 14px 12px; font-size: 17px; }
  .nav-link[aria-current="page"] { box-shadow: inset 3px 0 0 var(--red); border-radius: var(--radius-sm); }
  .dropdown-menu { position: static; display: none; box-shadow: none; border: 0; padding: 0 0 6px 24px; }
  .dropdown-menu a { padding: 12px; font-size: 16px; }
  .nav-phone { display: inline-flex; margin: 8px 12px 0; }
  .nav-cta { margin: 8px 0 0; }

  .tiles { grid-template-columns: repeat(2, 1fr); }
  .tile:last-child { grid-column: 1 / -1; }
  .tile:last-child p { max-width: 60ch; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
}

@media (max-width: 760px) {
  .hero-media { object-position: 62% center; }
  .manifest-grid { grid-template-columns: 1fr; }
  .manifest-cell { padding: 24px 24px; }
  .manifest-cell span { max-width: none; }
  .split { grid-template-columns: 1fr; }
  .split-text h2 { max-width: none; }
  .hire-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .lead { font-size: 18px; }
  h3 { font-size: 23px; }
  .tiles { grid-template-columns: 1fr; }
  .tile, .hire-card { padding: 28px 24px 30px; }
  .brand img { height: 46px; }
  .brand-name { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 52px 0 40px; }
  .footer-bottom .container { flex-direction: column; }
}

@media (max-width: 360px) {
  .brand-name { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-content > * { animation: none; opacity: 1; transform: none; }
  .hero-slide { transition: none; }
  * { transition-duration: 0s !important; }
}


/* =========================================================
   Page-level components used by About / Contact / Office / Legal
   ========================================================= */

/* ---------- Page hero (compact) ---------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  color: var(--white); background: var(--navy-deep);
  padding: clamp(56px, 8vw, 104px) 0 clamp(60px, 8vw, 108px);
}
.page-hero .hero-media { object-position: center; }
.page-hero .hero-scrim {
  background:
    linear-gradient(90deg, rgba(6,24,64,.94) 0%, rgba(6,24,64,.84) 45%, rgba(6,24,64,.40) 100%),
    linear-gradient(180deg, rgba(6,24,64,.05) 0%, rgba(6,24,64,.45) 100%);
}
.page-hero .hero-content { max-width: 760px; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(36px, 4.6vw, 56px); }
.page-hero .hero-sub { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2.2vw, 26px); line-height: 1.25; color: rgba(255,255,255,.92); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,.84); margin-bottom: 0; }
.page-hero--plain { padding: clamp(44px, 6vw, 72px) 0; }

/* photo band (office page: image carries its own text) */
.photo-band { position: relative; height: clamp(240px, 38vw, 480px); overflow: hidden; background: var(--navy-deep); }
.photo-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }

/* ---------- Small label above a heading (kept from original copy) ---------- */
.section-label { display: block; font: 600 15px/1.3 var(--font-body); color: var(--red); margin-bottom: 14px; }

/* ---------- Tiles: 2-column variant ---------- */
.tiles--2 { grid-template-columns: repeat(2, 1fr); }
.tiles--2 .tile p { max-width: 52ch; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: var(--white); }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band .lead { color: rgba(255,255,255,.8); }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 3.4vw, 40px);
}
.form-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 48px); align-items: start; }
.form-grid--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group, .field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.row .form-group, .row .field { margin-bottom: 18px; }
.form-card label, .hiring-form label { font-weight: 600; font-size: 15px; color: var(--ink); }
.form-card input:not([type="checkbox"]):not([type="hidden"]),
.form-card select, .form-card textarea,
.hiring-form input:not([type="checkbox"]):not([type="hidden"]),
.hiring-form select {
  width: 100%; min-height: 50px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink);
  font: 500 16px/1.4 var(--font-body);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-card textarea { min-height: 150px; resize: vertical; }
.form-card select, .hiring-form select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230b2350' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus,
.hiring-form input:focus, .hiring-form select:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,35,80,.14);
}
.form-card input::placeholder, .form-card textarea::placeholder, .hiring-form input::placeholder { color: #8b96a8; }
input.error, textarea.error, select.error { border-color: var(--red) !important; box-shadow: 0 0 0 3px rgba(228,38,45,.14) !important; }

.hiring-form input[type="file"] {
  padding: 10px 12px; min-height: 0; font-weight: 500; cursor: pointer;
}
.hiring-form input[type="file"]::file-selector-button {
  margin-right: 12px; padding: 8px 14px; border: 0; border-radius: 6px;
  background: var(--navy); color: var(--white); font: 600 14px/1 var(--font-body); cursor: pointer;
}
.hiring-form input[type="file"]::file-selector-button:hover { background: var(--navy-soft); }

.checkbox-label { display: flex; align-items: flex-start; gap: 12px; font-weight: 400 !important; font-size: 15px !important; color: var(--muted) !important; line-height: 1.5; cursor: pointer; }
.checkbox-label input[type="checkbox"] { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--red); }
.form-note { color: var(--muted); font-size: 14px; margin-top: -6px; margin-bottom: 18px; }

.form-card .btn, .hiring-form .btn { width: 100%; margin-top: 6px; }
.btn:disabled, .btn[disabled] { background: #c9d1de; border-color: #c9d1de; color: #5c6a80; cursor: not-allowed; }
.btn:disabled:hover { background: #c9d1de; border-color: #c9d1de; color: #5c6a80; }

.success-message { display: none; margin-top: 14px; padding: 12px 14px; border-radius: var(--radius-sm); background: #eaf7ef; color: #1c6b3a; font-weight: 600; font-size: 15px; }
.success-message#errorMessage { background: #fdeeee; }

/* ---------- Contact info column ---------- */
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.info-box {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); color: var(--ink); text-decoration: none; font-weight: 500;
  transition: border-color .18s ease;
}
a.info-box:hover { border-color: var(--navy); }
.info-box .icon { display: grid; place-items: center; flex: 0 0 auto; width: 44px; height: 44px; border-radius: 10px; background: var(--surface); color: var(--navy); }
.info-box .icon svg { width: 20px; height: 20px; }
.info-box p { margin: 0; }
.info-box--social { flex-direction: column; align-items: flex-start; gap: 12px; }
.info-box--social h4 { font-family: var(--font-body); font-size: 15px; color: var(--ink); }
.info-box--social .socials { margin-top: 0; }
.info-box--social .socials a { color: var(--navy); border-color: var(--line); }
.info-box--social .socials a:hover { color: var(--white); }

/* ---------- Legal prose ---------- */
.legal-content { max-width: 760px; margin: 0 auto; padding: clamp(40px, 6vw, 72px) 0; line-height: 1.7; }
.legal-content h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 8px; }
.legal-content h2 { font-size: 24px; margin: 36px 0 10px; }
.legal-content p { margin-bottom: 14px; color: #2b3a54; }
.legal-content .legal-meta { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
.legal-content a { color: var(--navy); font-weight: 600; }

/* ---------- Responsive additions ---------- */
@media (max-width: 979px) {
  .tiles--2 { grid-template-columns: 1fr; }
  .tiles--2 .tile:last-child { grid-column: auto; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .row { grid-template-columns: 1fr; gap: 0; }
}
