/* =========================================================================
   LSP Express LLC
   Palette and type come from the logo: deep navy, one red accent used only
   where something is being asserted, silver hairlines from the wheel rim.
   The page alternates dark and light bands — navy hero, white body, navy
   footer — so weight carries the structure instead of boxes and borders.
   ========================================================================= */

:root {
  --navy: #0d244e;
  --navy-deep: #071731;
  --navy-mid: #14315c;
  --red: #e04241;
  --red-deep: #b93130;
  --paper: #ffffff;
  --dock: #f5f7fa;
  --line: #e2e8f1;
  --line-strong: #c6d0e0;
  --muted: #5b6b85;
  --muted-onDark: rgba(255, 255, 255, 0.68);

  --display: 'Saira Condensed', 'Arial Narrow', system-ui, sans-serif;
  --body: 'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --wrap: 1140px;
  --gutter: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.004em;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: var(--navy);
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: var(--red);
}

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

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  font-family: var(--mono);
  font-size: 13px;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.eyebrow--onDark {
  color: #ff7b6b;
}

/* ---------------------------------------------------------------- header */

.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: block;
  line-height: 0;
}

.brand img {
  width: 258px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}

.nav__link:hover {
  border-bottom-color: var(--line-strong);
}

.nav__link.is-current {
  border-bottom-color: var(--red);
}

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.btn--primary:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 15px 26px;
}

.btn--ghost:hover {
  border-color: var(--navy);
}

/* Sits on the navy hero: quiet until hovered. */
.btn--onDark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 15px 26px;
}

.btn--onDark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn--block {
  width: 100%;
}

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 82% 20%, var(--navy-mid) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 104px 0 86px;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__title {
  max-width: 27ch;
  margin: 18px 0 0;
  font-size: clamp(42px, 6.4vw, 84px);
  color: #fff;
}

.hero__lead {
  max-width: 54ch;
  margin-top: 26px;
  font-size: 19px;
  color: var(--muted-onDark);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

/* Replaces the old utility strip: the same facts, but earning their place
   inside the hero instead of crowding the logo. */
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 44px;
  margin-top: 62px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__fact {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.hero__fact span {
  display: block;
  margin-bottom: 3px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ----------------------------------------------------------- commitments */

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-top: 14px;
  text-wrap: balance;
}

.commitments {
  padding: 96px 0 104px;
}

.ledger {
  border-top: 2px solid var(--navy);
}

.ledger__item {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.18s ease;
}

.ledger__tag {
  position: relative;
  padding-top: 7px;
  padding-left: 18px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--muted);
}

/* A short red rule per row — the only decoration in the section, and it
   marks where each commitment starts. */
.ledger__tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 9px;
  height: 2px;
  background: var(--red);
}

.ledger__body {
  max-width: 66ch;
}

.ledger__title {
  font-size: 28px;
  margin-bottom: 10px;
}

.ledger__text {
  color: var(--muted);
}

.closing {
  margin-top: 52px;
  font-size: 19px;
  color: var(--muted);
}

.closing a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 1px;
}

.closing a:hover {
  color: var(--red);
}

/* --------------------------------------------------------- inner headers */

.page-head {
  background:
    radial-gradient(120% 150% at 88% 10%, var(--navy-mid) 0%, transparent 62%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 84px 0 76px;
}

.page-title {
  font-size: clamp(38px, 5vw, 62px);
  margin-top: 16px;
  color: #fff;
}

.page-lead {
  max-width: 58ch;
  margin-top: 20px;
  font-size: 18px;
  color: var(--muted-onDark);
}

/* --------------------------------------------------------------- contact */

.contact {
  padding: 72px 0 100px;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 64px;
  align-items: start;
}

.form-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  border-radius: 2px;
  padding: 34px 38px 40px;
  box-shadow: 0 24px 50px -34px rgba(13, 36, 78, 0.45);
}

.form-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.form-panel__no {
  color: var(--muted);
  letter-spacing: 0.1em;
}

.alert {
  margin-bottom: 26px;
  padding: 15px 17px;
  border-left: 3px solid var(--red);
  background: rgba(224, 66, 65, 0.07);
  font-size: 15px;
  color: var(--navy);
}

.field {
  margin-bottom: 24px;
}

.field__label {
  display: block;
  margin-bottom: 9px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
}

.field__optional {
  margin-left: 6px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: none;
}

.field__input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: #fbfcfe;
  font-family: var(--body);
  font-size: 17px;
  color: var(--navy);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.field__input:hover {
  border-color: var(--muted);
}

.field__input:focus {
  background: #fff;
  border-color: var(--navy);
  outline: 3px solid rgba(13, 36, 78, 0.13);
  outline-offset: 0;
}

.field__input--area {
  resize: vertical;
  min-height: 156px;
  line-height: 1.6;
}

.field__input.has-error {
  border-color: var(--red);
  background: #fffafa;
}

.field__error {
  margin-top: 8px;
  font-size: 14px;
  color: var(--red-deep);
}

.trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

.details {
  padding-top: 6px;
}

.details__block {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.details__block:first-child {
  padding-top: 0;
}

.details__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 7px;
}

.details__value {
  font-size: 16px;
  line-height: 1.5;
}

.details__value a {
  word-break: break-word;
}

.details__note {
  margin-top: 24px;
  padding-left: 15px;
  border-left: 2px solid var(--line-strong);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* --------------------------------------------------- thank you / errors */

.notice {
  padding: 104px 0 116px;
}

.notice__inner {
  max-width: 60ch;
}

.notice__title {
  font-size: clamp(34px, 4.5vw, 54px);
  margin-top: 14px;
}

.notice__text {
  margin-top: 20px;
  font-size: 18px;
  color: var(--muted);
}

.notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* ---------------------------------------------------------------- footer */

.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 30px;
  font-size: 15px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.7fr;
  gap: 44px;
  padding-bottom: 46px;
}

.footer__address {
  font-style: normal;
  line-height: 1.6;
}

.footer__name {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.footer__mc {
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.17em;
  color: rgba(255, 255, 255, 0.55);
}

.footer__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 15px;
}

.footer__list li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--red);
}

.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
}

/* ------------------------------------------------------------ responsive */

@media (max-width: 960px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    padding: 76px 0 68px;
  }

  .ledger__item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ledger__tag {
    padding-top: 0;
  }

  .ledger__tag::before {
    top: 9px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .brand img {
    width: 194px;
  }

  .masthead__inner {
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav {
    gap: 18px;
  }

  .nav__link {
    font-size: 15px;
  }

  .hero {
    padding: 56px 0 56px;
  }

  .hero__title {
    max-width: none;
  }

  .hero__lead,
  .page-lead,
  .notice__text,
  .closing {
    font-size: 17px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__facts {
    gap: 18px 32px;
    margin-top: 44px;
    padding-top: 24px;
  }

  .hero__fact {
    font-size: 19px;
  }

  .page-head {
    padding: 56px 0 52px;
  }

  .commitments {
    padding: 64px 0 72px;
  }

  .ledger__title {
    font-size: 24px;
  }

  .contact {
    padding: 52px 0 68px;
  }

  .form-panel {
    padding-left: 22px;
    padding-right: 22px;
  }

  .notice {
    padding: 72px 0 84px;
  }

  .btn {
    padding: 14px 26px;
    font-size: 16px;
  }

  .footer {
    padding-top: 52px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
