:root {
  --bg: #f5f7f8;
  --panel: #ffffff;
  --text: #182026;
  --muted: #65717b;
  --line: #d9e0e5;
  --brand: #0f766e;
  --brand-dark: #115e59;
  --accent: #b45309;
  --ink: #10272a;
  --available: #18894f;
  --held: #b7791f;
  --reserved: #c2413a;
  --disabled: #7a8289;
  --shadow: 0 18px 40px rgba(24, 32, 38, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: inherit;
}

input,
select,
button {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px clamp(14px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  text-decoration: none;
}

.brand::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--brand);
  box-shadow: 6px 6px 0 var(--accent);
}

.nav {
  display: flex;
  gap: 12px;
}

.nav a,
.list-link {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.list-link:hover {
  color: var(--text);
}

.page {
  width: min(1520px, 100%);
  margin: 0 auto;
  padding: clamp(10px, 2vw, 22px);
}

.product-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 410px);
  gap: clamp(24px, 5vw, 64px);
  min-height: min(620px, calc(100vh - 112px));
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 39, 42, 0.96), rgba(16, 39, 42, 0.8) 46%, rgba(16, 39, 42, 0.36)),
    url("/assets/product-hero.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  background: linear-gradient(to bottom, rgba(245, 247, 248, 0), var(--bg));
  pointer-events: none;
}

.hero-copy,
.code-entry,
.hero-product {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: #94e2d8;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.6vw, 4.6rem);
  line-height: 1.03;
}

.hero-lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.hero-proof strong {
  color: #fff;
}

.code-entry {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.hero-product {
  display: grid;
  gap: 14px;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(248, 251, 251, 0.92);
  color: var(--text);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(16, 39, 42, 0.12);
  background: rgba(255, 255, 255, 0.76);
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d0d7dc;
}

.window-bar span:first-child {
  background: var(--reserved);
}

.window-bar span:nth-child(2) {
  background: var(--held);
}

.window-bar span:nth-child(3) {
  background: var(--available);
}

.window-bar strong {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.demo-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 14px;
  padding: 14px;
}

.demo-plan {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(16, 39, 42, 0.16) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(16, 39, 42, 0.12) 49% 51%, transparent 51%),
    #f3f8f7;
}

.demo-room {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(16, 39, 42, 0.22);
  border-radius: 8px;
  color: rgba(16, 39, 42, 0.44);
  font-size: 0.76rem;
  font-weight: 800;
}

.demo-room.large {
  inset: 20px 72px 86px 20px;
}

.demo-room.small {
  right: 18px;
  bottom: 18px;
  width: 108px;
  height: 72px;
}

.demo-spot {
  position: absolute;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 3px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(24, 32, 38, 0.2);
}

.demo-spot.available {
  left: 18%;
  top: 32%;
  background: var(--available);
}

.demo-spot.held {
  right: 24%;
  top: 24%;
  background: var(--held);
}

.demo-spot.reserved {
  right: 18%;
  bottom: 22%;
  background: var(--reserved);
}

.demo-checkout {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.demo-checkout p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.demo-checkout div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.demo-pill {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff3cd;
  color: #7a4d05;
  font-size: 0.78rem;
  font-weight: 900;
}

.code-entry > span {
  font-weight: 900;
  font-size: 1.35rem;
}

.code-entry label {
  margin: 0;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 18px 0 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.product-strip div {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: #fff;
}

.product-strip span,
.feature-card span,
.roadmap-list span {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-strip strong {
  font-size: 1.05rem;
}

.feature-band,
.roadmap-band,
.workflow-band {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-grid,
.bento-grid {
  display: grid;
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.bento-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.feature-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfb;
}

.bento-large {
  grid-row: span 2;
  min-height: 454px;
}

.bento-wide {
  grid-column: span 2;
  min-height: 220px;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.mini-map {
  position: relative;
  min-height: 220px;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(15, 118, 110, 0.16) 47% 49%, transparent 49%),
    linear-gradient(0deg, transparent 58%, rgba(180, 83, 9, 0.15) 58% 60%, transparent 60%),
    #eef6f5;
}

.mini-map i {
  position: absolute;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--available);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(24, 32, 38, 0.2);
}

.mini-map i:nth-child(1) {
  left: 18%;
  top: 22%;
}

.mini-map i:nth-child(2) {
  right: 18%;
  top: 28%;
}

.mini-map i:nth-child(3) {
  left: 36%;
  bottom: 24%;
  background: var(--held);
}

.mini-map i:nth-child(4) {
  right: 28%;
  bottom: 18%;
  background: var(--reserved);
}

.payment-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.payment-preview span,
.payment-preview em {
  color: var(--muted);
  font-style: normal;
}

.payment-preview strong {
  font-size: 1.15rem;
}

.payment-preview em {
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff3cd;
  color: #7a4d05;
  font-weight: 900;
  font-size: 0.82rem;
}

.workflow-band {
  background: var(--ink);
  color: #fff;
}

.workflow-band .section-heading p {
  color: #94e2d8;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.workflow-steps div {
  display: grid;
  gap: 8px;
  min-height: 180px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.workflow-steps span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.workflow-steps strong {
  font-size: 1.15rem;
}

.workflow-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.roadmap-list div {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-left: 4px solid var(--brand);
  background: #f5f8f8;
}

.audience-band,
.admin-benefits-band {
  background: #fff;
}

.use-case-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.use-case-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid #c7dedb;
  border-radius: 999px;
  background: #f0f8f7;
  color: var(--brand-dark);
  font-weight: 900;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.benefit-list article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 170px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfb;
}

.benefit-list h3 {
  margin: 0;
  font-size: 1.05rem;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
}

.final-cta-band {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.final-cta-band p {
  margin: 0;
  color: #94e2d8;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.final-cta-band h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.final-cta-band .button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.booking-shell,
.admin-layout,
.admin-grid {
  display: grid;
  gap: 16px;
}

.booking-shell {
  grid-template-columns: minmax(0, 1fr);
}

.booking-main,
.checkout-panel,
.auth-card,
.receipt,
.empty-state,
.admin-sidebar,
.admin-content,
.reservations,
.admin-section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-main,
.checkout-panel,
.auth-card,
.receipt,
.empty-state,
.admin-sidebar,
.admin-content,
.reservations,
.admin-section {
  padding: clamp(7px, 0.8vw, 11px);
}

.section-heading p,
.admin-header p {
  margin: 0 0 4px;
  color: var(--brand-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow.subtle {
  color: var(--brand-dark);
}

h1,
h2 {
  margin: 0 0 16px;
  line-height: 1.1;
}

.public-reservation-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.public-reservation-head h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.public-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 8px;
}

.public-brand img,
.success-logo {
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.public-brand h1 {
  margin: 0;
}

.public-reservation-head p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.instructions-box,
.payment-help {
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid #c7dedb;
  border-radius: 8px;
  background: #f0f8f7;
}

.instructions-box p,
.payment-help p {
  margin: 0;
  color: var(--text);
}

.instructions-box.compact-contact {
  margin-bottom: 12px;
  padding: 8px 10px;
}

.instructions-box.compact-contact .contact-link {
  margin-top: 0;
}

.contact-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
}

.payment-help {
  display: grid;
  gap: 6px;
}

.payment-help strong {
  color: var(--brand-dark);
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.availability-selector {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(420px, 1.4fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid #c7dedb;
  border-radius: 8px;
  background: #f0f8f7;
}

.availability-selector h2,
.availability-selector p,
.availability-selector label {
  margin: 0;
}

.availability-selector p {
  color: var(--muted);
}

.availability-selector form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: end;
}

.availability-selector select {
  min-width: 0;
  height: 44px;
  font-weight: 900;
  text-overflow: ellipsis;
}

.selected-availability {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid #b7d8d4;
  border-radius: 8px;
  background: #fff;
}

.single-availability-card,
.availability-chip {
  display: grid;
  gap: 2px;
  width: 100%;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #b7d8d4;
  border-radius: 8px;
  background: #fff;
  text-align: left;
}

.single-availability-card strong,
.availability-chip strong {
  overflow: hidden;
  color: var(--brand-dark);
  font-size: 0.98rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.single-availability-card span,
.availability-chip span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.availability-chip-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.availability-chip-list form {
  margin: 0;
}

.availability-chip {
  cursor: pointer;
}

.availability-chip:hover,
.availability-chip.active {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.12);
}

.selected-availability strong {
  overflow: hidden;
  color: var(--brand-dark);
  font-size: 0.98rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-availability span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.booking-steps div {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf9;
}

.booking-steps span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.booking-steps strong {
  font-size: 0.95rem;
}

.checkout-panel h3 {
  margin: 18px 0 12px;
  font-size: 1rem;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.map-scroll {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef3f4;
  touch-action: pan-x pan-y pinch-zoom;
}

.floor-plan {
  position: relative;
  min-width: 720px;
  aspect-ratio: 16 / 10;
  background: repeating-linear-gradient(45deg, #eef3f4, #eef3f4 12px, #e3ebee 12px, #e3ebee 24px);
}

.floor-plan img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.plan-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--muted);
}

.plan-placeholder strong {
  color: var(--text);
}

.spot {
  position: absolute;
  transform: translate(-50%, -50%);
  min-width: 36px;
  min-height: 36px;
  border-radius: 999px;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  user-select: none;
  touch-action: none;
}

button.spot {
  cursor: pointer;
}

.spot.draggable {
  cursor: grab;
}

.spot.dragging {
  cursor: grabbing;
  z-index: 5;
  outline: 3px solid rgba(17, 24, 39, 0.35);
}

.spot.available,
.dot.available {
  background: var(--available);
}

.spot.held,
.dot.held {
  background: var(--held);
}

.spot.reserved,
.dot.reserved {
  background: var(--reserved);
}

.spot.disabled,
.dot.disabled {
  background: var(--disabled);
}

.spot.selected {
  outline: 3px solid #111827;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--text);
  background: #fff;
}

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

input[type="color"] {
  min-height: 36px;
  padding: 6px;
}

input[type="file"] {
  min-height: 36px;
  padding: 7px;
}

input[type="file"]::file-selector-button {
  min-height: 30px;
  margin-right: 10px;
  border: 0;
  border-radius: 6px;
  padding: 6px 10px;
  background: #e7f3f2;
  color: var(--brand-dark);
  font-weight: 800;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  min-height: 32px;
  padding: 5px 9px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--brand-dark);
}

.button:disabled {
  background: #9aa6ad;
  cursor: not-allowed;
}

.button.full {
  width: 100%;
}

.button.small {
  min-height: 32px;
  padding: 6px 10px;
}

.button.secondary {
  background: #e7f3f2;
  color: var(--brand-dark);
}

.button.secondary:hover {
  background: #d5e9e7;
}

.button.danger {
  background: var(--reserved);
  color: #fff;
}

.button.danger:hover {
  background: #9f312b;
}

.button.quiet {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button.quiet:hover {
  background: rgba(255, 255, 255, 0.16);
}

.selection-summary,
.price-total,
.muted,
.alert {
  margin-bottom: 16px;
}

.selection-summary {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf9;
  color: var(--muted);
}

.muted,
.checkout-note {
  color: var(--muted);
}

.price-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-note {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.9rem;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.payment-options legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--muted);
  font-weight: 800;
}

.payment-options label {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.payment-options input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.payment-options span {
  display: grid;
  gap: 3px;
  min-height: 74px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.payment-options small {
  color: var(--muted);
}

.payment-options input:checked + span {
  border-color: var(--brand);
  background: #edf8f6;
  box-shadow: inset 0 0 0 1px var(--brand);
}

.payment-options input:focus-visible + span {
  outline: 3px solid rgba(15, 118, 110, 0.24);
  outline-offset: 2px;
}

.skeleton-line {
  display: block;
  width: 100%;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e5eaee, #f7f9fa, #e5eaee);
  animation: pulse 1.1s infinite;
}

@keyframes pulse {
  0% { opacity: 0.55; }
  50% { opacity: 1; }
  100% { opacity: 0.55; }
}

.auth-card,
.receipt,
.empty-state {
  max-width: 680px;
  margin: 0 auto;
}

.auth-card-wide {
  max-width: 760px;
}

.auth-intro,
.auth-alt {
  color: var(--muted);
}

.auth-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.auth-form-full,
.auth-actions-row {
  grid-column: 1 / -1;
}

.auth-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.auth-alt {
  margin: 16px 0 0;
}

.auth-alt a {
  color: var(--brand-dark);
  font-weight: 800;
}

.captcha-challenge {
  display: grid;
  grid-template-columns: minmax(220px, 292px) minmax(0, 1fr);
  gap: 14px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf9;
}

.captcha-visual {
  display: flex;
  align-items: center;
  min-height: 104px;
}

.captcha-image {
  display: block;
  width: 100%;
  max-width: 292px;
  height: auto;
}

.captcha-image rect {
  fill: #eef4f3;
}

.captcha-marks {
  fill: var(--ink);
}

.captcha-noise {
  fill: none;
  stroke: rgba(15, 118, 110, 0.22);
  stroke-width: 2;
  stroke-linecap: round;
}

.success-shell {
  display: grid;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.success-hero,
.receipt-card,
.payment-instructions {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.success-hero {
  padding: clamp(22px, 4vw, 38px);
}

.success-logo {
  margin-bottom: 16px;
}

.success-hero h1 {
  max-width: 760px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.success-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.receipt-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.receipt-card,
.payment-instructions {
  padding: clamp(18px, 3vw, 28px);
}

.receipt-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.receipt-card-head p {
  margin: 0 0 4px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-card-head h2 {
  margin: 0;
}

.receipt-card-head > strong {
  height: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e7f3f2;
  color: var(--brand-dark);
}

.receipt-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.receipt-details div {
  display: grid;
  gap: 5px;
  min-height: 84px;
  padding: 14px;
  background: #fff;
}

.receipt-details dt {
  color: var(--muted);
  font-size: 0.86rem;
}

.receipt-details dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 900;
}

.payment-instructions {
  position: sticky;
  top: 82px;
}

.payment-instructions h2 {
  font-size: 1.45rem;
}

.payment-instructions p {
  color: var(--text);
}

.receipt-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.alert {
  padding: 12px;
  border-radius: 8px;
  color: #7f1d1d;
  background: #fee2e2;
}

.notice {
  padding: 12px 14px;
  border: 1px solid #bde5d0;
  border-radius: 8px;
  background: #ecfdf3;
  color: #11613a;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dff7ea;
  color: #11613a;
  font-weight: 800;
}

.status-pill.pending_payment {
  background: #fff3cd;
  color: #7a4d05;
}

.status-pill.paid {
  background: #dff7ea;
  color: #11613a;
}

.status-pill.not_required {
  background: #e7f3f2;
  color: #0f766e;
}

.code-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e7f3f2;
  color: var(--brand-dark);
  font-weight: 800;
}

.code-form,
.assign-form {
  display: grid;
  gap: 12px;
}

.availability-mode-form,
.availability-date-form {
  display: grid;
  gap: 10px;
}

.availability-date-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.availability-date-form .button {
  align-self: end;
}

.check-field {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  font-weight: 800;
}

.check-field input {
  width: auto;
}

.availability-submit-row {
  display: flex;
  align-items: end;
  justify-content: flex-end;
}

.availability-list {
  display: grid;
  gap: 8px;
}

.availability-item {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.availability-item-main {
  display: grid;
  gap: 3px;
}

.availability-item-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.availability-item-actions form {
  margin: 0;
}

.availability-list span,
.availability-list small {
  color: var(--muted);
}

.muted-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--muted);
}

.receipt dl {
  display: grid;
  gap: 12px;
}

.receipt dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.receipt dt {
  color: var(--muted);
}

.receipt dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.admin-layout {
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: 65px;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  overflow-x: hidden;
}

.admin-content {
  min-width: 0;
}

.sidebar-head,
.admin-header {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.sidebar-head h1 {
  margin: 0;
  font-size: 1.22rem;
}

.sidebar-head {
  align-items: flex-start;
}

.sidebar-head .link-button {
  padding-top: 4px;
}

.admin-header h1 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.admin-header-actions,
.upload-form,
.spot-form,
.assign-form,
.export-actions {
  display: flex;
  gap: 12px;
  align-items: end;
  flex-wrap: wrap;
}

.admin-header {
  align-items: flex-start;
  flex-wrap: wrap;
}

.admin-header-actions {
  justify-content: flex-start;
}

.admin-header-actions .button,
.export-actions .button {
  white-space: nowrap;
}

.export-actions {
  align-items: stretch;
}

.export-actions form {
  margin: 0;
}

.reservation-filter-form {
  display: flex;
  gap: 10px;
  align-items: end;
  flex-wrap: wrap;
  margin: 10px 0;
}

.reservation-filter-form label {
  min-width: min(280px, 100%);
}

.public-page-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.public-page-form .wide-field,
.public-page-form .spot-list-actions,
.logo-preview {
  grid-column: 1 / -1;
}

.logo-preview {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.logo-preview img {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.stack {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.stack.compact {
  margin-top: 12px;
}

.admin-content {
  display: grid;
  gap: 12px;
}

.admin-section {
  box-shadow: none;
}

.admin-section h2 {
  font-size: 1.12rem;
}

.section-hint {
  margin: -3px 0 10px;
  color: var(--muted);
}

.admin-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.share-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 22px;
  align-items: center;
}

.share-main {
  min-width: 0;
}

.public-link-field {
  margin-bottom: 14px;
}

.public-link-field input {
  font-weight: 700;
}

.qr-panel {
  display: grid;
  justify-items: stretch;
}

.qr-panel img {
  display: block;
  width: 100%;
  max-width: 190px;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #fff;
}

.spot-form {
  align-items: end;
}

.spot-form label {
  min-width: 150px;
  flex: 1;
}

.auto-spots-section {
  display: grid;
  gap: 14px;
}

.remove-all-section {
  display: grid;
  gap: 12px;
  border-color: #f1c0c0;
  background: #fffafa;
}

.compact-title-row {
  align-items: start;
}

.range-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid #c7dedb;
  border-radius: 8px;
  background: #f0f8f7;
  color: var(--brand-dark);
  white-space: nowrap;
}

.danger-counter {
  border-color: #f1c0c0;
  background: #fff1f2;
  color: #991b1b;
}

.auto-spots-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 220px) minmax(240px, auto);
  gap: 14px;
  align-items: end;
}

.auto-spots-actions {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}

.auto-spots-form label {
  margin-bottom: 0;
}

.range-field {
  gap: 10px;
}

input[type="range"] {
  min-height: 44px;
  padding: 0;
  accent-color: var(--brand);
}

.range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: -8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.auto-spots-hint {
  margin: 0;
}

.coords {
  color: var(--muted);
  font-size: 0.92rem;
}

.compact-coords {
  white-space: nowrap;
}

.section-title-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.section-title-row h2,
.section-title-row p {
  margin: 0;
}

.section-title-row p {
  color: var(--muted);
}

.admin-disclosure {
  margin-top: 10px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.admin-disclosure summary {
  cursor: pointer;
  color: var(--brand-dark);
  font-weight: 800;
}

.house-link {
  display: grid;
  gap: 3px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
}

.house-link:hover,
.house-link.active {
  border-color: #c7dedb;
  background: #f0f8f7;
}

.house-link code {
  color: var(--muted);
  font-size: 0.82rem;
}

.upload-section {
  padding-top: 16px;
  padding-bottom: 16px;
}

.upload-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.upload-form label,
.assign-form label {
  flex: 1;
  margin-bottom: 0;
  min-width: 0;
}

.upload-form input[type="file"] {
  max-width: 100%;
}

.map-scroll {
  scrollbar-width: thin;
}

.editable-map {
  width: 100%;
  min-width: 0;
  background: #fff;
  overflow: hidden;
  cursor: crosshair;
}

.editable-map img {
  object-fit: contain;
}

.spot-list {
  display: grid;
  gap: 6px;
}

.spot-list-head,
.spot-edit-row {
  display: grid;
  gap: 8px;
  align-items: center;
}

.spot-list-head {
  grid-template-columns: 90px 110px 110px 120px minmax(170px, 1fr) 104px;
}

.spot-edit-row {
  grid-template-columns: 90px 110px 110px 120px minmax(170px, 1fr);
}

.spot-list-head {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spot-list-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.spot-list-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.spot-edit-row input,
.spot-edit-row select {
  min-width: 0;
}

.hidden-form {
  display: none;
}

.spot-delete-form {
  display: flex;
  align-items: center;
}

.payment-form {
  display: grid;
  grid-template-columns: 110px 95px minmax(120px, 1fr) minmax(120px, 1fr) auto;
  gap: 8px;
  min-width: 620px;
}

.payment-admin-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.payment-admin-card.pending {
  border-color: #ead7a4;
  background: #fffaf0;
}

.payment-admin-card.paid {
  border-color: #bde5d0;
  background: #f5fbf7;
}

.payment-admin-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.payment-admin-head strong {
  color: var(--text);
}

.payment-admin-head span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: right;
}

.payment-register-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.payment-register-form label {
  margin-bottom: 0;
  min-width: 0;
  font-size: 0.88rem;
}

.payment-register-form input,
.payment-register-form select {
  min-width: 0;
}

.payment-notes-field {
  grid-column: span 2;
}

.payment-register-form .button {
  grid-column: span 2;
  width: 100%;
  white-space: nowrap;
}

.payment-admin-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.payment-admin-details div {
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding: 10px;
  background: #fff;
}

.payment-admin-details dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.payment-admin-details dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 800;
}

.link-button.danger {
  color: var(--reserved);
  margin: 0;
  font-size: 0.9rem;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 0.86rem;
}

.table-subtext {
  color: var(--muted);
  font-size: 0.86rem;
}

.spot-code {
  font-size: 1.04rem;
  color: var(--ink);
}

.payer-card {
  display: grid;
  gap: 5px;
  min-width: 200px;
  max-width: 300px;
}

.payer-card strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.payer-card span {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 7px;
  align-items: baseline;
  min-width: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.25;
}

.payer-card b {
  flex: 0 0 auto;
  color: var(--brand-dark);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.payer-card a {
  color: inherit;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.payer-card a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

.compact-status-card {
  max-width: 240px;
}

.compact-status-card .payment-admin-head {
  display: grid;
  gap: 3px;
  align-items: start;
}

.inline-edit {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.inline-edit summary {
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 900;
}

.customer-edit-form {
  display: grid;
  gap: 8px;
  min-width: min(280px, 72vw);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.customer-edit-form label {
  margin-bottom: 0;
}

.customer-edit-form input {
  min-height: 38px;
}

.compact-payment {
  grid-template-columns: 100px 80px minmax(100px, 1fr) minmax(100px, 1fr) auto;
  min-width: 560px;
}

.admin-layout-compact {
  grid-template-columns: 200px minmax(0, 1fr);
}

.admin-workspace {
  gap: 10px;
  overflow: hidden;
}

.admin-commandbar {
  position: static;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.admin-commandbar > div {
  min-width: 0;
}

.admin-commandbar .admin-header-actions {
  justify-content: flex-end;
}

.admin-commandbar p {
  margin: 0 0 4px;
  color: var(--brand-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.admin-commandbar h1 {
  margin-bottom: 6px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.admin-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.admin-kpis div {
  display: grid;
  gap: 3px;
  min-height: 56px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-kpis span {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.76rem;
}

.admin-kpis strong {
  font-size: 1.32rem;
  line-height: 1;
}

.admin-tabs {
  position: sticky;
  top: 62px;
  z-index: 11;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  scrollbar-width: thin;
}

.admin-tabs button {
  flex: 0 0 auto;
  min-height: 31px;
  border: 0;
  border-radius: 7px;
  padding: 6px 9px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.admin-tabs button:hover,
.admin-tabs button.active {
  background: #e7f3f2;
  color: var(--brand-dark);
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.active {
  display: grid;
  gap: 14px;
}

.map-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 10px;
  align-items: start;
}

.map-stage {
  min-width: 0;
}

.map-tools {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 10px;
}

.spot-form.vertical,
.upload-form.vertical {
  display: grid;
  gap: 8px;
}

.spot-form.vertical label,
.upload-form.vertical label {
  min-width: 0;
  margin-bottom: 0;
}

.compact-spots .spot-list-row {
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.compact-spots .spot-list-row.is-highlighted {
  border-color: var(--brand);
  background: #f0f8f7;
}

.compact-spots .spot-edit-row {
  grid-template-columns: minmax(64px, 0.7fr) 82px 82px 96px minmax(140px, 1fr);
}

.compact-spots .spot-list-head {
  grid-template-columns: minmax(64px, 0.7fr) 82px 82px 96px minmax(140px, 1fr) 78px;
  padding: 0 6px;
}

.admin-tab-panel .share-section,
.admin-tab-panel .admin-section {
  margin-bottom: 0;
}

@media (min-width: 980px) {
  .booking-shell {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
  }

  .checkout-panel {
    position: sticky;
    top: 16px;
  }
}

@media (max-width: 1120px) {
  .feature-grid,
  .bento-grid,
  .benefit-list,
  .roadmap-list,
  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .code-entry {
    max-width: 520px;
  }

  .hero-product {
    max-width: 720px;
  }

  .bento-large,
  .bento-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .admin-layout,
  .admin-main-grid,
  .share-section,
  .receipt-grid,
  .map-workbench {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-commandbar,
  .admin-tabs,
  .map-tools {
    position: static;
  }

  .admin-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qr-panel {
    max-width: 220px;
  }

  .payment-instructions {
    position: static;
  }

  .spot-list-head {
    display: none;
  }

  .spot-edit-row {
    grid-template-columns: 1fr 1fr;
  }

  .compact-spots .spot-edit-row {
    grid-template-columns: 1fr 1fr;
  }

  .payment-form {
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }

  .payment-admin-card {
    min-width: 0;
  }

  .payment-register-form,
  .payment-admin-details {
    grid-template-columns: 1fr;
  }

  .payment-notes-field {
    grid-column: auto;
  }

  .reservations-table,
  .reservations-table thead,
  .reservations-table tbody,
  .reservations-table tr,
  .reservations-table th,
  .reservations-table td {
    display: block;
  }

  .reservations-table thead {
    display: none;
  }

  .reservations-table tr {
    display: grid;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .reservations-table td {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 0;
    border-bottom: 0;
  }

  .reservations-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .payer-card {
    min-width: 0;
    max-width: none;
  }

  .compact-status-card {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 14px;
  }

  .topbar {
    padding: 12px 14px;
  }

  .nav {
    gap: 8px;
    font-size: 0.92rem;
  }

  .product-hero {
    min-height: auto;
    padding: 28px 18px;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .product-strip,
  .feature-grid,
  .bento-grid,
  .benefit-list,
  .roadmap-list,
  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-product .code-entry {
    order: -1;
  }

  .hero-product .product-window {
    order: 1;
  }

  .feature-card {
    min-height: 0;
  }

  .demo-board {
    grid-template-columns: 1fr;
  }

  .demo-checkout {
    display: none;
  }

  .payment-preview {
    grid-template-columns: 1fr;
  }

  .floor-plan {
    min-width: 620px;
  }

  .admin-header,
  .public-reservation-head,
  .spot-form,
  .auto-spots-form,
  .section-title-row,
  .receipt dl div {
    align-items: stretch;
    flex-direction: column;
  }

  .auto-spots-form {
    grid-template-columns: 1fr;
  }

  .editable-map {
    min-width: 0;
  }

  .booking-steps,
  .availability-selector,
  .availability-selector form,
  .availability-chip-list,
  .payment-options,
  .receipt-details,
  .public-page-form,
  .availability-date-form,
  .auth-form-grid,
  .captcha-challenge {
    grid-template-columns: 1fr;
  }

  .availability-item {
    align-items: stretch;
    flex-direction: column;
  }

  .availability-item-actions {
    justify-content: flex-start;
  }
}

@media print {
  .topbar,
  .button,
  .receipt-actions,
  .nav {
    display: none;
  }

  body {
    background: #fff;
  }

  .page {
    width: 100%;
    padding: 0;
  }

  .success-shell {
    max-width: none;
  }

  .success-hero,
  .receipt-card,
  .payment-instructions,
  .receipt {
    box-shadow: none;
  }

  .payment-instructions {
    position: static;
  }
}
