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

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


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

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

.logo span {
  color: #c1121f;
}


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

.section-title {
  font-size: 52px;
  font-weight: 900;
  line-height: .95;
  margin-bottom: 40px;
}

.section-title span {
  color: #c1121f;
}


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

.page-hero h1 {
  font-size: 90px;
  line-height: .9;
  font-weight: 900;
  margin-bottom: 30px;
}

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

.hero-position {
  font-size: 18px;
  color: #aaa;
  font-weight: 400;
  letter-spacing: .3px;
  margin-bottom: 12px;
  max-width: 560px;
}

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


/* =========================
   NOTICE BAR
========================= */
.notice-bar {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 60px;
  background: #080808;
  border-bottom: 1px solid #1a1a1a;
}

.notice-label {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 11px;
  color: #c1121f;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 2px;
}

.notice-bar p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}


/* =========================
   OFFER SECTION
========================= */
.offers-section {
  padding: 80px 60px;
  border-bottom: 1px solid #222;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 0;
}

.offer-card {
  padding: 40px;
  background: #070707;
  border: 1px solid #1a1a1a;
  position: relative;
}

.offer-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.offer-index {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 11px;
  color: #333;
  letter-spacing: 2px;
}

.offer-format {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 10px;
  color: #c1121f;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #2a0508;
  padding: 4px 8px;
}

.offer-title {
  font-size: 38px;
  font-weight: 900;
  line-height: .95;
  margin-bottom: 18px;
}

.offer-title span {
  color: #c1121f;
}

.offer-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #111;
}

.offer-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.offer-card-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 20px;
  border: 1px solid #c1121f;
  color: #c1121f;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
}

.offer-card-btn:visited {
  color: #c1121f;
}

.offer-card-btn:hover {
  background: #c1121f;
  color: #f5f5f5;
}

.meta-key {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 10px;
  color: #444;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.meta-val {
  font-size: 13px;
  color: #ccc;
  text-align: right;
}


/* =========================
   PRICING TABLE
========================= */
.table-section {
  padding: 80px 60px;
  border-bottom: 1px solid #222;
}

.table-wrapper {
  overflow-x: auto;
  margin-bottom: 24px;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.rate-table thead tr {
  border-bottom: 1px solid #c1121f;
}

.rate-table th {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: #555;
  text-transform: uppercase;
  text-align: left;
  padding: 0 20px 16px 0;
  font-weight: 700;
}

.rate-table td {
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid #111;
  color: #ccc;
  vertical-align: top;
}

.rate-table tbody tr:last-child td {
  border-bottom: none;
}

.rate-val {
  font-weight: 700;
  color: #f5f5f5;
}

.sep-val {
  color: #888;
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 12px;
}

.none-val {
  color: #333;
}

.table-note {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  border-left: 2px solid #1a1a1a;
  padding-left: 20px;
}


/* =========================
   BOOKING POLICY
========================= */
.policy-section {
  padding: 80px 60px;
  border-bottom: 1px solid #222;
}

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

.policy-block {
  padding: 32px;
  background: #070707;
  border: 1px solid #1a1a1a;
}

.policy-label {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: #c1121f;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.policy-body {
  font-size: 14px;
  color: #888;
  line-height: 1.8;
}


/* =========================
   EDITING SCOPE
========================= */
.editing-section {
  padding: 80px 60px;
  border-bottom: 1px solid #222;
}

.editing-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.editing-col {
  padding: 40px;
  background: #070707;
  border: 1px solid #1a1a1a;
}

.editing-col-label {
  font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.editing-col--in .editing-col-label {
  color: #c1121f;
}

.editing-col--out .editing-col-label {
  color: #444;
}

.editing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.editing-list li {
  font-size: 15px;
  color: #ccc;
  padding-left: 16px;
  position: relative;
}

.editing-col--in .editing-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #c1121f;
  font-weight: 700;
}

.editing-col--out .editing-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #333;
}

.editing-addnote {
  margin-top: 24px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  border-left: 2px solid #1a1a1a;
  padding-left: 16px;
}


/* =========================
   TFP NOTE
========================= */
.tfp-note-section {
  padding: 50px 60px;
  border-bottom: 1px solid #222;
}

.tfp-note {
  max-width: 640px;
  border-left: 2px solid #1a1a1a;
  padding-left: 20px;
}

.tfp-note p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}


/* =========================
   INQUIRY CTA
========================= */
.inquiry-section {
  padding: 100px 60px;
  border-bottom: 1px solid #222;
}

.cta-title {
  font-size: 72px;
  font-weight: 900;
  line-height: .9;
  margin-bottom: 28px;
}

.cta-title span {
  color: #c1121f;
}

.cta-body {
  font-size: 16px;
  color: #888;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}


/* =========================
   SUBMIT BUTTON (reused from site)
========================= */
.submit-btn {
  display: inline-block;
  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;
}


/* =========================
   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-logo {
  color: #777;
}

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

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


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

.policy-box {
  position: relative;
  display: block;
  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;
}

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

.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;
  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; }
  .nav-toggle { display: flex; }

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

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

  .notice-bar {
    padding: 20px 28px;
    flex-direction: column;
    gap: 10px;
  }

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

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

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

  .offers-section,
  .table-section,
  .policy-section,
  .editing-section,
  .tfp-note-section,
  .inquiry-section {
    padding: 60px 28px;
  }

  .offer-grid,
  .policy-grid,
  .editing-columns {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .editing-col {
    padding: 28px;
  }

  .offer-title {
    font-size: 30px;
  }

  .section-title {
    font-size: 38px;
  }

  .cta-title {
    font-size: 48px;
  }

  .rate-table th,
  .rate-table td {
    padding-right: 12px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

}


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