:root {
  color-scheme: dark;
  --panel: rgba(10, 12, 16, 0.68);
  --panel-strong: rgba(10, 12, 16, 0.82);
  --line: rgba(255, 255, 255, 0.2);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --accent: #e23a2e;
  --accent-dark: #ab1f17;
  --field: rgba(255, 255, 255, 0.12);
  --field-focus: rgba(255, 255, 255, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0d0f12;
  color: var(--text);
}

button,
input,
select {
  font: inherit;
}

.landing {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background-image: url("assets/backgrounds/sta-001.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.46) 38%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.1));
}

.content-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 42vw);
  height: 100%;
  padding: 5vh clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.2vh;
  background: var(--panel);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: 20px 0 80px rgba(0, 0, 0, 0.32);
}

.brand {
  display: grid;
  gap: 18px;
}

.brand-logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.42));
}

.eyebrow {
  margin: 0;
  color: #ffcf65;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 12ch;
  font-size: 3.4rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.intro {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.35;
}

.contact-line a,
.site-foot a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.contact-line a {
  padding: 7px 10px;
  background: rgba(226, 58, 46, 0.22);
  border: 1px solid rgba(226, 58, 46, 0.42);
  border-radius: 6px;
}

.booking {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.booking-head {
  display: grid;
  gap: 4px;
}

.booking h2 {
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.booking p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0 12px;
  color: var(--text);
  background: var(--field);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  outline: none;
}

select {
  appearance: auto;
}

select option {
  color: #111111;
  background: #ffffff;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

input:focus,
select:focus {
  background: var(--field-focus);
  border-color: rgba(255, 255, 255, 0.42);
}

button {
  height: 42px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(226, 58, 46, 0.22);
}

button:disabled {
  cursor: progress;
  opacity: 0.72;
}

button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.66);
  outline-offset: 3px;
}

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

.booking-status {
  min-height: 1.1rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.booking-status[data-state="success"] {
  color: #9ee7b7;
}

.booking-status[data-state="error"] {
  color: #ffb3ad;
}

.site-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.3;
}

@media (max-width: 980px) {
  .shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.82)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
  }

  .content-panel {
    width: 100%;
    padding: 28px 22px;
    gap: 20px;
    background: rgba(10, 12, 16, 0.66);
    border-right: 0;
    justify-content: center;
  }

  .brand-logo {
    width: min(100%, 320px);
  }

  h1 {
    max-width: 11ch;
    font-size: 2.7rem;
  }
}

@media (max-width: 620px) {
  .content-panel {
    padding: 18px 24px 18px 18px;
    gap: 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: min(100%, 268px);
  }

  h1 {
    font-size: 2rem;
  }

  .intro {
    font-size: 0.9rem;
    line-height: 1.34;
    width: min(100%, 340px);
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .contact-line {
    gap: 6px 10px;
    font-size: 0.78rem;
  }

  .contact-line span {
    flex-basis: 100%;
    max-width: 100%;
  }

  .contact-line a {
    padding: 5px 8px;
  }

  .booking {
    gap: 9px;
    padding: 12px;
    width: min(100%, 340px);
    max-width: 100%;
    align-self: start;
  }

  .field-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  input,
  select {
    height: 34px;
    padding: 0 10px;
  }

  button {
    height: 38px;
  }

  .site-foot {
    font-size: 0.7rem;
  }
}

@media (max-height: 720px) {
  .content-panel {
    gap: 12px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: min(100%, 300px);
  }

  h1 {
    font-size: 2.1rem;
  }

  .intro {
    font-size: 0.86rem;
    line-height: 1.3;
  }

  .booking {
    gap: 8px;
    padding: 10px;
  }

  .booking p {
    display: none;
  }

  input,
  select {
    height: 36px;
  }

  button {
    height: 40px;
  }

  .site-foot {
    font-size: 0.7rem;
  }
}

@media (max-height: 560px) {
  .eyebrow,
  .intro {
    display: none;
  }

  .brand-logo {
    width: min(100%, 240px);
  }

  h1 {
    font-size: 1.85rem;
  }

  .contact-line span {
    display: none;
  }
}
