:root {
  --black: #070706;
  --green: #052d24;
  --green-soft: #0f4a3d;
  --gold: #d2aa5a;
  --gold-deep: #a5792b;
  --paper: #f8f6f0;
  --white: #ffffff;
  --muted: #6c675f;
  --line: rgba(210, 170, 90, 0.28);
  --shadow: 0 34px 100px rgba(7, 7, 6, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--black);
  background:
    radial-gradient(circle at 12% 14%, rgba(210, 170, 90, 0.22), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(5, 45, 36, 0.2), transparent 30%),
    linear-gradient(120deg, #ffffff 0%, var(--paper) 48%, #ece5d7 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
p {
  margin: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.bridge-shell {
  min-height: 100svh;
  overflow: hidden;
}

.bridge-header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px 56px;
  color: var(--white);
  background: rgba(7, 7, 6, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px);
  animation: slideDown 720ms ease both;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.brand-lockup img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.contact-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-weight: 800;
}

.bridge-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: 48px;
  align-items: center;
  padding: 116px 56px 48px;
}

.hero-copy {
  max-width: 620px;
  animation: riseIn 900ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero-logo {
  width: min(360px, 72vw);
  margin-bottom: 28px;
  mix-blend-mode: multiply;
}

.hero-copy h1 {
  max-width: 560px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.9;
}

.hero-copy p {
  max-width: 520px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.choice-grid {
  display: grid;
  gap: 22px;
}

.choice-panel {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(210, 170, 90, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity: 0;
  animation: cardIn 820ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.choice-panel:nth-child(2) {
  animation-delay: 160ms;
}

.choice-panel img {
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.choice-panel:hover img {
  transform: scale(1.055);
}

.choice-panel div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  background:
    linear-gradient(120deg, rgba(7, 7, 6, 0.95), rgba(5, 45, 36, 0.88)),
    var(--green);
}

.choice-panel span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.choice-panel h2 {
  max-width: 520px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 0.98;
}

.choice-panel p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.choice-panel strong {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  color: var(--black);
  background: linear-gradient(135deg, #f1d28d, var(--gold) 52%, var(--gold-deep));
  border-radius: 999px;
  font-size: 0.88rem;
}

@media (max-width: 1080px) {
  .bridge-hero {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .hero-copy {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .bridge-header {
    min-height: 66px;
    padding: 12px 18px;
  }

  .brand-lockup {
    font-size: 0.92rem;
  }

  .brand-lockup img {
    width: 38px;
    height: 38px;
  }

  .contact-link {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.82rem;
  }

  .bridge-hero {
    gap: 24px;
    padding: 84px 18px 28px;
  }

  .hero-logo {
    width: min(220px, 66vw);
    margin-bottom: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .hero-copy p {
    margin-top: 18px;
    font-size: 1.02rem;
  }

  .choice-panel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .choice-panel img {
    height: 220px;
    min-height: 220px;
  }

  .choice-panel div {
    padding: 28px;
  }
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
