@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/instrument-sans.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/instrument-serif.woff2") format("woff2");
}
:root {
  --blue: #071542;
  --white: #f7f7f7;
  --black: #0a0704;
  --gold: #e9b040;
  --gold-deep: #a97d36;
  --sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--blue); color: var(--white); }
body { font-family: var(--sans); font-size: 17px; line-height: 1.5; }
img { display: block; width: 100%; max-width: none; }
a { color: inherit; text-decoration: none; }
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 0 20px;
  border-bottom: 1px solid var(--gold-deep);
  background: var(--blue);
}
.brand { letter-spacing: 0.18em; font-size: 12px; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 10px; font-size: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--black);
  border: 0;
  border-radius: 0;
  font: inherit;
  cursor: pointer;
}
.hero { display: grid; background: var(--blue); }
.hero img {
  height: 72vh;
  object-fit: cover;
  object-position: center 40%;
  background: var(--black);
}
.hero-copy {
  padding: 36px 20px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.kicker {
  margin: 0 0 16px;
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 12px;
}
h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 0.95;
  max-width: 8ch;
}
.lede { margin: 18px 0 28px; max-width: 28em; }
.facts {
  display: grid;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.facts div { padding: 22px 20px; border-bottom: 1px solid var(--gold-deep); }
.facts div:last-child { border-bottom: 0; }
.facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  letter-spacing: 0.14em;
  font-size: 11px;
}
.facts strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
}
.pair { display: grid; background: var(--blue); }
.pair img { height: 70vh; object-fit: cover; object-position: center; background: var(--black); }
.copy { padding: 40px 20px 56px; max-width: 38rem; }
.copy h2 {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.copy p { margin: 0 0 14px; max-width: 34em; }
.request {
  padding: 48px 20px 72px;
  border-top: 1px solid var(--gold);
}
.request h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
}
.request .note { margin: 0 0 24px; max-width: 32em; color: var(--white); }
form { display: grid; gap: 16px; max-width: 36rem; }
label { display: grid; gap: 6px; color: var(--gold); font-size: 12px; letter-spacing: 0.08em; }
input, textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font: 16px/1.4 var(--sans);
}
textarea { min-height: 120px; resize: vertical; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 28px;
  border-top: 1px solid var(--gold-deep);
  letter-spacing: 0.12em;
  font-size: 12px;
}
@media (min-width: 900px) {
  h1 { font-size: 84px; }
  .hero {
    grid-template-columns: 0.85fr 1.15fr;
    min-height: calc(100svh - 57px);
    align-items: stretch;
  }
  .hero img { height: calc(100svh - 57px); order: 2; }
  .hero-copy { padding: 64px 56px; justify-content: center; }
  .facts { grid-template-columns: repeat(3, 1fr); }
  .facts div { border-bottom: 0; border-right: 1px solid var(--gold-deep); }
  .facts div:last-child { border-right: 0; }
  .pair { grid-template-columns: 1.1fr 0.9fr; min-height: 84vh; }
  .pair.flip { grid-template-columns: 0.9fr 1.1fr; }
  .pair.flip img { order: 2; }
  .pair img { height: 100%; min-height: 84vh; }
  .copy { padding: 72px 64px; align-self: center; }
  .request { padding: 88px 64px 100px; }
  .request h2 { font-size: 56px; }
}
