:root {
  --ink: #11100f;
  --ink-soft: #4b4946;
  --line: #d8d6d2;
  --white: #fff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100vh;
  margin: 0;
  flex-direction: column;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

button,
input,
textarea {
  font: inherit;
}

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

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

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

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.header-inner {
  display: flex;
  width: min(var(--max), calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: min(250px, 42vw);
  max-height: 48px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  padding: 8px 0 5px;
  border-bottom: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

nav a:hover,
nav a:focus-visible,
nav a[aria-current="page"] {
  border-bottom-color: var(--ink);
}

.coming-soon {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  min-height: calc(100vh - 154px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.48fr);
  align-items: center;
  gap: clamp(48px, 9vw, 140px);
  padding: clamp(54px, 8vw, 110px) 0;
}

.coming-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 9vw, 8.5rem);
}

.lede {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 26px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.email-link {
  border-bottom: 1px solid var(--ink);
  font-size: 0.86rem;
}

.brand-mark {
  display: grid;
  width: min(30vw, 310px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--ink);
}

.brand-mark span {
  font-family: var(--serif);
  font-size: clamp(8rem, 20vw, 16rem);
  line-height: 0.8;
}

footer {
  display: flex;
  width: min(var(--max), calc(100% - 48px));
  min-height: 70px;
  margin: auto auto 0;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  gap: 24px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(48px, 6vw, 78px) 0;
}

.contact-intro {
  max-width: 780px;
  margin-bottom: 36px;
}

.contact-intro h1 {
  font-size: clamp(3.8rem, 7vw, 6.5rem);
}

.contact-intro > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(460px, 1.22fr);
  border: 1px solid var(--ink);
}

.contact-details,
.contact-form {
  padding: clamp(24px, 3.5vw, 42px);
}

.contact-details {
  border-right: 1px solid var(--ink);
}

.contact-details h2 {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-details p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label:nth-of-type(4),
.form-actions,
.form-status {
  grid-column: 1 / -1;
}

.contact-form label > span {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form label small {
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

input {
  min-height: 46px;
  padding: 10px 12px;
}

textarea {
  min-height: 120px;
  padding: 11px 12px;
  resize: vertical;
}

input:focus,
textarea:focus {
  box-shadow: inset 0 0 0 1px var(--ink);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-actions small {
  max-width: 350px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 820px) {
  .coming-soon {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .brand-mark {
    width: min(54vw, 240px);
    justify-self: start;
  }

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

  .contact-details {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
}

@media (max-width: 580px) {
  .header-inner,
  .coming-soon,
  .contact-page,
  footer {
    width: calc(100% - 28px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 190px;
  }

  nav {
    gap: 16px;
  }

  h1 {
    font-size: clamp(3.7rem, 21vw, 5.2rem);
  }

  .coming-soon {
    padding: 54px 0 42px;
  }

  .actions,
  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-page {
    padding: 40px 0;
  }

  .contact-intro {
    margin-bottom: 26px;
  }

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

  .contact-form label,
  .contact-form label:nth-of-type(4),
  .form-actions,
  .form-status {
    grid-column: 1;
  }

  footer {
    min-height: 92px;
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
}
