:root {
  color-scheme: only light;
  color: #1c1a18;
  background: #ede3da;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #ede3da;
  color: #1c1a18;
}

html,
body,
.landing-page {
  background-color: #ede3da;
}

@media (prefers-color-scheme: dark) {
  html,
  :root,
  body,
  .landing-page {
    background: #ede3da !important;
    background-color: #ede3da !important;
    color: #1c1a18;
  }
}

a {
  color: inherit;
}

.landing-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.contact-link {
  position: fixed;
  top: 28px;
  right: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 2px solid #A91110;
  color: #A91110;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-link:focus-visible,
.contact-link:hover {
  background: #A91110;
  color: #fffaf6;
  outline: none;
}

.landing-logo {
  display: grid;
  width: min(74vw, 780px);
  place-items: center;
}

.landing-logo img,
.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 28px clamp(22px, 5vw, 64px);
}

.brand-mark {
  width: min(44vw, 230px);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(36px, 7vw, 96px);
  width: min(1120px, calc(100% - 44px));
  margin: 52px auto 96px;
  align-items: start;
}

.contact-intro {
  max-width: 510px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 0.95;
}

.contact-intro p:not(.eyebrow) {
  margin: 0;
  max-width: 44rem;
  color: #4b433e;
  font-size: 1.08rem;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding-top: 10px;
}

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

label {
  display: grid;
  gap: 9px;
}

label span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #8d8076;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.34);
  color: #1c1a18;
  font: inherit;
  line-height: 1.3;
}

input,
select {
  height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 150px;
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #1c1a18;
  outline: 2px solid rgba(28, 26, 24, 0.2);
  outline-offset: 2px;
}

button {
  justify-self: start;
  min-width: 156px;
  min-height: 48px;
  border: 1px solid #1c1a18;
  background: #1c1a18;
  color: #fffaf6;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: #4b433e;
}

@media (max-width: 780px) {
  .contact-link {
    top: 18px;
    right: 18px;
    min-height: 48px;
    padding: 0 20px;
    font-size: 0.9rem;
  }

  .landing-logo {
    width: min(82vw, 620px);
  }

  .site-header {
    min-height: 78px;
  }

  .brand-mark {
    width: min(58vw, 210px);
  }

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

  .contact-shell {
    margin-top: 34px;
  }
}
