@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&display=swap');

/* =========================
   RESET / BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
}


/* =========================
   HEADER / NAV
========================= */
.site-header {
  height: 90px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #050505;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo span {
  color: #c1121f;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #f5f5f5;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

nav a:hover {
  color: #c1121f;
}


/* =========================
   HERO
========================= */
.contact-hero {
  padding: 100px 60px;
  border-bottom: 1px solid #222;
}

.eyebrow {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  color: #c1121f;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.contact-hero h1 {
  font-size: 90px;
  line-height: .9;
  font-weight: 900;
}

.contact-hero h1 span {
  color: #c1121f;
}


/* =========================
   CONTACT BODY
========================= */
.contact-body {
  padding: 60px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-main {
  flex: 1;
  min-width: 0;
}


/* =========================
   INQUIRY SELECTOR
========================= */
.inquiry-select {
  margin-bottom: 50px;
}

.inquiry-select select {
  width: 100%;
  max-width: 400px;
}


/* =========================
   FORMS
========================= */
.inquiry-form h2 {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 24px;
}

.inquiry-form h2 span {
  color: #c1121f;
}

.form-note {
  border-left: 2px solid #c1121f;
  padding: 16px 24px;
  margin-bottom: 40px;
  background: #0a0a0a;
}

.form-note p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}


/* =========================
   FIELDS
========================= */
.field {
  display: flex;
  flex-direction: column;
}

.field-full {
  margin-bottom: 20px;
}

.field-label {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  background: #0a0a0a;
  border: 1px solid #222;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #c1121f;
}

select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

select option {
  background: #0a0a0a;
  color: #f5f5f5;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.helper-text {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  margin-top: 8px;
}

.required {
  color: #c1121f;
}


/* =========================
   BOOKING TYPES
========================= */
.booking-types {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
}

.booking-type {
  flex: 1;
  padding: 18px;
  border: 1px solid #222;
  background: #070707;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  position: relative;
}

.booking-type.available {
  border-color: #c1121f;
}

.booking-type.unavailable {
  opacity: 0.4;
}

.type-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #f5f5f5;
}

.type-status {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.status-available {
  color: #c1121f;
}

.status-unavailable {
  color: #555;
}


/* =========================
   CHECKBOXES
========================= */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #ccc;
  cursor: pointer;
}

.check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  appearance: none;
  background: #0a0a0a;
  border: 1px solid #333;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.check-label input[type="checkbox"]:checked {
  background: #c1121f;
  border-color: #c1121f;
}

.check-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


/* =========================
   WALK THE HALL PANEL
========================= */
.walk-panel {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 110px;
}

.walk-panel-inner {
  border: 1px solid #c1121f;
  background: #070707;
  padding: 24px;
  position: relative;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
}

/* red corner accents */
.walk-panel-inner::before,
.walk-panel-inner::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
}

.walk-panel-inner::before {
  top: -1px;
  right: -1px;
  border-top: 2px solid #f5f5f5;
  border-right: 2px solid #f5f5f5;
}

.walk-panel-inner::after {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid #f5f5f5;
  border-left: 2px solid #f5f5f5;
}

.walk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.walk-prefix {
  font-size: 10px;
  letter-spacing: 1px;
  color: #c1121f;
  text-transform: uppercase;
}

.walk-blink {
  color: #c1121f;
  font-size: 12px;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.walk-title {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #f5f5f5;
  margin-bottom: 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.walk-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 20px;
}

.walk-panel .field {
  margin-bottom: 16px;
}

.walk-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-top: 4px;
}

.walk-check-label input[type="checkbox"] {
  width: 14px;
  height: 14px;
  appearance: none;
  background: #0a0a0a;
  border: 1px solid #333;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.walk-check-label input[type="checkbox"]:checked {
  background: #c1121f;
  border-color: #c1121f;
}

.walk-check-label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.walk-check-label span {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
  line-height: 1.4;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
}

.walk-check-label:hover span {
  color: #f5f5f5;
}


/* =========================
   SUBMIT BUTTON
========================= */
.submit-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 30px;
  background: #c1121f;
  color: #f5f5f5;
  border: none;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
}

.submit-btn:visited {
  color: #f5f5f5;
}

.submit-btn:hover {
  background: #e11928;
  color: #f5f5f5;
}


/* =========================
   FORM SUCCESS STATE
========================= */
.form-success {
  padding-top: 10px;
}

.form-success h2 {
  font-size: 56px;
  line-height: .95;
  font-weight: 900;
  margin-top: 16px;
  margin-bottom: 32px;
}

.form-success h2 span {
  color: #c1121f;
}

.success-note {
  border-left: 2px solid #c1121f;
  padding: 16px 24px;
  margin-bottom: 32px;
  background: #0a0a0a;
}

.success-note p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
}

.success-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #1a1a1a;
  padding: 14px 16px;
  background: #070707;
}

.success-meta-key {
  color: #555;
}

.success-meta-val {
  color: #c1121f;
}


/* =========================
   FOOTER
========================= */
.footer {
  padding: 40px;
  text-align: center;
  color: #777;
  border-top: 1px solid #222;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-weight: 800;
  letter-spacing: 2px;
}

.footer a {
  color: #777;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 2px;
}

.footer a:hover {
  color: #c1121f;
}


/* =========================
   UTILITY
========================= */
.hidden {
  display: none;
}


/* =========================
   MOBILE
========================= */
@media (max-width: 800px) {

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

  nav {
    display: none;
  }

  .contact-hero {
    padding: 60px 28px;
  }

  .contact-hero h1 {
    font-size: 52px;
  }

  .contact-body {
    padding: 40px 28px;
  }

  .contact-body {
    flex-direction: column;
  }

  .walk-panel {
    width: 100%;
    position: static;
  }

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

  .booking-types {
    flex-direction: column;
  }

  .inquiry-form h2 {
    font-size: 32px;
  }
}


/* =========================
   MOBILE NAV — HAMBURGER
========================= */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #f5f5f5;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   MOBILE NAV — OVERLAY
========================= */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.mobile-nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 4px;
  transition: color 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
  color: #c1121f;
  outline: none;
}

body.nav-open {
  overflow: hidden;
}

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

.form-submit-error {
  color: #c1121f;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
