:root {
  --ink: #050505;
  --charcoal: #151515;
  --paper: #f6f3ee;
  --white: #ffffff;
  --muted: #6f6a62;
  --line: rgba(5, 5, 5, 0.14);
  --line-light: rgba(255, 255, 255, 0.22);
  --red: #d71920;
  --gold: #b99456;
  --steel: #315a66;
  --radius: 8px;
  --pad: 20px;
  color-scheme: light;
}

@media (min-width: 760px) {
  :root {
    --pad: 36px;
  }
}

@media (min-width: 1180px) {
  :root {
    --pad: 52px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  left: var(--pad);
  top: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 238, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.utility-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 9px var(--pad);
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.main-nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  grid-area: 1 / 1;
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.88rem;
  font-weight: 860;
  text-transform: uppercase;
}

.booking-main {
  min-height: 78vh;
}

.booking-hero {
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 110px var(--pad) 56px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5, 5, 5, 0.96), rgba(92, 23, 27, 0.92)),
    var(--ink);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0 0 20px;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  max-width: 1100px;
  font-size: clamp(4rem, 11vw, 9rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.booking-hero p:last-child,
.booking-copy p:last-child {
  max-width: 700px;
  margin: 0;
  font-size: 1.06rem;
  font-weight: 720;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 48px;
  padding: 96px var(--pad);
  background: var(--ink);
  color: var(--white);
}

.booking-copy {
  align-self: center;
}

.booking-copy p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.booking-form select option {
  color: var(--ink);
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
}

.booking-form button {
  min-height: 52px;
  border: 1px solid var(--white);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-weight: 950;
  cursor: pointer;
}

.booking-form button:disabled,
.booking-form input:disabled,
.booking-form select:disabled,
.booking-form textarea:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  padding: 44px var(--pad);
  color: var(--white);
  background: #070707;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 900;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.85rem;
}

.site-credit {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: -18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-credit a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 4px;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    inset: 76px var(--pad) auto;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
  }

  .nav-panel.is-open {
    display: grid;
  }

  .booking-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .form-full {
    grid-column: auto;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
