:root {
  --ink: #0b2f4a;
  --muted: #496572;
  --paper: #f4f1e8;
  --white: #ffffff;
  --red: #d9473f;
  --teal: #18a7a9;
  --navy: #0b2f4a;
  --cream: #f4f1e8;
  --line: rgba(11, 47, 74, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.ticker {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  text-decoration: none;
}

.ticker-track {
  width: max-content;
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 44px;
  padding-inline: 24px;
  animation: ticker-scroll 24s linear infinite;
}

.ticker-track span {
  white-space: nowrap;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 34px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(5, 33, 52, 0.82), rgba(5, 33, 52, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
}

.bridge-svg {
  display: inline-block;
  overflow: visible;
}

.bridge-svg path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bridge-svg .bridge-deck,
.bridge-svg .bridge-base,
.bridge-svg .bridge-cable {
  stroke: currentColor;
}

.bridge-svg .bridge-pylon {
  stroke: var(--red);
}

.bridge-svg .bridge-deck {
  stroke-width: 6;
}

.bridge-svg .bridge-base {
  stroke-width: 3;
  opacity: 0.5;
}

.bridge-svg .bridge-cable {
  stroke-width: 4;
}

.bridge-svg .bridge-pylon {
  stroke-width: 7;
}

.bridge-svg.small {
  width: 62px;
  height: 34px;
  color: var(--white);
}

.bridge-svg.large {
  width: min(520px, 100%);
  height: clamp(82px, 12vw, 126px);
  color: var(--white);
}

.bridge-svg.showcase {
  width: min(520px, 100%);
  height: 126px;
  color: var(--navy);
}

.bridge-svg.icon-only {
  width: min(320px, 100%);
  height: 112px;
  color: var(--navy);
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  color: var(--red);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text b {
  font-weight: 900;
}

.brand-text span {
  color: var(--white);
}

.brand-text strong {
  color: var(--teal);
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
  opacity: 0.88;
}

.nav a:hover {
  opacity: 1;
  color: var(--red);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 33, 52, 0.93) 0%, rgba(5, 33, 52, 0.7) 42%, rgba(5, 33, 52, 0.2) 78%),
    linear-gradient(0deg, rgba(11, 47, 74, 0.62) 0%, rgba(11, 47, 74, 0.04) 42%);
}

.hero-content {
  width: min(900px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 138px;
  padding-bottom: 56px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-logo {
  max-width: 850px;
  margin-bottom: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
  color: var(--red);
  font-size: clamp(4.8rem, 13vw, 12.5rem);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-logo strong {
  color: var(--teal);
}

.hero-logo em {
  color: var(--white);
  font-style: normal;
}

.hero-bridge {
  width: min(420px, 100%);
  margin: -4px 0 24px;
  opacity: 0.72;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(1.35rem, 3vw, 2.55rem);
  line-height: 1.03;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-brief {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(34px, 6vw, 70px) 0 0;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-brief div {
  min-height: 96px;
  padding: 18px;
  background: rgba(8, 18, 30, 0.44);
  backdrop-filter: blur(10px);
}

.hero-brief dt {
  margin-bottom: 9px;
  color: var(--teal);
  font-size: 0.72rem;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-brief dd {
  margin: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.25;
  font-weight: 800;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(24, 167, 169, 0.78);
  color: var(--white);
  background: rgba(24, 167, 169, 0.14);
}

.notice {
  padding: 16px clamp(18px, 6vw, 72px);
  color: var(--white);
  background: linear-gradient(90deg, var(--navy), #0d5964);
}

.notice p,
.footer p {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.92rem;
  line-height: 1.5;
}

.section,
.cup-double,
.reasons,
.pledge {
  padding: clamp(56px, 9vw, 104px) clamp(18px, 6vw, 72px);
}

.intro,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 8vw, 96px);
  align-items: start;
}

h2 {
  max-width: 680px;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.intro-copy,
.contact-copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.contact-copy {
  max-width: 620px;
}

.cup-double {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy);
}

.cup-double article {
  min-height: 420px;
  padding: clamp(26px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(24, 167, 169, 0.28), rgba(217, 71, 63, 0.1)),
    var(--navy);
}

.cup-double article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(217, 71, 63, 0.24), rgba(24, 167, 169, 0.12)),
    #08263d;
}

.cup-double h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.cup-double p:not(.section-label) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.03rem, 1.6vw, 1.22rem);
  line-height: 1.58;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
}

.reasons article {
  min-height: 310px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(24, 167, 169, 0.16), rgba(255, 255, 255, 0) 52%),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: inset 0 4px 0 var(--teal);
}

.reasons span {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 900;
}

h3 {
  max-width: 320px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.reasons p {
  color: var(--muted);
  line-height: 1.55;
}

.pledge {
  background:
    linear-gradient(135deg, rgba(24, 167, 169, 0.34), rgba(217, 71, 63, 0.22)),
    var(--ink);
}

.pledge-panel {
  max-width: 960px;
  margin: 0 auto;
  color: var(--white);
}

.pledge-panel p:not(.section-label) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  line-height: 1.58;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: inset 0 4px 0 var(--teal);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full,
.form-note,
.form-submit {
  grid-column: 1 / -1;
}

.form-field span {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(11, 47, 74, 0.22);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(24, 167, 169, 0.24);
  border-color: var(--teal);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.footer {
  padding: 28px clamp(18px, 6vw, 72px);
  background: var(--white);
  color: var(--muted);
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    top: 34px;
    align-items: flex-start;
  }

  .nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-logo {
    font-size: clamp(4rem, 19vw, 7rem);
  }

  .hero-brief {
    grid-template-columns: 1fr;
  }

  .hero-brief div {
    min-height: 0;
    padding: 15px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 18, 30, 0.9) 0%, rgba(9, 18, 30, 0.48) 100%),
      linear-gradient(0deg, rgba(9, 18, 30, 0.66) 0%, rgba(9, 18, 30, 0.08) 50%);
  }

  .intro,
  .contact,
  .cup-double,
  .reasons {
    grid-template-columns: 1fr;
  }

  .cup-double article {
    min-height: 0;
  }

  .bridge-svg.small {
    width: 44px;
    height: 25px;
  }

  .reasons article {
    min-height: 0;
  }

  .button {
    width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-submit {
    justify-self: stretch;
  }
}
