:root {
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Source Sans 3", sans-serif;

  --color-bg: #111;
  --color-text: #c3c4c7;
  --color-grey: #242424;

  --almost-black: rgb(18 18 18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100svh;

  font-family: var(--font-body);

  background: var(--color-bg);
  color: var(--color-text);
}
.hero {
  position: relative;

  min-height: 100svh;

  display: grid;
  /* align-items: center; */

  overflow: hidden;

  padding-inline: clamp(2rem, 8vw, 10rem);
  padding-block: clamp(3rem, 8vh, 7rem);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center right;
  border-bottom: 1px solid var(--color-grey);
}

.hero__overlay {
  position: absolute;
  inset: 0;

  /* background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.62),
      rgba(0, 0, 0, 0.22),
      rgba(0, 0, 0, 0.05)
    ); */
}

.hero__content {
  position: relative;
  z-index: 1;
  margin-top: clamp(3rem, 6vh, 6rem);
  max-width: clamp(20rem, 58vw, 60rem);
}
@media (max-width: 48rem) {
  .hero__content {
    margin-top: 0;
  }
}

.hero__title {
  margin: 0;

  font-family: var(--font-heading);
  font-size: clamp(6rem, 12vw, 16rem);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.045em;

  color: rgba(244, 241, 234, 0.92);
}

.hero__eyebrow {
  margin: clamp(2rem, 4vh, 3.5rem) 0 0 clamp(1rem, 3vw, 4rem);

  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.7vw, 2rem);
  font-style: italic;
  line-height: 1.1;

  color: rgba(244, 241, 234, 0.9);
}

.hero__logline {
  max-width: 46rem;
  margin: clamp(2rem, 4vh, 3.5rem) 0 0 clamp(1rem, 3vw, 4rem);

  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.65vw, 2rem);
  font-weight: 400;
  line-height: 1.25;

  color: rgba(244, 241, 234, 0.92);
}
.contact__honeypot {
  position: absolute;
  left: -9999px;
}
.contact {
  width: min(100%, 42rem);
  margin: clamp(3rem, 8vw, 6rem) auto;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.contact__heading {
  margin: 0 0 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 400;
}

.contact__form {
  display: grid;
  gap: 1.25rem;
}

.contact__field {
  display: grid;
  gap: 0.4rem;
}

.contact__field label {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact__field input,
.contact__field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.25rem;
}

.contact__field textarea {
  resize: vertical;
}

.contact__field input:focus,
.contact__field textarea:focus {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.contact__button {
  justify-self: start;
  padding: 0.8rem 1.4rem;
  font: inherit;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--almost-black);
  background: rgba(244, 241, 232, 0.92);
  border: 0;
  cursor: pointer;
}

.contact__button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact__status {
  min-height: 1.4em;
  margin: 0.75rem 0 0;
}

.contact__honeypot {
  position: absolute;
  left: -9999px;
}