:root {
  color-scheme: dark;
  --ink: #090909;
  --black: #0d0c0c;
  --panel: #151313;
  --panel-strong: #1f1b1a;
  --paper: #f4efe5;
  --paper-dim: #d9d0c0;
  --muted: #a89f94;
  --red: #e62c27;
  --red-dark: #8c1918;
  --amber: #f2aa32;
  --line: rgba(244, 239, 229, 0.22);
  --line-strong: rgba(244, 239, 229, 0.42);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 12% 10%, rgba(230, 44, 39, 0.1), transparent 220px),
    var(--black);
  background-size: 100% 3px, auto, auto;
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 11px);
  opacity: 0.7;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.9);
  padding: 13px 32px;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--paper);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 18px;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  min-width: 0;
}

.site-nav a,
.header-cta {
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--amber);
}

.header-cta {
  border: 1px solid var(--red);
  background: var(--red);
  padding: 10px 14px;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(460px, 1.4fr);
  min-height: 620px;
  border-bottom: 1px solid var(--line-strong);
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 78px 32px 70px max(32px, calc((100vw - var(--max)) / 2 + 32px));
}

.hero-copy::after {
  position: absolute;
  top: 0;
  right: -84px;
  bottom: 0;
  z-index: 2;
  width: 168px;
  content: "";
  background:
    linear-gradient(90deg, var(--black), rgba(9, 9, 9, 0.86) 42%, rgba(9, 9, 9, 0)),
    repeating-linear-gradient(18deg, rgba(244, 239, 229, 0.06) 0 2px, transparent 2px 10px);
  clip-path: polygon(0 0, 66% 0, 35% 18%, 76% 35%, 30% 55%, 64% 74%, 22% 100%, 0 100%);
}

.hero-copy > * {
  position: relative;
  z-index: 3;
  min-width: 0;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2 {
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

h1 {
  max-width: 520px;
  margin-bottom: 20px;
  color: var(--paper);
  font-size: 86px;
  line-height: 0.92;
  overflow-wrap: anywhere;
}

h1 span {
  color: var(--red);
}

.hero-copy p {
  max-width: 540px;
  margin-bottom: 28px;
  color: var(--paper-dim);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
}

.hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--panel);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.12), rgba(9, 9, 9, 0.0) 42%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.34), rgba(9, 9, 9, 0.02) 46%, rgba(242, 170, 50, 0.06));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  filter: grayscale(0.72) contrast(1.24) sepia(0.24) saturate(0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 13px 18px;
  color: var(--paper);
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
}

.button.secondary {
  border-color: var(--amber);
  color: var(--amber);
}

.button:hover,
.button:focus-visible {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.fact-strip div {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: 22px 20px;
}

.fact-strip span {
  display: block;
  color: var(--paper);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.fact-strip strong {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.section {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px 32px;
  scroll-margin-top: 86px;
}

.section-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 28px;
  min-width: 0;
}

.section-heading > * {
  min-width: 0;
}

.section-heading > p,
.contact-copy > p {
  margin-bottom: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  color: var(--paper);
  font-size: 45px;
  line-height: 1.02;
}

h3 {
  color: var(--paper);
  font-size: 18px;
  line-height: 1.15;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

p,
li,
span,
strong,
em,
label {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.room-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: stretch;
  min-width: 0;
}

.photo-card {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.photo-card.large {
  min-height: 520px;
}

.photo-card.tall {
  min-height: 520px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.68) contrast(1.22) sepia(0.18) saturate(0.92);
}

.photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0), rgba(9, 9, 9, 0.62)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 6px);
  pointer-events: none;
}

.photo-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 15px;
  left: 18px;
  z-index: 2;
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.room-notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.34fr 1fr 0.42fr;
  gap: 24px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 24px 0;
}

.room-notes h3,
.room-notes p {
  margin-bottom: 0;
}

.room-notes ul {
  margin: 0;
  padding-left: 18px;
  color: var(--paper-dim);
}

.room-notes li {
  margin-bottom: 8px;
}

.room-notes p {
  color: var(--muted);
  font-size: 14px;
}

.pricing-section,
.schedule-section,
.rules-section {
  border-top: 1px solid var(--line-strong);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 0;
}

.price-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  min-width: 0;
}

.price-card.featured {
  border-color: var(--red);
  background:
    linear-gradient(135deg, rgba(230, 44, 39, 0.18), rgba(21, 19, 19, 0.88)),
    var(--panel);
}

.price-card h3 {
  margin-bottom: 12px;
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.price-card p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--paper-dim);
  font-weight: 700;
}

.price-card strong {
  align-self: start;
  color: var(--amber);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 56px;
  line-height: 1;
  white-space: nowrap;
  word-break: normal;
}

.price-card > span {
  grid-column: 2;
  align-self: end;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fee-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
  border: 1px solid var(--line);
  min-width: 0;
}

.fee-list div {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  padding: 18px;
}

.fee-list div:last-child {
  border-right: 0;
}

.fee-list span {
  color: var(--paper-dim);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.fee-list strong {
  color: var(--paper);
  white-space: nowrap;
}

.fine-print {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.schedule-layout,
.floor-layout,
.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: start;
  min-width: 0;
}

.schedule-layout {
  grid-template-columns: 1fr;
}

.schedule-layout .slot-copy {
  max-width: 760px;
}

.slot-copy {
  border-left: 4px solid var(--red);
  padding-left: 20px;
}

.slot-copy h3 {
  margin-bottom: 14px;
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 32px;
}

.slot-copy p {
  color: var(--paper-dim);
}

.slot-times {
  display: grid;
  gap: 10px;
}

.slot-times span {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 14px 16px;
  color: var(--amber);
  font-weight: 950;
}

.availability-scroll {
  min-width: 0;
  overflow-x: auto;
}

.availability-board {
  display: grid;
  grid-template-columns: 118px repeat(7, minmax(100px, 1fr));
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(21, 19, 19, 0.74);
  padding: 14px;
  min-width: 0;
}

.mock-toolbar {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.mock-toolbar span,
.mock-toolbar small {
  color: var(--paper-dim);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.availability-corner,
.availability-day,
.availability-row-label {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 12px;
}

.availability-day {
  color: var(--paper);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.availability-row-label {
  display: grid;
  align-content: center;
  gap: 5px;
}

.availability-row-label strong {
  color: var(--amber);
  font-size: 13px;
  text-transform: uppercase;
}

.availability-row-label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.slot-button {
  display: grid;
  gap: 8px;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--ink);
  padding: 14px;
  color: var(--paper);
  text-align: left;
  cursor: pointer;
}

.slot-button:hover,
.slot-button:focus-visible,
.slot-button.is-selected {
  border-color: var(--amber);
  background: #211a0f;
}

.slot-button.is-unavailable {
  opacity: 0.48;
  cursor: not-allowed;
}

.slot-button span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.slot-button strong {
  font-size: 18px;
  line-height: 1.15;
  word-break: normal;
}

.slot-button em {
  align-self: end;
  color: var(--amber);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.floor-layout img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  background: var(--paper);
  filter: invert(1) grayscale(1) contrast(1.14);
}

.floor-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.floor-notes div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.floor-notes h3 {
  margin-bottom: 6px;
  color: var(--amber);
  font-size: 14px;
}

.floor-notes p {
  margin-bottom: 0;
  color: var(--paper-dim);
  font-size: 14px;
}

.floor-notes .fine-print {
  grid-column: 1 / -1;
}

.rule-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.rule-list p {
  min-height: 132px;
  margin-bottom: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 20px;
  color: var(--paper-dim);
  font-weight: 800;
}

.contact-section {
  max-width: var(--max);
  border-top: 1px solid var(--line-strong);
  padding-bottom: 84px;
}

.contact-copy h2 {
  margin: 12px 0 18px;
}

.contact-copy a {
  color: var(--amber);
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  min-width: 0;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--paper-dim);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.window-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  min-width: 0;
  border: 0;
  padding: 0;
}

.window-toggle legend {
  grid-column: 1 / -1;
  color: var(--paper-dim);
  font-size: 13px;
  font-weight: 950;
}

.window-toggle label {
  display: block;
}

.window-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.window-toggle span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  font-weight: 950;
  text-transform: uppercase;
}

.window-toggle input:checked + span {
  border-color: var(--amber);
  background: #211a0f;
  color: var(--amber);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #0b0b0b;
  color: var(--paper);
  font-size: 15px;
  padding: 12px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #766f68;
}

.contact-form button {
  width: fit-content;
}

.form-status {
  align-self: center;
  min-height: 1.4em;
  margin: 0;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 26px 32px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

.site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 70px 32px 54px;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-media img {
    min-height: 420px;
  }

  h1 {
    font-size: 66px;
  }

  .fact-strip,
  .fee-list,
  .rule-list {
    grid-template-columns: 1fr 1fr;
  }

  .fact-strip div:nth-child(5),
  .fee-list div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .fee-list div {
    border-bottom: 1px solid var(--line);
  }

  .fee-list div:nth-child(2) {
    border-right: 0;
  }

  .fee-list div:nth-child(3) {
    border-bottom: 0;
  }

  .availability-board {
    min-width: 860px;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 12px 18px;
  }

  .brand {
    grid-template-columns: 36px auto;
    font-size: 15px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    padding: 9px 10px;
    font-size: 11px;
  }

  .hero-copy,
  .section,
  .contact-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .fact-strip,
  .section-heading,
  .room-grid,
  .room-notes,
  .pricing-grid,
  .schedule-layout,
  .floor-layout,
  .contact-section,
  .contact-form,
  .rule-list {
    grid-template-columns: 1fr;
  }

  .fact-strip {
    border-left: 0;
  }

  .fact-strip div {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .fact-strip div:nth-child(5) {
    grid-column: auto;
  }

  .photo-card.large,
  .photo-card.tall {
    min-height: 360px;
  }

  .section p,
  .section li,
  .section h2,
  .section h3,
  .fine-print,
  .room-notes ul,
  .slot-copy p {
    max-width: calc(100vw - 40px);
    white-space: normal;
  }

  .room-notes,
  .contact-form .wide {
    grid-column: auto;
  }

  .price-card {
    grid-template-columns: 1fr;
  }

  .price-card > span {
    grid-column: auto;
  }

  .fee-list {
    grid-template-columns: 1fr;
  }

  .fee-list div,
  .fee-list div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fee-list div:last-child {
    border-bottom: 0;
  }

  .floor-notes {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  body,
  main,
  .site-header,
  .hero,
  .hero-copy,
  .hero-copy p,
  .hero-actions,
  .section,
  .contact-section {
    max-width: 100%;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 11px;
  }

  .hero,
  .hero-copy {
    width: 100vw;
    max-width: 100vw;
  }

  .hero-copy {
    padding-right: 20px;
    padding-left: 20px;
  }

  h1 {
    font-size: 46px;
    max-width: calc(100vw - 40px);
  }

  h2 {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    font-size: 30px;
  }

  .hero-copy p {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    font-size: 17px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .hero-actions {
    display: grid;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .mock-toolbar small {
    display: none;
  }

  .photo-card.large,
  .photo-card.tall {
    min-height: 300px;
  }
}
