:root {
  --ink: #f7fbff;
  --muted: #aebbc5;
  --line: rgba(104, 210, 255, 0.22);
  --paper: #0d121a;
  --soft: #151b25;
  --deep: #070910;
  --deep-2: #030407;
  --aqua: #39c7ff;
  --coral: #ff3b35;
  --gold: #ffc43d;
  --lime: #7bff94;
  --danger: #ff5b5b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --neon-blue: 0 0 12px rgba(57, 199, 255, 0.65), 0 0 34px rgba(57, 199, 255, 0.25);
  --neon-red: 0 0 12px rgba(255, 59, 53, 0.65), 0 0 34px rgba(255, 59, 53, 0.25);
  --neon-gold: 0 0 12px rgba(255, 196, 61, 0.6), 0 0 30px rgba(255, 196, 61, 0.22);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--deep-2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 59, 53, 0.11), transparent 26%),
    radial-gradient(circle at 82% 6%, rgba(57, 199, 255, 0.12), transparent 28%),
    var(--deep-2);
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--deep);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(3, 4, 7, 0.86);
  border-bottom: 1px solid rgba(57, 199, 255, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 0 10px rgba(57, 199, 255, 0.7));
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, var(--deep), var(--aqua));
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--aqua);
  font-size: 0.78rem;
  text-shadow: var(--neon-blue);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: #dbe7ed;
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a {
  text-decoration: none;
}

.site-nav .nav-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  color: var(--gold);
  background: rgba(255, 196, 61, 0.08);
  border: 1px solid rgba(255, 196, 61, 0.32);
  border-radius: 50%;
  box-shadow: var(--neon-gold);
}

.site-nav .nav-icon-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
  text-shadow: var(--neon-gold);
}

.site-nav .nav-icon-link:hover,
.site-nav .nav-icon-link:focus-visible {
  color: var(--deep-2);
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: max(470px, calc(100vh - 190px));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(48px, 7vw, 98px) clamp(18px, 4vw, 56px);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.96) 0%, rgba(3, 4, 7, 0.73) 42%, rgba(3, 4, 7, 0.15) 78%),
    linear-gradient(180deg, rgba(3, 4, 7, 0.08), rgba(3, 4, 7, 0.7));
}

.hero-content {
  position: relative;
  width: min(620px, 100%);
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--coral);
  text-shadow: var(--neon-red);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3.5rem, 7vw, 6.9rem);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.16), var(--neon-blue);
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.25rem, 4.6vw, 4.8rem);
}

h3 {
  font-size: 1.08rem;
}

p {
  line-height: 1.7;
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.hero-actions,
.form-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.icon-button {
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 850;
  letter-spacing: 0;
}

.button.primary {
  color: #0a0b0f;
  background: var(--gold);
  box-shadow: var(--neon-gold);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--aqua);
  box-shadow: inset 0 0 16px rgba(57, 199, 255, 0.12), var(--neon-blue);
}

.button.ghost {
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
}

.button.danger {
  color: var(--ink);
  background: var(--danger);
}

.button:disabled,
.icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.quick-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(57, 199, 255, 0.18);
}

.quick-bar > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 90px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(9, 13, 20, 0.96);
  color: rgba(255, 255, 255, 0.78);
}

.metric {
  color: var(--gold);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 950;
  line-height: 1;
  text-shadow: var(--neon-gold);
}

.section,
.booking-shell,
.admin-section,
.contact {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: end;
  background: linear-gradient(135deg, rgba(13, 18, 26, 0.96), rgba(7, 9, 16, 0.96));
}

.intro p:last-child {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  align-items: end;
  gap: 30px;
  margin-bottom: 32px;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  gap: 16px;
}

.package-card {
  display: grid;
  gap: 16px;
  min-height: 350px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(21, 27, 37, 0.95), rgba(11, 15, 23, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(23, 32, 31, 0.06);
}

.package-card.is-selected {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 59, 53, 0.18), var(--neon-red);
}

.package-card h3 {
  font-size: 1.32rem;
  line-height: 1.12;
}

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

.package-price {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  color: var(--aqua);
  background: rgba(57, 199, 255, 0.1);
  border: 1px solid rgba(57, 199, 255, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.photo-story {
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 196, 61, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(3, 4, 7, 0.94), rgba(10, 13, 20, 0.96));
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) repeat(2, minmax(210px, 0.75fr));
  grid-auto-rows: minmax(220px, 1fr);
  gap: 14px;
}

.story-card {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid rgba(57, 199, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.story-card-large {
  grid-row: span 2;
}

.story-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.story-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(3, 4, 7, 0.9));
  pointer-events: none;
}

.story-card:hover img {
  filter: saturate(1.1);
  transform: scale(1.025);
}

.story-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 16px;
}

.story-card strong {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.1;
  text-shadow: var(--neon-blue);
}

.story-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(57, 199, 255, 0.15), transparent 30%),
    radial-gradient(circle at left 40%, rgba(255, 59, 53, 0.12), transparent 30%),
    var(--deep-2);
  color: var(--ink);
}

.booking-copy {
  position: sticky;
  top: 104px;
}

.booking-copy h2 {
  color: var(--ink);
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 13px 0 13px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.feature-list li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: -26px;
  margin-right: 14px;
  background: var(--gold);
  box-shadow: var(--neon-gold);
  border-radius: 50%;
}

.booking-panel,
.admin-card,
.admin-login {
  color: var(--ink);
  background: rgba(13, 18, 26, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-panel {
  padding: clamp(18px, 3vw, 28px);
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
}

.booking-steps > button {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 850;
  cursor: pointer;
  text-align: left;
}

.booking-steps > button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.booking-steps > button > span {
  display: grid;
  gap: 2px;
}

.booking-steps b,
.booking-steps small {
  display: block;
  line-height: 1.1;
}

.booking-steps small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.booking-steps strong,
.step-dot {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #090b10;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: var(--neon-gold);
}

.booking-steps .is-active {
  color: var(--ink);
  border-color: rgba(57, 199, 255, 0.42);
  box-shadow: inset 0 0 16px rgba(57, 199, 255, 0.12);
}

.booking-steps .is-active small {
  color: rgba(247, 251, 255, 0.78);
}

.booking-steps .is-complete strong {
  background: var(--lime);
  box-shadow: 0 0 12px rgba(123, 255, 148, 0.4);
}

.booking-step-panel {
  display: grid;
  gap: 20px;
}

.booking-step-panel[hidden] {
  display: none;
}

.wizard-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.wizard-actions .button {
  min-width: 190px;
}

.form-section-title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: rgba(57, 199, 255, 0.08);
  border: 1px solid rgba(57, 199, 255, 0.16);
  border-radius: var(--radius);
}

.form-section-title h3 {
  font-size: 1.08rem;
}

.form-section-title p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

form {
  display: grid;
  gap: 20px;
}

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

label,
legend {
  display: grid;
  gap: 7px;
  color: #dceaf0;
  font-size: 0.83rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: rgba(3, 4, 7, 0.68);
  border: 1px solid rgba(57, 199, 255, 0.28);
  border-radius: 6px;
}

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

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(57, 199, 255, 0.34);
  outline-offset: 2px;
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.calendar-toolbar h3 {
  text-align: center;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--aqua);
  background: rgba(57, 199, 255, 0.08);
  border-radius: 50%;
  border: 1px solid var(--line);
  font-weight: 950;
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-day,
.weekday {
  min-height: 48px;
  border-radius: 6px;
}

.weekday {
  display: grid;
  place-items: center;
  color: var(--aqua);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-day {
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.calendar-day:not(.is-empty):not(:disabled) {
  cursor: pointer;
}

.calendar-day:hover:not(.is-empty):not(:disabled),
.calendar-day:focus-visible:not(:disabled) {
  border-color: var(--aqua);
  box-shadow: var(--neon-blue);
}

.calendar-day.is-selected {
  color: #051016;
  background: var(--aqua);
  box-shadow: var(--neon-blue);
}

.calendar-day.is-empty {
  opacity: 0;
  pointer-events: none;
}

.calendar-day.is-past {
  opacity: 0.45;
}

.calendar-day.is-unavailable {
  color: rgba(247, 251, 255, 0.58);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.04);
}

.calendar-day:disabled {
  cursor: not-allowed;
}

.calendar-day strong {
  font-size: 0.95rem;
}

.day-note {
  min-height: 18px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.calendar-day.is-selected .day-note {
  color: rgba(255, 255, 255, 0.76);
}

.time-modal[hidden] {
  display: none;
}

.time-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
}

.time-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 7, 0.78);
  backdrop-filter: blur(12px);
}

.time-modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(100%, 620px);
  max-height: min(720px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(20px, 4vw, 30px);
  background:
    linear-gradient(180deg, rgba(21, 27, 37, 0.98), rgba(7, 9, 16, 0.98));
  border: 1px solid rgba(57, 199, 255, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--neon-blue);
}

.time-modal-card h3 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.time-modal-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.time-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-weight: 950;
}

.time-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.time-choice {
  display: grid;
  gap: 6px;
  min-height: 96px;
  padding: 18px;
  color: var(--deep-2);
  background: var(--gold);
  border: 1px solid rgba(255, 196, 61, 0.8);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  box-shadow: var(--neon-gold);
}

.time-choice strong {
  font-size: 1.5rem;
  line-height: 1;
}

.time-choice span {
  color: rgba(3, 4, 7, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.time-choice:hover,
.time-choice:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.92), var(--neon-gold);
}

.time-modal-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px;
  color: #ffd0cc;
  background: rgba(255, 59, 53, 0.12);
  border: 1px solid rgba(255, 59, 53, 0.28);
  border-radius: var(--radius);
  font-weight: 850;
}

.slot-area {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.slot-area p {
  margin: 0;
  color: var(--muted);
}

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

.slot-button {
  display: grid;
  gap: 4px;
  min-height: 62px;
  padding: 10px;
  color: var(--ink);
  background: rgba(7, 9, 16, 0.9);
  border: 1px solid rgba(57, 199, 255, 0.26);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 850;
}

.slot-button span {
  color: var(--aqua);
  font-size: 0.74rem;
  font-weight: 850;
}

.slot-button.is-active {
  color: #050505;
  background: var(--gold);
  border-color: var(--coral);
  box-shadow: var(--neon-gold);
}

.slot-button.is-active span {
  color: #321100;
}

.slot-button:disabled {
  color: #77828c;
  background: rgba(255, 255, 255, 0.04);
  cursor: not-allowed;
  text-decoration: none;
  border-color: rgba(255, 59, 53, 0.22);
}

.slot-button:disabled span {
  color: #ff8d88;
}

.addon-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.addon-option {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  min-height: 64px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.addon-option input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.option-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.addon-option span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.waiver-box {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 202, 65, 0.08);
  border: 1px solid rgba(255, 202, 65, 0.28);
  border-radius: var(--radius);
}

.waiver-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.check-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 800;
}

.check-line input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.price-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(57, 199, 255, 0.22);
  border-radius: var(--radius);
}

.price-summary div {
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 18px;
  background: rgba(21, 27, 37, 0.96);
}

.price-summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-summary strong {
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  text-shadow: var(--neon-gold);
}

.booking-review {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(57, 199, 255, 0.22);
  border-radius: var(--radius);
}

.booking-review div,
.booking-review p {
  margin: 0;
  padding: 14px;
  background: rgba(7, 9, 16, 0.92);
}

.booking-review span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-review strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
}

.booking-review p {
  grid-column: 1 / -1;
  color: var(--lime);
  font-weight: 850;
  box-shadow: inset 4px 0 0 var(--lime);
}

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

.confirmation {
  margin-top: 20px;
  padding: 18px;
  color: var(--deep);
  background: #e7f4ef;
  border: 1px solid #b5ddcf;
  border-radius: var(--radius);
}

.confirmation h3 {
  margin-bottom: 8px;
  color: var(--deep-2);
}

.school-inquiry {
  background: var(--paper);
}

.school-form {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 26px);
  background: rgba(21, 27, 37, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.update-strip {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(7, 9, 16, 0.98), rgba(13, 18, 26, 0.98) 58%, rgba(7, 9, 16, 0.98));
  border-top: 1px solid rgba(57, 199, 255, 0.18);
  border-bottom: 1px solid rgba(57, 199, 255, 0.18);
}

.update-strip .section-heading,
.update-grid {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.update-strip .section-heading {
  grid-template-columns: minmax(180px, 0.34fr) minmax(280px, 1fr);
  align-items: start;
  margin-bottom: 24px;
}

.update-strip .section-heading h2 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.14), var(--neon-blue);
}

.update-strip .section-heading p:last-child {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(247, 251, 255, 0.68);
  font-size: 1rem;
}

.update-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 14px;
}

.update-grid[data-update-count="1"] {
  grid-template-columns: minmax(0, 680px);
}

.update-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: clamp(18px, 3vw, 26px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(21, 27, 37, 0.98), rgba(7, 9, 16, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.update-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 86px;
  height: 4px;
  background: var(--gold);
  box-shadow: var(--neon-gold);
}

.update-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.12;
}

.update-card p {
  margin: 0;
  max-width: 62ch;
  color: rgba(247, 251, 255, 0.72);
  line-height: 1.6;
}

.seo-main {
  background:
    radial-gradient(circle at 86% 6%, rgba(57, 199, 255, 0.14), transparent 28%),
    radial-gradient(circle at 12% 32%, rgba(255, 59, 53, 0.1), transparent 26%),
    var(--deep-2);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: rgba(247, 251, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--aqua);
  text-decoration: none;
}

.seo-hero,
.seo-section,
.seo-cta-band,
.local-proof {
  padding: clamp(48px, 7vw, 88px) clamp(18px, 4vw, 56px);
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  min-height: 460px;
  border-bottom: 1px solid rgba(57, 199, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.96), rgba(7, 9, 16, 0.74)),
    url("assets/roller-rink-hero.png") center right / cover;
}

.seo-hero h1 {
  max-width: 15ch;
  font-size: clamp(3rem, 6vw, 6rem);
}

.seo-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 680px;
  color: rgba(247, 251, 255, 0.82);
  font-size: 1.08rem;
}

.answer-card,
.seo-card,
.fact-table,
.faq-list,
.seo-photo-card {
  background: linear-gradient(180deg, rgba(21, 27, 37, 0.96), rgba(9, 13, 20, 0.97));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
}

.answer-card {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 26px);
  border-color: rgba(255, 196, 61, 0.36);
  box-shadow: var(--shadow), var(--neon-gold);
}

.answer-card h2 {
  max-width: none;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.answer-card p,
.seo-card p,
.faq-list p,
.local-proof p {
  margin: 0;
  color: var(--muted);
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(7, 9, 16, 0.94);
  border-bottom: 1px solid rgba(57, 199, 255, 0.16);
}

.mini-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(57, 199, 255, 0.16);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
}

.mini-nav a:hover,
.mini-nav a:focus-visible {
  color: var(--deep-2);
  background: var(--gold);
  box-shadow: var(--neon-gold);
}

.seo-section {
  display: grid;
  gap: 24px;
}

.seo-section-heading {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.seo-section-heading h2 {
  max-width: none;
}

.seo-section-heading p {
  margin: 0;
  color: var(--muted);
}

.seo-grid,
.service-link-grid,
.photo-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.seo-card {
  display: grid;
  gap: 12px;
  min-height: 170px;
  padding: clamp(16px, 2.6vw, 24px);
}

.seo-card h3 {
  max-width: none;
  font-size: 1.28rem;
  line-height: 1.12;
}

.seo-card a,
.service-link-grid a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  color: rgba(247, 251, 255, 0.82);
  line-height: 1.55;
}

.detail-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.62em;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: var(--neon-gold);
}

.fact-table {
  display: grid;
  overflow: hidden;
}

.fact-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 1px;
  background: rgba(57, 199, 255, 0.16);
}

.fact-row + .fact-row {
  border-top: 1px solid rgba(57, 199, 255, 0.16);
}

.fact-row dt,
.fact-row dd {
  margin: 0;
  padding: 16px;
  background: rgba(13, 18, 26, 0.96);
}

.fact-row dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-row dd {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.faq-list details {
  padding: 18px;
  background: rgba(13, 18, 26, 0.96);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
}

.faq-list p {
  margin-top: 10px;
}

.seo-cta-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 196, 61, 0.16), rgba(57, 199, 255, 0.1)),
    rgba(7, 9, 16, 0.98);
  border-top: 1px solid rgba(255, 196, 61, 0.22);
  border-bottom: 1px solid rgba(57, 199, 255, 0.18);
}

.seo-cta-band h2 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.seo-cta-band p {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(247, 251, 255, 0.74);
}

.local-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  background: rgba(13, 18, 26, 0.78);
}

.local-proof h2 {
  max-width: none;
}

.service-link-grid a {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 16px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(21, 27, 37, 0.94), rgba(7, 9, 16, 0.96));
  border: 1px solid rgba(57, 199, 255, 0.18);
  border-radius: var(--radius);
}

.service-link-grid strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.service-link-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.photo-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-photo-card {
  overflow: hidden;
}

.seo-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.seo-photo-card figcaption {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.seo-photo-card strong {
  color: var(--ink);
}

.seo-photo-card span {
  color: var(--muted);
  line-height: 1.45;
}

.site-footer {
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: flex-end;
}

.confirmation-page {
  background: var(--deep-2);
}

.payment-page {
  background: var(--deep-2);
}

.backend-page {
  background: var(--deep-2);
}

.confirmation-main {
  min-height: calc(100vh - 164px);
}

.payment-main {
  min-height: calc(100vh - 164px);
}

.backend-main {
  min-height: calc(100vh - 164px);
}

.confirmation-hero,
.payment-hero {
  padding: clamp(52px, 8vw, 96px) clamp(18px, 4vw, 56px) clamp(34px, 5vw, 64px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.96), rgba(7, 9, 16, 0.82)),
    url("assets/roller-rink-hero.png") center right / cover;
}

.confirmation-hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.payment-hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.confirmation-hero p:not(.eyebrow),
.payment-hero p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.backend-hero {
  padding: clamp(52px, 8vw, 90px) clamp(18px, 4vw, 56px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.98), rgba(7, 9, 16, 0.84)),
    url("assets/roller-rink-hero.png") center / cover;
}

.backend-hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.backend-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.admin-auth-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding-block: clamp(40px, 6vw, 68px);
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.98), rgba(7, 9, 16, 0.9)),
    url("assets/roller-rink-hero.png") center / cover;
}

.admin-auth-hero h1 {
  max-width: none;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.admin-auth-hero p:not(.eyebrow) {
  max-width: 520px;
}

.confirmation-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 420px);
  gap: 18px;
  padding: clamp(18px, 4vw, 56px);
}

.payment-layout {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px) clamp(18px, 4vw, 56px);
}

.backend-lock,
.backend-dashboard {
  margin: clamp(18px, 4vw, 56px);
}

.backend-lock {
  padding: 0;
  background: rgba(13, 18, 26, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.staff-entry-button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 3vw, 26px);
  align-items: center;
  width: 100%;
  min-height: 190px;
  padding: clamp(22px, 4vw, 42px);
  color: var(--ink);
  text-align: left;
  background:
    radial-gradient(circle at 96% 16%, rgba(57, 199, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(13, 18, 26, 0.92), rgba(7, 9, 16, 0.96));
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.staff-entry-button:hover,
.staff-entry-button:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(57, 199, 255, 0.36), var(--neon-blue);
}

.staff-entry-icon {
  display: grid;
  width: clamp(72px, 10vw, 112px);
  height: clamp(72px, 10vw, 112px);
  place-items: center;
  color: var(--deep-2);
  background: var(--gold);
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  box-shadow: var(--neon-gold);
}

.staff-entry-icon svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.staff-entry-copy {
  display: grid;
  gap: 10px;
}

.staff-entry-copy .eyebrow {
  margin: 0;
}

.staff-entry-copy strong {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.95;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.16), var(--neon-blue);
}

.staff-entry-copy small {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
}

.staff-entry-button-compact {
  min-height: 150px;
  padding: clamp(18px, 3vw, 28px);
}

.staff-entry-button-compact .staff-entry-icon {
  width: clamp(64px, 8vw, 88px);
  height: clamp(64px, 8vw, 88px);
}

.staff-entry-button-compact .staff-entry-copy strong {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.backend-lock h2,
.backend-toolbar h2 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.backend-lock p {
  margin-bottom: 0;
  color: var(--muted);
}

.backend-dashboard {
  display: grid;
  gap: 18px;
}

.backend-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.backend-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

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

.stat-card {
  min-height: 118px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(21, 27, 37, 0.96), rgba(10, 13, 20, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(23, 32, 31, 0.06);
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  text-shadow: var(--neon-gold);
}

.backend-filters {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 240px) minmax(180px, 240px);
  gap: 12px;
  padding: 16px;
  background: rgba(13, 18, 26, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.backend-list {
  display: grid;
  gap: 14px;
}

.booking-workspace {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.booking-inbox {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
  max-height: calc(100vh - 112px);
  overflow: auto;
  padding: 14px;
  background: linear-gradient(180deg, rgba(13, 18, 26, 0.96), rgba(7, 9, 16, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-inbox-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 2px 8px;
}

.booking-inbox-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.booking-inbox-list {
  display: grid;
  gap: 14px;
}

.booking-finder {
  display: grid;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(57, 199, 255, 0.12);
  border-radius: var(--radius);
}

.booking-range-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.booking-range-tabs button {
  min-height: 34px;
  padding: 6px 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(57, 199, 255, 0.12);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.booking-range-tabs button.is-active {
  color: #041018;
  background: var(--aqua);
  border-color: rgba(57, 199, 255, 0.78);
  box-shadow: var(--neon-blue);
}

.booking-date-controls {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 8px;
}

.booking-select {
  position: relative;
  display: grid;
  gap: 5px;
}

.booking-select > label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-select-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 36px;
  padding: 7px 9px;
  color: var(--ink);
  background: rgba(3, 4, 7, 0.82);
  border: 1px solid rgba(57, 199, 255, 0.28);
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  text-align: left;
}

.booking-select-button:hover,
.booking-select-button:focus-visible,
.booking-select.is-open .booking-select-button {
  border-color: rgba(57, 199, 255, 0.72);
  background: rgba(57, 199, 255, 0.1);
  box-shadow: var(--neon-blue);
}

.booking-select-chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.booking-select.is-open .booking-select-chevron {
  transform: rotate(225deg) translate(-2px, -1px);
}

.booking-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 25;
  display: none;
  max-height: 250px;
  overflow: auto;
  padding: 6px;
  background: rgba(7, 9, 16, 0.98);
  border: 1px solid rgba(57, 199, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.56), var(--neon-blue);
}

.booking-select.is-open .booking-select-menu {
  display: grid;
  gap: 4px;
}

.booking-select[data-booking-picker="month"] .booking-select-menu {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: none;
}

.booking-select-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 34px;
  padding: 7px 9px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  text-align: left;
}

.booking-select-menu button:hover,
.booking-select-menu button:focus-visible {
  color: var(--ink);
  background: rgba(57, 199, 255, 0.13);
  border-color: rgba(57, 199, 255, 0.26);
}

.booking-select-menu button[aria-selected="true"] {
  color: #08090c;
  background: var(--gold);
  border-color: rgba(255, 201, 61, 0.9);
  box-shadow: var(--neon-gold);
}

.booking-select[data-booking-picker="month"] .booking-select-current {
  display: none;
}

.booking-select-current {
  color: rgba(8, 9, 12, 0.76);
  font-size: 0.58rem;
  font-weight: 950;
  text-transform: uppercase;
}

.booking-day-group {
  display: grid;
  gap: 7px;
}

.booking-day-group h4 {
  position: sticky;
  top: -14px;
  z-index: 1;
  margin: 0;
  padding: 8px 2px 5px;
  color: var(--aqua);
  background: rgba(7, 9, 16, 0.96);
  font-size: 0.78rem;
  text-transform: uppercase;
  text-shadow: var(--neon-blue);
}

.booking-list-card {
  display: grid;
  gap: 5px;
  width: 100%;
  min-height: 82px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(57, 199, 255, 0.13);
  border-left: 4px solid rgba(57, 199, 255, 0.28);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
}

.booking-list-card.pending {
  border-left-color: var(--gold);
}

.booking-list-card.confirmed {
  border-left-color: var(--aqua);
}

.booking-list-card.completed {
  border-left-color: var(--lime);
}

.booking-list-card.cancelled {
  border-left-color: var(--danger);
  opacity: 0.78;
}

.booking-list-card:hover,
.booking-list-card:focus-visible,
.booking-list-card.is-selected {
  border-color: rgba(57, 199, 255, 0.42);
  background: rgba(57, 199, 255, 0.1);
  box-shadow: var(--neon-blue);
}

.booking-list-card strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.05;
}

.booking-list-card > span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.booking-list-date {
  color: var(--aqua) !important;
  font-size: 0.76rem !important;
  font-weight: 950 !important;
  text-transform: uppercase;
}

.booking-list-footer {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.booking-list-footer .status-pill {
  min-height: 21px;
  padding: 3px 7px;
  font-size: 0.62rem;
}

.booking-list-footer b {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.98rem;
  text-shadow: var(--neon-gold);
}

.booking-detail-shell {
  position: sticky;
  top: 92px;
  min-width: 0;
}

.booking-detail-backdrop,
.booking-detail-close {
  display: none;
}

.backend-booking {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 24px);
  background: linear-gradient(180deg, rgba(21, 27, 37, 0.96), rgba(10, 13, 20, 0.98));
  border: 1px solid var(--line);
  border-left: 6px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(23, 32, 31, 0.06);
}

.backend-booking.pending {
  border-left-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(255, 196, 61, 0.1), var(--shadow);
}

.backend-booking.confirmed {
  border-left-color: var(--aqua);
  box-shadow: 0 0 0 1px rgba(57, 199, 255, 0.1), var(--shadow);
}

.backend-booking.completed {
  border-left-color: var(--lime);
}

.backend-booking.cancelled {
  border-left-color: var(--danger);
  opacity: 0.82;
}

.backend-booking.is-focused {
  box-shadow: 0 0 0 4px rgba(238, 95, 75, 0.22), 0 8px 24px rgba(23, 32, 31, 0.06);
}

.backend-booking header,
.booking-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.backend-booking h3 {
  margin-bottom: 6px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.backend-booking header p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.booking-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.booking-summary-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(150px, 0.55fr) minmax(180px, 0.7fr);
  gap: 12px;
}

.booking-summary-card,
.booking-info-card {
  padding: 16px;
  background: rgba(7, 9, 16, 0.62);
  border: 1px solid rgba(57, 199, 255, 0.16);
  border-radius: var(--radius);
}

.booking-summary-primary {
  background:
    linear-gradient(135deg, rgba(57, 199, 255, 0.15), rgba(7, 9, 16, 0.72));
  border-color: rgba(57, 199, 255, 0.34);
}

.booking-summary-card span,
.booking-info-line span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-summary-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 850;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.booking-summary-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.booking-info-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1.1fr);
  gap: 12px;
}

.booking-info-card {
  display: grid;
  gap: 10px;
}

.booking-info-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.booking-info-line {
  display: grid;
  grid-template-columns: minmax(92px, 0.35fr) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding-top: 10px;
  border-top: 1px solid rgba(57, 199, 255, 0.12);
}

.booking-info-line strong {
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.quick-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.quick-link-row a,
.staff-notes-card button {
  min-height: 34px;
  padding: 7px 10px;
  color: #041018;
  background: var(--aqua);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.staff-notes-card textarea {
  width: 100%;
  min-height: 118px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  resize: vertical;
}

.staff-notes-card small {
  color: var(--muted);
  font-weight: 750;
}

.backend-notes {
  margin: 0;
  padding: 14px 16px;
  color: #ffe7a8;
  background: rgba(255, 196, 61, 0.1);
  border: 1px solid rgba(255, 196, 61, 0.24);
  border-radius: var(--radius);
}

.conflict-note {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 850;
}

.conflict-note.safe {
  color: var(--lime);
  background: rgba(123, 255, 148, 0.08);
  border: 1px solid rgba(123, 255, 148, 0.22);
}

.conflict-note.warning {
  color: #ffd0cc;
  background: rgba(255, 59, 53, 0.12);
  border: 1px solid rgba(255, 59, 53, 0.32);
  box-shadow: var(--neon-red);
}

.backend-booking-actions {
  display: grid;
  gap: 10px;
}

.action-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(57, 199, 255, 0.12);
  border-radius: var(--radius);
}

.action-group > span {
  flex: 0 0 84px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.backend-booking-actions button,
.backend-booking-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
}

.backend-booking-actions [data-status="confirmed"] {
  color: #050505;
  background: var(--aqua);
  box-shadow: var(--neon-blue);
}

.backend-booking-actions [data-deposit-status="paid"] {
  color: #050505;
  background: var(--lime);
}

.backend-booking-actions [data-deposit-status="pay_later"] {
  color: #050505;
  background: var(--gold);
}

.backend-booking-actions [data-balance-status="paid"] {
  color: #050505;
  background: var(--lime);
}

.backend-booking-actions [data-balance-status="waived"] {
  color: #050505;
  background: var(--aqua);
}

.backend-booking-actions [data-status="cancelled"],
.backend-booking-actions [data-delete-booking] {
  color: var(--danger);
}

.admin-session {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
  font-weight: 850;
}

.admin-login-panel {
  max-width: 1120px;
}

.admin-auth-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(280px, 1fr);
  gap: 16px;
  align-items: stretch;
}

.admin-auth-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: clamp(18px, 3vw, 26px);
  background: linear-gradient(180deg, rgba(21, 27, 37, 0.96), rgba(10, 13, 20, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-auth-card-muted {
  background: linear-gradient(180deg, rgba(13, 18, 26, 0.94), rgba(7, 9, 16, 0.96));
}

.admin-auth-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.admin-auth-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 16px;
}

.admin-access-form {
  grid-template-columns: 1fr;
  align-items: stretch;
  margin-top: 0;
}

.admin-auth-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}

.admin-auth-form input {
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.admin-auth-form select,
.admin-auth-form textarea {
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.ops-form {
  grid-template-columns: 1fr;
  align-content: start;
  margin-top: 0;
}

.calendar-ops-grid,
.content-manager-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.site-settings-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  margin-bottom: 18px;
}

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

.gallery-manager {
  margin-top: 18px;
}

.admin-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(21, 27, 37, 0.92);
  border: 1px solid rgba(57, 199, 255, 0.16);
  border-radius: var(--radius);
}

.admin-panel h3 {
  margin: 0;
  font-size: 1.1rem;
}

.ops-calendar-list,
.manager-list {
  display: grid;
  gap: 10px;
}

.ops-calendar-day,
.manager-row {
  display: grid;
  gap: 5px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(57, 199, 255, 0.14);
  border-radius: 8px;
}

.ops-calendar-day strong,
.manager-row strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.ops-calendar-day span,
.manager-row span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.ops-calendar-day small {
  color: var(--muted);
  font-weight: 750;
}

.manager-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.gallery-row {
  grid-template-columns: 76px minmax(0, 1fr) auto;
}

.manager-edit-row {
  align-items: start;
}

.manager-edit-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.manager-edit-fields label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.manager-edit-fields input,
.manager-edit-fields select,
.manager-edit-fields textarea {
  min-height: 38px;
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
}

.manager-edit-fields textarea,
.manager-edit-fields .manager-check-line {
  grid-column: 1 / -1;
}

.manager-check-line {
  display: flex;
  align-items: center;
}

.gallery-row img {
  width: 76px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(57, 199, 255, 0.18);
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.row-actions button {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
}

.block-list {
  margin-top: 12px;
}

.form-note.is-error {
  color: #ffd0cc;
}

.operations-board {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(340px, 1.4fr) minmax(220px, 0.9fr) minmax(220px, 0.9fr);
  gap: 12px;
  margin: 18px 0;
}

.operations-panel {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 164px;
  padding: 14px;
  background: rgba(21, 27, 37, 0.92);
  border: 1px solid rgba(57, 199, 255, 0.16);
  border-radius: var(--radius);
}

.operations-panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.operations-panel-heading strong {
  color: var(--ink);
}

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

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

.report-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 132px;
  padding: 16px;
  background: rgba(21, 27, 37, 0.92);
  border: 1px solid rgba(57, 199, 255, 0.16);
  border-radius: var(--radius);
}

.report-card-wide {
  grid-column: span 2;
}

.report-card > span,
.report-signal-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.report-card strong {
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.report-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.report-card em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.report-bars,
.report-signal-list,
.checklist-list {
  display: grid;
  gap: 9px;
}

.report-bar-row {
  display: grid;
  gap: 6px;
}

.report-bar-row > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.report-bar-row strong {
  color: var(--ink);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.report-bar-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.report-bar-row i {
  display: block;
  width: var(--bar-width);
  min-width: 18px;
  height: 7px;
  background: linear-gradient(90deg, var(--aqua), var(--gold));
  border-radius: 999px;
}

.report-signal-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-transform: none;
}

.report-signal-list b {
  color: var(--ink);
}

.checklist-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(57, 199, 255, 0.14);
  border-radius: 8px;
}

.checklist-row span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #041018;
  background: var(--muted);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 950;
}

.checklist-row strong {
  color: var(--ink);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.checklist-done span {
  background: var(--lime);
}

.checklist-warn span {
  background: var(--gold);
}

.mini-calendar-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.mini-day,
.mini-booking,
.lead-actions button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
}

.mini-day {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-height: 88px;
  padding: 9px 4px;
}

.mini-day span,
.mini-day em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.mini-day strong {
  font-size: 1.25rem;
}

.mini-booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
  padding: 8px 10px;
  text-align: left;
}

.mini-booking span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-booking strong,
.mini-empty {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.mini-empty {
  margin: 0;
}

.mini-booking-static {
  cursor: default;
}

.mini-booking-static button {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 6px 9px;
  color: #050505;
  background: var(--gold);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.detail-history-grid {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.timeline-row {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(57, 199, 255, 0.12);
}

.timeline-row strong {
  color: var(--ink);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.timeline-row span,
.timeline-row small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.timeline-row button {
  justify-self: start;
  min-height: 32px;
  padding: 6px 10px;
  color: #050505;
  background: var(--gold);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.notification-failed,
.notification-skipped {
  border-top-color: rgba(255, 59, 53, 0.4);
}

.lead-dashboard {
  margin-top: 24px;
}

.lead-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lead-card {
  min-height: 220px;
  padding: 18px;
  background: rgba(21, 27, 37, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lead-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.25rem;
}

.lead-card > p:not(.eyebrow) {
  color: var(--muted);
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.lead-actions button {
  min-height: 34px;
  padding: 7px 10px;
  font-weight: 850;
}

.empty-state {
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.empty-state h3 {
  font-size: 1.6rem;
}

.empty-state p {
  color: var(--muted);
}

.compact-empty {
  padding: 18px;
}

.compact-empty h3 {
  font-size: 1.35rem;
}

.confirmation-card,
.payment-card,
.next-step-card {
  padding: clamp(20px, 3vw, 30px);
  background: linear-gradient(180deg, rgba(21, 27, 37, 0.96), rgba(10, 13, 20, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.success-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 20px;
  color: var(--deep-2);
  background: var(--gold);
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 950;
}

.pay-later-mark {
  color: var(--deep-2);
  background: var(--aqua);
  box-shadow: var(--neon-blue);
}

.confirmation-card h2,
.payment-card h2,
.confirmation-empty h2,
.next-step-card h2 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.confirmation-lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.payment-status-line {
  margin: 18px 0 0;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 196, 61, 0.08);
  border: 1px solid rgba(255, 196, 61, 0.24);
  border-radius: var(--radius);
  font-weight: 850;
}

.payment-provider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.payment-provider > span {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(135deg, #1d78ff, var(--aqua));
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 950;
  box-shadow: var(--neon-blue);
}

.payment-provider h2 {
  margin: 0;
}

.confirmation-details,
.payment-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 24px 0 0;
  background: rgba(57, 199, 255, 0.22);
  border-radius: var(--radius);
}

.confirmation-details div,
.payment-summary div {
  min-height: 82px;
  padding: 16px;
  background: rgba(7, 9, 16, 0.88);
}

.confirmation-details dt,
.payment-summary dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.confirmation-details dd,
.payment-summary dd {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.payment-callout {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 16px;
  color: var(--deep-2);
  background: var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--neon-gold);
}

.payment-callout strong {
  font-size: 1.2rem;
}

.payment-callout span {
  font-weight: 850;
}

.payment-error {
  padding: 12px 14px;
  border: 1px solid #f0a798;
  border-radius: var(--radius-sm);
  background: #ffe4df;
  color: #7b1d1d;
}

.confirmation-notes {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 196, 61, 0.1);
  border: 1px solid rgba(255, 196, 61, 0.24);
  border-radius: var(--radius);
}

.confirmation-notes p {
  margin: 8px 0 0;
  color: var(--muted);
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.next-step-card {
  align-self: start;
  display: grid;
  gap: 18px;
}

.next-step-card ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.rink-address {
  display: grid;
  gap: 4px;
  padding: 16px;
  color: var(--ink);
  background: rgba(57, 199, 255, 0.1);
  border: 1px solid rgba(57, 199, 255, 0.22);
  border-radius: var(--radius);
}

.schedule {
  background: rgba(7, 9, 16, 0.96);
}

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

.schedule-grid article {
  min-height: 184px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(21, 27, 37, 0.96), rgba(10, 13, 20, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.schedule-grid p {
  color: var(--muted);
}

.schedule-grid strong {
  color: var(--coral);
  font-size: 1.18rem;
}

.about-rink {
  background: rgba(13, 18, 26, 0.94);
}

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

.trust-grid article {
  min-height: 168px;
  padding: 20px;
  background: rgba(21, 27, 37, 0.96);
  border: 1px solid rgba(57, 199, 255, 0.16);
  border-radius: var(--radius);
}

.trust-grid h3 {
  margin: 0 0 8px;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
}

.admin-section {
  background: var(--deep-2);
}

.admin-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 14px;
  align-items: end;
  max-width: 720px;
  padding: 18px;
}

.admin-login.staff-entry {
  display: block;
  max-width: 780px;
  padding: 0;
}

.admin-login p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
}

.admin-card {
  padding: 18px;
}

.admin-card:nth-child(3) {
  grid-column: 1 / -1;
}

.admin-calendar .calendar-day {
  min-height: 76px;
}

.booking-list,
.blocked-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.booking-item,
.blocked-item {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.booking-item header,
.blocked-item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.booking-item p,
.blocked-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pending {
  color: #725115;
  background: #fff1bf;
}

.status-needs_review {
  color: #6a3414;
  background: #ffead1;
}

.status-confirmed {
  color: #0d574c;
  background: #ccefe8;
}

.status-rescheduled {
  color: #16396f;
  background: #dbe9ff;
}

.status-completed {
  color: #31580d;
  background: #e2f3c4;
}

.status-cancelled {
  color: #7b1d1d;
  background: #ffd6d6;
}

.status-paid {
  color: #0d4f1f;
  background: #d5ffd9;
}

.status-unpaid {
  color: #725115;
  background: #fff1bf;
}

.status-pay_later {
  color: #064157;
  background: #d8f5ff;
}

.status-waived,
.status-skipped {
  color: #064157;
  background: #d8f5ff;
}

.status-failed {
  color: #7b1d1d;
  background: #ffd6d6;
}

.item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.item-actions button,
.blocked-item button {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.block-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 60px);
  background: rgba(7, 9, 16, 0.96);
}

address {
  margin: 18px 0;
  color: var(--gold);
  font-style: normal;
  font-size: 1.25rem;
  font-weight: 850;
  line-height: 1.5;
}

.contact p {
  max-width: 470px;
  color: var(--muted);
}

.contact iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.78);
  background: #030407;
  border-top: 1px solid rgba(57, 199, 255, 0.22);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 850;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .package-grid {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
  }

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

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

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

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

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

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

  .admin-workspace {
    grid-template-columns: 1fr;
  }

  .admin-card:nth-child(3) {
    grid-column: auto;
  }

  .booking-workspace {
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  [id] {
    scroll-margin-top: 118px;
  }

  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    min-height: auto;
    padding: 10px 14px 8px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 220px;
    gap: 10px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 8px;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(57, 199, 255, 0.14);
    border-radius: 999px;
    font-size: 0.84rem;
  }

  .site-nav .nav-icon-link {
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 50%;
  }

  .hero {
    min-height: min(680px, calc(100svh - 102px));
    align-items: end;
    padding: 42px 18px 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 4, 7, 0.36), rgba(3, 4, 7, 0.94)),
      linear-gradient(90deg, rgba(3, 4, 7, 0.76), rgba(3, 4, 7, 0.14));
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  h2 {
    max-width: 12ch;
    font-size: clamp(2.05rem, 10vw, 3.5rem);
  }

  .hero p:not(.eyebrow) {
    max-width: 36ch;
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button:only-child {
    grid-column: 1 / -1;
  }

  .button {
    min-height: 46px;
    padding: 12px 14px;
  }

  .quick-bar > div {
    min-height: 64px;
    padding: 14px 18px;
  }

  .metric {
    font-size: 1.75rem;
  }

  .section,
  .booking-shell,
  .admin-section,
  .contact,
  .seo-hero,
  .seo-section,
  .seo-cta-band,
  .local-proof {
    padding: 46px 18px;
  }

  .seo-hero {
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(3, 4, 7, 0.7), rgba(3, 4, 7, 0.98)),
      url("assets/roller-rink-hero.png") center / cover;
  }

  .seo-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.75rem, 13vw, 4.8rem);
  }

  .answer-card h2,
  .seo-cta-band h2 {
    font-size: clamp(1.75rem, 9vw, 3.1rem);
  }

  .quick-bar,
  .intro,
  .section-heading,
  .seo-hero,
  .seo-grid,
  .seo-grid.two,
  .service-link-grid,
  .photo-page-grid,
  .seo-cta-band,
  .local-proof,
  .booking-shell,
  .confirmation-layout,
  .payment-layout,
  .schedule-grid,
  .trust-grid,
  .backend-lock,
  .backend-filters,
  .calendar-ops-grid,
  .content-manager-grid,
  .report-grid,
  .launch-grid,
  .admin-nested-grid,
  .manager-edit-fields,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .update-strip .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .update-strip .section-heading h2 {
    max-width: none;
    font-size: clamp(2.25rem, 12vw, 4.3rem);
  }

  .update-strip .section-heading p:last-child {
    margin-top: 10px;
  }

  .update-grid[data-update-count="1"] {
    grid-template-columns: 1fr;
  }

  .report-card-wide {
    grid-column: auto;
  }

  .booking-copy {
    position: static;
  }

  .package-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .package-grid::-webkit-scrollbar {
    display: none;
  }

  .package-card {
    min-width: min(82vw, 330px);
    min-height: 310px;
    scroll-snap-align: start;
  }

  .story-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .story-card,
  .story-card-large {
    grid-row: auto;
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .story-card img {
    min-height: 0;
  }

  .story-card figcaption {
    padding: 14px;
  }

  .booking-panel {
    padding: 14px;
  }

  .booking-steps {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .booking-steps > button {
    min-height: 38px;
  }

  .booking-steps small {
    display: none;
  }

  .form-section-title {
    padding: 12px;
  }

  .wizard-card {
    padding: 12px;
  }

  .wizard-actions {
    display: grid;
  }

  .wizard-actions .button {
    width: 100%;
    min-width: 0;
  }

  .calendar-toolbar {
    grid-template-columns: 38px 1fr 38px;
  }

  .calendar-toolbar h3 {
    font-size: 1rem;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .mini-calendar {
    gap: 4px;
  }

  .time-modal {
    align-items: end;
    padding: 10px;
  }

  .time-modal-card {
    width: 100%;
    max-height: min(86vh, 760px);
  }

  .weekday {
    min-height: 28px;
    font-size: 0.64rem;
  }

  .calendar-day {
    min-height: 54px;
    padding: 6px 5px;
  }

  .day-note {
    font-size: 0.62rem;
  }

  .package-grid,
  .addon-grid,
  .form-grid,
  .confirmation-details,
  .payment-summary,
  .price-summary,
  .update-grid,
  .lead-card-grid,
  .operations-board,
  .block-form {
    grid-template-columns: 1fr;
  }

  .admin-auth-form,
  .admin-auth-grid,
  .admin-auth-hero,
  .mini-calendar-row {
    grid-template-columns: 1fr;
  }

  .admin-session {
    align-self: auto;
    justify-content: flex-start;
  }

  .package-grid {
    grid-template-columns: none;
  }

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

  .time-modal-grid {
    grid-template-columns: 1fr;
  }

  .slot-button {
    min-height: 58px;
  }

  .addon-option {
    min-height: 58px;
  }

  .price-summary div {
    min-height: 76px;
    padding: 14px;
  }

  .booking-review {
    grid-template-columns: 1fr;
  }

  .booking-review p {
    grid-column: auto;
  }

  .admin-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-login {
    grid-template-columns: 1fr;
  }

  .backend-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .backend-actions {
    justify-content: flex-start;
  }

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

  .stat-card {
    min-height: 94px;
    padding: 14px;
  }

  .booking-workspace {
    grid-template-columns: 1fr;
  }

  .booking-inbox {
    position: static;
    max-height: none;
  }

  .booking-detail-shell {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: block;
    pointer-events: none;
  }

  .booking-detail-shell.is-open {
    pointer-events: auto;
  }

  .booking-detail-backdrop {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(3, 4, 7, 0.72);
    border: 0;
    opacity: 0;
    transition: opacity 160ms ease;
  }

  .booking-detail-shell.is-open .booking-detail-backdrop {
    opacity: 1;
  }

  .booking-detail-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(94vw, 560px);
    height: 100%;
    max-height: 100%;
    overflow: auto;
    border-radius: var(--radius) 0 0 var(--radius);
    transform: translateX(105%);
    transition: transform 180ms ease;
  }

  .booking-detail-shell.is-open .booking-detail-panel {
    transform: translateX(0);
  }

  .booking-detail-close {
    position: sticky;
    top: 0;
    z-index: 1;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    margin-left: auto;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    font-weight: 950;
  }

  .booking-summary-row,
  .booking-info-grid {
    grid-template-columns: 1fr;
  }

  .booking-badges {
    justify-content: flex-start;
  }

  .backend-hero,
  .confirmation-hero {
    padding: 44px 18px;
  }

  .backend-lock,
  .backend-dashboard {
    margin: 18px;
  }

  .backend-lock,
  .backend-filters {
    padding: 14px;
  }

  .staff-entry-button {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
  }

  .backend-booking {
    padding: 14px;
  }

  .backend-booking header {
    flex-direction: column;
    gap: 10px;
  }

  .backend-booking h3 {
    font-size: 1.45rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 8px;
    padding: 8px 12px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .site-nav {
    gap: 6px;
  }

  .site-nav a {
    min-height: 34px;
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: min(560px, calc(100svh - 96px));
    padding: 30px 18px 26px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 4, 7, 0.26), rgba(3, 4, 7, 0.96)),
      linear-gradient(90deg, rgba(3, 4, 7, 0.82), rgba(3, 4, 7, 0.08));
  }

  .form-actions,
  .admin-actions {
    flex-direction: column;
  }

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

  .hero p:not(.eyebrow) {
    max-width: 30ch;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 3rem);
  }

  .button {
    width: 100%;
  }

  .backend-actions,
  .confirmation-actions {
    flex-direction: column;
  }

  .action-group {
    display: grid;
    grid-template-columns: 1fr;
  }

  .action-group > span {
    flex: auto;
  }

  .backend-booking-actions button,
  .backend-booking-actions a {
    width: 100%;
  }

  .stat-grid,
  .booking-summary-row,
  .booking-info-grid {
    grid-template-columns: 1fr;
  }

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

  .quick-bar > div {
    align-items: flex-start;
  }

  .calendar-day {
    min-height: 44px;
    padding: 5px 4px;
  }

  .calendar-day strong {
    font-size: 0.84rem;
  }

  .day-note {
    min-height: 14px;
    font-size: 0.56rem;
  }

  .admin-calendar .calendar-day {
    min-height: 62px;
  }

  .contact iframe {
    min-height: 280px;
  }
}

@media (max-width: 420px) {
  [id] {
    scroll-margin-top: 108px;
  }

  .site-nav a {
    font-size: 0.76rem;
    padding-inline: 9px;
  }

  .section,
  .booking-shell,
  .admin-section,
  .contact {
    padding-inline: 14px;
  }

  .booking-panel {
    padding: 12px;
  }

  .mini-calendar {
    gap: 3px;
  }

  .calendar-day {
    min-height: 40px;
    padding: 4px 3px;
  }

  .weekday {
    font-size: 0.58rem;
  }
}
