@font-face {
  font-family: "Engravers Gothic";
  src: url("/fonts/EngraversGothic%20BT.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #050404;
  --paper: #f8f2e4;
  --muted: #b9b2a3;
  --brass: #c8a163;
  --ember: #7a2e18;
  --cold: #8ed9cf;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  background: var(--ink);
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  height: 100%;
  min-width: 320px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 15% 52%, rgba(122, 46, 24, 0.28), transparent 34rem),
    radial-gradient(circle at 70% 18%, rgba(142, 217, 207, 0.13), transparent 28rem),
    var(--ink);
  font-family: "Engravers Gothic", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

a {
  color: inherit;
}

.landing {
  width: 100vw;
  height: 100svh;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(22rem, 5fr);
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(5, 4, 4, 0.82));
}

.hero__image {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.hero__image::before,
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__image::before {
  background:
    linear-gradient(90deg, rgba(5, 4, 4, 0.04), rgba(5, 4, 4, 0.2) 58%, var(--ink) 100%),
    linear-gradient(180deg, rgba(5, 4, 4, 0.3), transparent 28%, rgba(5, 4, 4, 0.42));
}

.hero__image::after {
  opacity: 0.22;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(248, 242, 228, 0.18) 0,
    rgba(248, 242, 228, 0.18) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: soft-light;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 46% center;
  opacity: 0;
  filter: saturate(0.9) contrast(1.08) brightness(0.82);
  transform: scale(1.01);
}

.hero__slide--one {
  opacity: 1;
  animation: hero-slide-one 64s infinite;
}

.hero__slide--two {
  animation: hero-slide-two 64s infinite;
}

.hero__slide--three {
  animation: hero-slide-three 64s infinite;
}

.hero__slide--four {
  animation: hero-slide-four 64s infinite;
}

.hero__slide--two,
.hero__slide--three {
  object-position: center center;
}

.hero__slide--four {
  object-position: 52% center;
}

@keyframes hero-slide-one {
  0%,
  14.1%,
  100% {
    opacity: 1;
  }

  17.2%,
  96.9% {
    opacity: 0;
  }
}

@keyframes hero-slide-two {
  0%,
  14.1%,
  45.3%,
  100% {
    opacity: 0;
  }

  17.2%,
  42.2% {
    opacity: 1;
  }
}

@keyframes hero-slide-three {
  0%,
  42.2%,
  73.4%,
  100% {
    opacity: 0;
  }

  45.3%,
  70.3% {
    opacity: 1;
  }
}

@keyframes hero-slide-four {
  0%,
  70.3%,
  100% {
    opacity: 0;
  }

  73.4%,
  96.9% {
    opacity: 1;
  }
}

.hero__content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1rem, 2.1vw, 1.7rem);
  min-width: 0;
  height: 100%;
  padding: clamp(2rem, 6vw, 6rem) clamp(1.5rem, 6vw, 6rem) clamp(4.8rem, 7vw, 6.6rem);
}

.eyebrow,
.motto,
.arrival {
  font-size: clamp(0.75rem, 1.05vw, 0.98rem);
  line-height: 1.7;
}

.eyebrow {
  margin: 0;
  color: var(--brass);
}

h1 {
  margin: 0;
  width: min(24rem, 100%);
  line-height: 0;
}

.logo {
  display: block;
  width: 100%;
  max-height: 22svh;
  object-fit: contain;
}

.motto {
  margin: 0;
  max-width: 28ch;
  color: var(--muted);
}

.arrival {
  display: grid;
  gap: 0.2rem;
  margin-top: clamp(0.5rem, 1.2vw, 1rem);
  color: var(--muted);
}

.arrival strong {
  color: var(--paper);
  font-size: clamp(1.4rem, 2.4vw, 2.45rem);
  font-weight: 400;
  letter-spacing: 0.16em;
}

.inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: clamp(0.3rem, 1vw, 0.8rem);
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(248, 242, 228, 0.62);
  color: var(--paper);
  font-size: 0.8rem;
  line-height: 1;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.inquire:hover,
.inquire:focus-visible {
  border-color: var(--brass);
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.below {
  position: absolute;
  right: clamp(1.5rem, 6vw, 6rem);
  bottom: clamp(1rem, 2.6vw, 2rem);
  z-index: 3;
  width: min(31rem, calc(100vw - 3rem));
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(248, 242, 228, 0.16);
  color: rgba(248, 242, 228, 0.68);
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  line-height: 1.7;
  text-align: right;
}

@media (max-width: 820px) {
  body {
    letter-spacing: 0.1em;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 56svh) minmax(0, 44svh);
  }

  .hero::after {
    height: 18%;
  }

  .hero__image {
    height: 100%;
  }

  .hero__image::before {
    background:
      linear-gradient(180deg, rgba(5, 4, 4, 0.08), rgba(5, 4, 4, 0.18) 55%, var(--ink) 100%),
      linear-gradient(90deg, rgba(5, 4, 4, 0.3), transparent 34%, rgba(5, 4, 4, 0.36));
  }

  .hero__slide {
    object-position: center center;
  }

  .hero__content {
    align-items: center;
    height: 100%;
    gap: clamp(0.7rem, 2svh, 1.1rem);
    justify-content: flex-start;
    padding: clamp(1rem, 3svh, 1.5rem) 1.25rem 4.4rem;
    text-align: center;
  }

  h1 {
    width: min(17rem, 76vw);
  }

  .motto {
    max-width: 22ch;
  }

  .below {
    right: 1rem;
    bottom: 0.85rem;
    left: 1rem;
    width: auto;
    padding-top: 0.7rem;
    font-size: 0.66rem;
    line-height: 1.45;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    animation: none;
    opacity: 0;
  }

  .hero__slide--one {
    opacity: 1;
  }
}

@media (max-width: 420px) {
  .hero {
    grid-template-rows: minmax(0, 52svh) minmax(0, 48svh);
  }

  .hero__content {
    padding-bottom: 4.8rem;
  }

  .arrival strong {
    letter-spacing: 0.12em;
  }
}

.inquiry-page {
  min-height: 100%;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    linear-gradient(90deg, rgba(5, 4, 4, 0.2), var(--ink) 46%, var(--ink)),
    url("/img/teaser.jpg") left center / min(48vw, 46rem) auto no-repeat,
    radial-gradient(circle at 72% 18%, rgba(142, 217, 207, 0.12), transparent 28rem),
    var(--ink);
}

.inquiry-shell {
  display: grid;
  grid-template-columns: minmax(13rem, 0.58fr) minmax(20rem, 0.42fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  width: min(86rem, calc(100vw - 3rem));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) 0;
}

.brand-link {
  position: fixed;
  top: clamp(1.2rem, 3vw, 2rem);
  left: clamp(1.2rem, 3vw, 2rem);
  z-index: 4;
  display: block;
  width: clamp(7rem, 12vw, 10rem);
  line-height: 0;
  opacity: 0.92;
}

.brand-link img {
  width: 100%;
  height: auto;
}

.inquiry-intro {
  align-self: end;
  padding: clamp(8rem, 18vw, 14rem) 0 clamp(2rem, 6vw, 5rem);
}

.inquiry-intro h1 {
  width: min(13ch, 100%);
  margin: clamp(0.8rem, 1.6vw, 1.4rem) 0;
  color: var(--paper);
  font-size: clamp(2.7rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.08em;
}

.inquiry-intro p:last-child {
  max-width: 34ch;
  margin: 0;
  color: rgba(248, 242, 228, 0.7);
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  line-height: 1.8;
}

.inquiry-form {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
  align-self: center;
  width: 100%;
  padding: clamp(1.25rem, 3vw, 2.4rem);
  border: 1px solid rgba(248, 242, 228, 0.18);
  background: rgba(5, 4, 4, 0.72);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.25rem);
}

.field {
  display: grid;
  gap: 0.48rem;
  min-width: 0;
}

.field--trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field label {
  color: var(--brass);
  font-size: 0.68rem;
  line-height: 1.4;
}

.field input,
.field textarea {
  appearance: none;
  width: 100%;
  min-height: 2.85rem;
  border: 0;
  border-bottom: 1px solid rgba(248, 242, 228, 0.38);
  border-radius: 0;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.84);
  font: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  caret-color: var(--paper);
}

.field input {
  padding: 0 0.7rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(248, 242, 228, 0.42);
}

.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus,
.field textarea:-webkit-autofill,
.field textarea:-webkit-autofill:hover,
.field textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--paper);
  caret-color: var(--paper);
  box-shadow: 0 0 0 1000px #050404 inset;
  transition: background-color 9999s ease-in-out 0s;
}

.field textarea {
  min-height: 7.4rem;
  padding: 0.8rem 0.7rem;
  resize: vertical;
  text-transform: none;
  letter-spacing: 0.04em;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--brass);
  outline: none;
  background: rgba(0, 0, 0, 0.94);
}

.field-grid--choices {
  align-items: start;
}

.choice-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-field legend {
  margin: 0 0 0.48rem;
  color: var(--brass);
  font-size: 0.68rem;
  line-height: 1.4;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(248, 242, 228, 0.24);
  background: rgba(248, 242, 228, 0.24);
}

.choice-row label {
  min-width: 0;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.84);
  cursor: pointer;
}

.choice-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  opacity: 0;
  pointer-events: none;
}

.choice-row span {
  display: flex;
  align-items: center;
  min-height: 2.85rem;
  padding: 0.75rem 0.7rem;
  color: rgba(248, 242, 228, 0.72);
  font-size: 0.74rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
  transition: background-color 180ms ease, color 180ms ease;
}

.choice-row input:checked + span {
  color: var(--paper);
  background: rgba(248, 242, 228, 0.1);
}

.choice-row label:hover span,
.choice-row input:focus-visible + span {
  color: var(--paper);
  background: rgba(200, 161, 99, 0.18);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.35rem;
}

.form-actions a,
.form-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid rgba(248, 242, 228, 0.5);
  color: var(--paper);
  background: transparent;
  font: inherit;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.form-actions a {
  padding: 0.85rem 1rem;
  border-color: transparent;
  color: rgba(248, 242, 228, 0.66);
}

.form-actions button {
  padding: 0.85rem 1.15rem;
}

.form-actions a:hover,
.form-actions a:focus-visible,
.form-actions button:hover,
.form-actions button:focus-visible {
  border-color: var(--brass);
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.5;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: rgba(248, 242, 228, 0.72);
  font-size: 0.72rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .inquiry-page {
    background:
      linear-gradient(180deg, rgba(5, 4, 4, 0.24), var(--ink) 34rem),
      url("/img/teaser.jpg") top center / 100vw auto no-repeat,
      var(--ink);
  }

  .inquiry-shell {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: min(42rem, calc(100vw - 2rem));
    padding: 6.8rem 0 2rem;
  }

  .brand-link {
    position: absolute;
  }

  .inquiry-intro {
    align-self: auto;
    padding: clamp(10rem, 36vw, 17rem) 0 0;
  }

  .inquiry-intro h1 {
    font-size: clamp(2.5rem, 14vw, 5rem);
  }
}

@media (max-width: 560px) {
  .inquiry-shell {
    width: min(100vw - 1rem, 34rem);
  }

  .inquiry-form {
    padding: 1rem;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .choice-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
}
