:root {
  --bg: #0e0e11;
  --bg-2: #131317;
  --panel: #15151a;
  --panel-2: #1c1c23;
  --border: #2a2a33;
  --border-soft: #20202a;
  --accent: #ff6a00;
  --accent-2: #ff8a2a;
  --accent-deep: #d84f00;
  --text: #e8e8ea;
  --muted: #9a9aa3;
  --muted-2: #6b6b75;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Russo One", "Rubik", sans-serif;
  --font-body: "Rubik", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  background-color: var(--bg);
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1.5px),
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 22px 22px, 64px 64px, 64px 64px;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-2); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--accent); }

.landing {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

/* ============ Hazard strip ============ */
.hazard-strip {
  height: 12px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: repeating-linear-gradient(
    -45deg,
    var(--accent) 0 18px,
    #0d0d10 18px 36px
  );
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

/* ============ Hero ============ */
.hero {
  padding: 56px 0 40px;
}

.hero-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.hero-brand { flex: 1 1 auto; }

.logo {
  width: min(420px, 78vw);
  height: auto;
  color: var(--text);
  display: block;
  filter: drop-shadow(0 0 18px rgba(255, 106, 0, 0.28));
  animation: neon-flicker 9s infinite;
  will-change: color, filter;
}

@keyframes neon-flicker {
  0%, 15%, 20%, 23%, 50%, 55%, 100% {
    color: var(--text);
    filter: drop-shadow(0 0 18px rgba(255, 106, 0, 0.22));
  }
  18%, 22% {
    color: var(--accent);
    filter: drop-shadow(0 0 22px rgba(255, 106, 0, 0.5));
  }
  52% {
    color: var(--accent-2);
    filter: drop-shadow(0 0 26px rgba(255, 106, 0, 0.55));
  }
}

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
  padding-bottom: 10px;
}

.meta {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.meta + .meta::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 10px;
}

.hero-copy {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 5.4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: 0.5px;
  color: var(--text);
}

.hero-copy h1::first-line { color: var(--accent); }

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  max-width: 36ch;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

/* ============ Ticker ============ */
.ticker {
  margin: 8px 0 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 12px 0;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.ticker-track i {
  width: 6px;
  height: 6px;
  background: var(--accent);
  flex: none;
  transform: rotate(45deg);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Panels ============ */
.booking, .contacts {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 34px;
}

.booking { border-radius: 4px; }
.contacts { margin-top: 48px; border-radius: 4px; }

.booking::before, .contacts::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 24px;
  height: 24px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  pointer-events: none;
}
.booking::after, .contacts::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 24px;
  height: 24px;
  border-bottom: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  pointer-events: none;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.booking-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.section-index {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
}

.booking-subtitle {
  color: var(--muted);
  margin: 0 0 26px;
  font-size: 15px;
  font-weight: 300;
}

/* ============ Form ============ */
.booking { display: grid; grid-template-columns: 440px 1fr; gap: 40px; }

.field { margin: 0 0 20px; }

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

.field label .idx {
  display: inline-block;
  color: var(--accent);
  margin-right: 10px;
  font-size: 11px;
}

.helper {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted-2);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: #101014;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 3px;
  padding: 13px 14px;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 300;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: #14141a;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.field input.found,
.field input.found:focus {
  border-color: #5fd08a;
  box-shadow: 0 0 0 3px rgba(95, 208, 138, 0.12);
}

.field input[type="date"],
.field input[type="time"] {
  color-scheme: dark;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  margin-top: 26px;
  width: 100%;
  background: var(--accent);
  border: none;
  color: #120d07;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 17px 16px;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  transition: background 0.25s var(--ease), transform 0.12s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-submit:hover { background: var(--accent-2); }
.btn-submit:active { transform: translateY(1px); }
.btn-submit:disabled {
  background: #26262e;
  color: #6a6a72;
  cursor: not-allowed;
}

.selection-hint {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.selection-hint::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--border);
  flex: none;
}
.selection-hint:has(strong)::before { background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.selection-hint strong { color: var(--accent-2); font-weight: 500; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted-2);
  line-height: 1.45;
}
.consent input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--accent);
  flex: none;
}

/* ============ Scene ============ */
.scene-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #0d0d11;
  overflow: hidden;
}

.scene-tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.scene-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: dot-breathe 2.6s ease-in-out infinite;
}
@keyframes dot-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.45); opacity: 1; }
  50% { box-shadow: 0 0 0 6px rgba(255, 106, 0, 0); opacity: 0.6; }
}

.scene {
  position: relative;
  width: 100%;
  --bright: 0.65;
  --rayop: 0.35;
  --shx: 2px;
  --shy: -16px;
  --shb: 16px;
  --sha: 0.5;
  --tint: 255, 210, 150;
}

.scene svg { display: block; }

.scene-legend {
  display: flex;
  gap: 20px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-free { background: var(--border); }
.dot-busy { background: var(--accent); box-shadow: 0 0 8px rgba(255, 106, 0, 0.7); }

/* ============ Contacts ============ */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 22px;
}

.contacts-info { display: flex; flex-direction: column; }

.contact-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.contact-row:first-child { padding-top: 0; }
.contact-row:last-child { border-bottom: none; }

.c-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-2);
  min-width: 120px;
}
.c-value { color: var(--text); font-size: 17px; font-weight: 300; }

.map iframe {
  display: block;
  border-radius: 3px;
  filter: grayscale(0.4) contrast(1.02);
  border: 1px solid var(--border);
}

/* ============ Footer ============ */
.footer {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 300;
}
.footer-brand {
  font-family: var(--font-display);
  letter-spacing: 3px;
  color: var(--muted);
}
.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
}
.footer a { color: var(--muted); }
.footer a:hover { color: var(--accent); }

/* ============ Alerts ============ */
.alert {
  padding: 14px 18px;
  border-radius: 3px;
  margin-bottom: 24px;
  border: 1px solid;
  border-left-width: 4px;
  font-weight: 300;
}
.alert-success { background: rgba(95, 208, 138, 0.08); border-color: rgba(95, 208, 138, 0.35); color: #7ce3a8; }
.alert-error { background: rgba(255, 77, 77, 0.08); border-color: rgba(255, 77, 77, 0.35); color: #ff8080; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .booking { grid-template-columns: 1fr; }
  .hero-copy { grid-template-columns: 1fr; gap: 24px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .hero-main { flex-direction: column; align-items: flex-start; }
  .hero-meta { align-items: flex-start; text-align: left; }
}

@media (max-width: 560px) {
  .landing { padding: 0 16px 56px; }
  .booking, .contacts { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .c-label { min-width: 96px; }
}
