:root {
  color-scheme: dark;
  --ink: #f7f5f2;
  --muted: #b8b4c4;
  --night: #08080b;
  --cyan: #00d9ff;
  --pink: #ff1f8f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
}

a { color: inherit; }

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: ui-monospace, monospace;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand { font-weight: 700; text-decoration: none; }
.header-link { text-underline-offset: .35em; }

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 1rem;
}

.eyebrow {
  color: var(--cyan);
  font: .75rem/1.2 ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: .25em 0;
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.05em;
}

h1 { font-size: clamp(3.4rem, 8vw, 7.8rem); }
h2 { font-size: clamp(2.8rem, 6vw, 6rem); }
em { color: var(--pink); font-weight: 400; }

.intro {
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--pink);
  background: var(--pink);
  color: #13050d;
  font: 700 .85rem/1 ui-monospace, monospace;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-mark {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255, 31, 143, .18));
}

.contact {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: 7rem;
}

.email-link { text-underline-offset: .3em; }
form { display: grid; }
label { margin: 1rem 0 .35rem; font: .75rem/1.2 ui-monospace, monospace; text-transform: uppercase; }

input,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #5b5665;
  border-radius: 0;
  padding: .7rem 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus { outline: 2px solid var(--cyan); outline-offset: 4px; }
textarea { resize: vertical; }
.privacy { color: var(--muted); font-size: .8rem; }

footer {
  display: flex;
  justify-content: space-between;
  padding-block: 2rem;
  border-top: 1px solid #29262e;
  color: var(--muted);
  font: .7rem/1.4 ui-monospace, monospace;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .hero,
  .contact { grid-template-columns: 1fr; }
  .hero { padding-block: 4rem; }
  .hero-mark { max-width: 480px; margin-inline: auto; }
  .contact { gap: 2rem; }
  .header-link { display: none; }
}

