:root {
  --ink: #111214;
  --muted: #696b70;
  --line: rgba(17, 18, 20, 0.15);
  --paper: #f3f3ef;
  --panel: #ffffff;
  --yellow: #ffe600;
  --yellow-dark: #efd700;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  display: flex;
  min-height: 72px;
  padding: 0 4vw;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: block;
  width: 94px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header p {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 230, 0, 0.17);
}

main {
  display: grid;
  min-height: calc(100svh - 132px);
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
}

.intro,
.contact-panel {
  position: relative;
  min-height: 680px;
  padding: clamp(50px, 7vw, 108px) 4vw;
}

.intro {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
}

.intro-copy,
.edition {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

h1 {
  max-width: 820px;
  font-size: clamp(64px, 7.5vw, 132px);
}

.lede {
  max-width: 520px;
  margin: 38px 0 0;
  color: #4f5156;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.5;
}

.edition {
  margin: 120px 0 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.contact-panel {
  display: flex;
  padding-right: clamp(30px, 6vw, 92px);
  padding-left: clamp(30px, 6vw, 92px);
  flex-direction: column;
  background: var(--panel);
  box-shadow: -1px 0 var(--line);
}

.contact-heading h2 {
  font-size: clamp(52px, 5.3vw, 88px);
}

.contact-heading > p:last-child {
  max-width: 440px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

form {
  display: grid;
  margin-top: clamp(46px, 6vh, 72px);
  gap: 28px;
}

form label {
  display: grid;
  gap: 8px;
}

form label > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  padding: 10px 0 13px;
  border: 0;
  border-bottom: 1px solid #bfc1c5;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 17px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 92px;
  resize: vertical;
  line-height: 1.45;
}

input:focus,
textarea:focus {
  border-color: var(--yellow-dark);
  box-shadow: 0 1px var(--yellow-dark);
}

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

.submit-row {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 18px;
}

.submit-row button {
  display: flex;
  min-width: 168px;
  height: 50px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.submit-row button:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.submit-row button:disabled {
  cursor: wait;
  opacity: 0.55;
  transform: none;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

footer {
  display: flex;
  min-height: 60px;
  padding: 0 4vw;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

footer p {
  margin: 0;
}

footer a:hover {
  color: var(--ink);
}

@media (max-width: 900px) {
  main {
    display: block;
  }

  .intro,
  .contact-panel {
    min-height: 0;
    padding: 72px 6vw;
  }

  .intro {
    min-height: 680px;
  }

  .contact-panel {
    min-height: 760px;
    box-shadow: 0 -1px var(--line);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 20px;
  }

  .site-header p {
    max-width: 130px;
    text-align: right;
  }

  .intro,
  .contact-panel {
    padding-right: 20px;
    padding-left: 20px;
  }

  .intro {
    min-height: 620px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .contact-heading h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .submit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .submit-row button {
    width: 100%;
  }

  footer {
    padding: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
