@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;
}

.contact-pricing-note {
  margin-top: 24px;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.contact-pricing-note a {
  color: #888;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-pricing-note a:hover {
  color: #c1121f;
}

.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-type-label {
  margin-bottom: 16px;
}

.inquiry-type-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.inquiry-card-wrap {
  display: block;
  cursor: pointer;
}

.inquiry-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  margin: 0;
}

.inquiry-card {
  padding: 22px;
  border: 1px solid #222;
  background: #070707;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  transition: border-color 0.15s, background 0.15s;
  box-sizing: border-box;
  height: 100%;
}

.inquiry-card-wrap:hover .inquiry-card {
  border-color: #333;
  background: #090909;
}

.inquiry-card-wrap:focus-within .inquiry-card {
  outline: 2px solid #c1121f;
  outline-offset: 2px;
}

.inquiry-radio:checked + .inquiry-card {
  border-color: #c1121f;
  border-width: 2px;
  background: rgba(193, 18, 31, 0.07);
}

.inquiry-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.inquiry-card-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f5f5f5;
}

.inquiry-card-status {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c1121f;
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
}

.inquiry-card-status--selective {
  color: #555;
}

.inquiry-card-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
}

.inquiry-card-selected {
  display: none;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c1121f;
}

.inquiry-radio:checked + .inquiry-card .inquiry-card-selected {
  display: block;
}


/* =========================
   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-link {
  color: #888;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-link:hover {
  color: #c1121f;
}

.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;
}

input[type="date"] {
  color-scheme: dark;
}

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

.required {
  color: #c1121f;
}


/* =========================
   BOOKING TYPES
========================= */
.booking-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}

/* Label wrapper — makes the entire tile clickable */
.booking-type-wrap {
  display: block;
  cursor: pointer;
}

/* Visually hidden radio — accessible but not visible */
.booking-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  margin: 0;
}

.booking-type {
  padding: 18px;
  border: 1px solid #222;
  background: #070707;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
  height: 100%;
  box-sizing: border-box;
}

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

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

/* Hover state */
.booking-type-wrap:hover .booking-type {
  background: #0a0305;
}

/* Focus state for keyboard navigation */
.booking-type-wrap:focus-within .booking-type {
  outline: 2px solid #c1121f;
  outline-offset: 2px;
}

/* Selected state */
.booking-radio:checked + .booking-type {
  border-color: #c1121f;
  border-width: 2px;
  background: rgba(193, 18, 31, 0.07);
}

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

.type-detail {
  display: block;
  margin-bottom: 8px;
}

.type-detail-row {
  display: flex;
  gap: 6px;
  font-size: 11px;
  line-height: 1.6;
}

.type-detail-key {
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  min-width: 88px;
}

.type-detail-val {
  color: #999;
}

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

.status-available {
  color: #c1121f;
}

.status-unavailable {
  color: #555;
}

/* Selected indicator — hidden until radio is checked */
.type-selected-mark {
  display: none;
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c1121f;
}

.booking-radio:checked + .booking-type .type-selected-mark {
  display: block;
}


/* =========================
   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-submit-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 14px 20px;
  background: #c1121f;
  color: #f5f5f5;
  border: none;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
}

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

.walk-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.walk-error {
  font-size: 12px;
  color: #c1121f;
  margin-top: 10px;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
}

.walk-success {
  padding-top: 12px;
}

.walk-success-msg {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 13px;
  color: #c1121f;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.walk-invite-link {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 14px 20px;
  background: #c1121f;
  color: #f5f5f5;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
}

.walk-invite-link:hover {
  background: #e11928;
}

.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;
}


/* =========================
   POLICY NOTICE BOX (animated WALK-style callout)
========================= */
.policy-notice-section {
  padding: 40px 60px 0;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* desync the second card's animations so the pair feels alive, not in lockstep */
.policy-grid .policy-box:nth-child(2) .policy-box-scan {
  animation-delay: 1.5s;
}

.policy-grid .policy-box:nth-child(2) .policy-box-blink {
  animation-delay: 0.5s;
}

.policy-box {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #c1121f;
  background: #070707;
  padding: 28px 32px;
  overflow: hidden;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
}

/* white corner brackets — same pattern as .walk-panel-inner */
.policy-box::before,
.policy-box::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
}

.policy-box::before {
  top: -1px;
  right: -1px;
  border-top: 2px solid #f5f5f5;
  border-right: 2px solid #f5f5f5;
}

.policy-box::after {
  bottom: -1px;
  left: -1px;
  border-bottom: 2px solid #f5f5f5;
  border-left: 2px solid #f5f5f5;
}

/* top-edge red scan line — sweeps left to right */
.policy-box-scan {
  position: absolute;
  top: -1px;
  left: -30%;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c1121f, transparent);
  animation: policy-scan 3s linear infinite;
  pointer-events: none;
}

@keyframes policy-scan {
  0%   { left: -30%; }
  100% { left: 100%; }
}

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

.policy-box-prefix {
  font-size: 11px;
  letter-spacing: 2px;
  color: #c1121f;
  text-transform: uppercase;
  font-weight: 700;
}

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

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

.policy-box-desc {
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 22px;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 620px;
}

.policy-box-cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 22px;
  border: 1px solid #c1121f;
  color: #c1121f;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  transition: background 0.15s, color 0.15s;
}

.policy-box-cta:visited {
  color: #c1121f;
}

.policy-box-cta:hover {
  background: #c1121f;
  color: #f5f5f5;
}


/* =========================
   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,
  .inquiry-type-cards {
    grid-template-columns: 1fr;
  }

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

  .policy-notice-section {
    padding: 30px 28px 0;
  }

  .policy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .policy-box {
    padding: 22px 24px;
  }

  .policy-box-title {
    font-size: 20px;
  }
}


/* =========================
   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;
}


/* =========================
   UNIFIED ENTRY-NAV + FOOTER (matches the gallery template)
   Appended late so cascade overrides any older .footer rules on this page.
========================= */
.entry-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  border-bottom: 1px solid #1a1a1a;
  gap: 20px;
}

.nav-btn {
  display: inline-block;
  padding: 14px 22px;
  background: transparent;
  border: 1px solid #2a2a2a;
  color: #ccc;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.nav-btn:hover {
  background: #150505;
  border-color: #c1121f;
  color: #f5f5f5;
}

.nav-btn.primary {
  border-color: #c1121f;
  color: #f5f5f5;
}

.nav-btn.primary:hover {
  background: #c1121f;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  background: #030303;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-inner {
  display: contents;          /* legacy wrapper: render its children as direct flex items of .footer */
}

.footer-logo {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 12px;
  letter-spacing: 3px;
  color: #555;
  text-transform: uppercase;
}

.footer a {
  color: #777;
  text-decoration: none;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.15s;
}

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

.social-link { color: #c1121f !important; }
.social-link:hover { color: #f5f5f5 !important; }

@media (max-width: 800px) {
  .entry-nav {
    padding: 40px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .nav-btn { text-align: center; }
  .footer { padding: 24px 28px; }
}
