:root {
  --ink: #11110f;
  --white: #fff;
  --gold: #bc9a6a;
  --gold-light: #ddc49f;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 11px 16px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1400px, calc(100% - 96px));
  margin: 0 auto;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.brand img {
  display: block;
  width: 171px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  gap: 34px;
}

.site-nav a {
  position: relative;
  padding: 5px 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.inquiry-page {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 145px 0 70px;
  place-items: center;
  overflow: hidden;
}

.page-background,
.page-overlay {
  position: fixed;
  inset: 0;
}

.page-background {
  background: url("../images/4.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.page-overlay {
  background:
    linear-gradient(90deg, rgba(12, 11, 9, 0.91) 0%, rgba(12, 11, 9, 0.67) 48%, rgba(12, 11, 9, 0.82) 100%),
    linear-gradient(0deg, rgba(12, 11, 9, 0.72), rgba(12, 11, 9, 0.12));
}

.inquiry-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
  width: min(1240px, calc(100% - 96px));
}

.eyebrow,
.form-kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.29em;
  text-transform: uppercase;
}

.eyebrow::before,
.form-kicker::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.72;
}

.inquiry-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 6.3vw, 92px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.inquiry-intro h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.intro-copy {
  max-width: 570px;
  margin: 35px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 14px;
  line-height: 1.85;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 46px;
  margin-top: 42px;
}

.contact-details a {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
}

.contact-details span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.form-card {
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: rgba(247, 247, 247, 0.97);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.form-card .form-kicker {
  margin-bottom: 8px;
  color: #716352;
}

.form-card h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

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

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin: 0 0 6px;
  color: #4d4a44;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field label span {
  color: #908b82;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.3);
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  background: rgba(188, 154, 106, 0.06);
  border-bottom-color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9a968e;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: #69655e;
  font-size: 11px;
  line-height: 1.5;
  cursor: pointer;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--gold);
  flex: 0 0 auto;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

#submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

#submit-button span {
  color: var(--gold-light);
  font-size: 20px;
  line-height: 1;
}

#submit-button:hover,
#submit-button:focus-visible {
  color: var(--ink);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

#submit-button:hover span,
#submit-button:focus-visible span {
  color: var(--ink);
}

#submit-button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-status {
  min-height: 0;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.form-status.is-success,
.form-status.is-error {
  margin-top: 12px;
}

.form-status.is-success {
  color: #3f704a;
}

.form-status.is-error {
  color: #9c3636;
}

@media (max-width: 1000px) {
  .site-header,
  .inquiry-layout {
    width: calc(100% - 48px);
  }

  .site-header {
    padding: 23px 0;
  }

  .brand img {
    width: 145px;
  }

  .inquiry-page {
    padding-top: 125px;
  }

  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .inquiry-intro {
    max-width: 720px;
  }
}

@media (max-width: 600px) {
  .site-header,
  .inquiry-layout {
    width: calc(100% - 36px);
  }

  .site-nav a:first-child {
    display: none;
  }

  .inquiry-page {
    padding: 120px 0 35px;
  }

  .inquiry-layout {
    gap: 38px;
  }

  .inquiry-intro h1 {
    font-size: clamp(51px, 16vw, 72px);
  }

  .intro-copy {
    margin-top: 28px;
  }

  .contact-details {
    display: grid;
    gap: 18px;
    margin-top: 30px;
  }

  .form-card {
    margin-right: -18px;
    margin-left: -18px;
    padding: 28px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .field-wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
