:root {
  --ink: #10213d;
  --muted: #5d6b7c;
  --paper: #ffffff;
  --soft-blue: #eaf6ff;
  --soft-yellow: #fff5cc;
  --soft-green: #eafaf2;
  --blue: #1769ff;
  --blue-dark: #0d46b5;
  --red: #ff4d61;
  --yellow: #ffd23f;
  --green: #1bbf83;
  --line: #d8e1ec;
  --shadow: 0 18px 50px rgba(16, 33, 61, 0.12);
  --radius: 8px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(90deg, rgba(23, 105, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 210, 63, 0.06) 1px, transparent 1px),
    #fbfdff;
  background-size: 42px 42px;
}

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

a {
  color: inherit;
}

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

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  font-weight: 900;
  background:
    linear-gradient(135deg, transparent 0 50%, rgba(255, 255, 255, 0.25) 50%),
    var(--red);
  border: 4px solid var(--yellow);
  box-shadow: 0 0 0 4px rgba(23, 105, 255, 0.16);
}

.brand strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.2;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 0.65rem;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.primary-nav,
.header-actions {
  display: none;
}

.primary-nav.is-open {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.25rem;
  padding: 0.75rem 0 0.25rem;
}

.primary-nav a {
  padding: 0.75rem;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 800;
  color: var(--muted);
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--ink);
  background: var(--soft-yellow);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(16, 33, 61, 0.16);
}

.btn-primary {
  background: var(--red);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--blue-dark);
  border-color: var(--blue);
}

.btn-light {
  background: white;
  color: var(--ink);
}

.btn-call {
  background: var(--soft-blue);
  color: var(--blue-dark);
  border-color: #bdd9ff;
}

.section {
  max-width: var(--content);
  margin: 0 auto;
  padding: 3.25rem 1rem;
}

.section-header {
  max-width: 740px;
  margin-bottom: 1.5rem;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow,
.badge {
  margin: 0 0 0.5rem;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  font-size: clamp(2.5rem, 8vw, 5.8rem);
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3.1rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  color: #334155;
}

.hero {
  min-height: calc(100vh - 78px);
  max-height: 780px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  background:
    linear-gradient(135deg, #1769ff 0%, #1bbf83 58%, #ffd23f 100%);
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 33, 61, 0.86), rgba(16, 33, 61, 0.48), rgba(16, 33, 61, 0.16)),
    linear-gradient(0deg, rgba(16, 33, 61, 0.25), transparent 42%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-content {
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0 3.5rem;
  position: relative;
  z-index: 2;
}

.hero .eyebrow,
.hero p {
  color: white;
}

.hero-subtitle {
  font-size: clamp(1.35rem, 4vw, 2.2rem);
  font-weight: 950;
}

.hero-copy {
  max-width: 670px;
  font-size: 1.08rem;
}

.hero-actions,
.detail-actions,
.form-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

.service-note {
  font-weight: 800;
}

.promise-strip {
  max-width: var(--content);
  margin: -2rem auto 0;
  padding: 0 1rem;
  display: grid;
  gap: 0.85rem;
  position: relative;
  z-index: 2;
}

.promise-strip article {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.promise-strip strong,
.promise-strip span {
  display: block;
}

.promise-strip span {
  color: var(--muted);
  margin-top: 0.2rem;
}

.rental-grid,
.package-grid,
.trust-grid {
  display: grid;
  gap: 1rem;
}

.rental-card,
.package-card,
.info-panel,
.contact-panel,
.booking-panel,
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 33, 61, 0.08);
}

.rental-card {
  overflow: hidden;
}

.rental-image-link {
  display: block;
  background: var(--soft-blue);
}

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

.card-body,
.package-card,
.info-panel,
.contact-panel,
.booking-panel {
  padding: 1rem;
}

.meta {
  color: var(--ink);
  font-weight: 900;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 1rem 0 0;
}

.price-list div {
  min-width: 0;
  padding: 0.65rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft-blue);
  text-align: center;
}

.price-list dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
}

.price-list dd {
  margin: 0.2rem 0 0;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 950;
  line-height: 1;
}

.card-option-group {
  margin: 1rem 0 0;
  padding: 0;
  border: 0;
}

.card-option-group legend {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 950;
}

.duration-options,
.setup-options {
  display: grid;
  gap: 0.45rem;
}

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

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

.option-pill {
  position: relative;
  min-width: 0;
  display: block;
}

.option-pill input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.option-pill span,
.setup-single {
  min-height: 58px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.2rem;
  padding: 0.65rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft-blue);
  color: var(--blue-dark);
  text-align: center;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.setup-single {
  margin-top: 1rem;
  cursor: default;
  font-weight: 950;
}

.option-pill strong,
.option-pill em {
  display: block;
}

.option-pill strong {
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.15;
}

.option-pill em {
  color: var(--blue-dark);
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
}

.option-pill input:checked + span {
  border-color: var(--blue);
  background: #dcecff;
  box-shadow: inset 0 0 0 2px rgba(23, 105, 255, 0.22);
}

.option-pill:focus-within span {
  outline: 3px solid #ffd23f;
  outline-offset: 2px;
}

.wet-note,
.mini-note {
  margin-top: 0.75rem;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius);
  background: var(--soft-blue);
  color: var(--blue-dark);
  font-weight: 850;
}

.wet-note.featured {
  background: var(--soft-blue);
  color: var(--blue-dark);
  border: 1px solid #bdd9ff;
}

.wet-note.muted {
  background: var(--soft-blue);
  color: var(--blue-dark);
}

.card-booking-btn {
  width: 100%;
}

.deposit-mini {
  width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
}

.deposit-notice,
.booking-rules,
.booking-waiver-note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: var(--soft-green);
  border: 1px solid #b8ead5;
}

.deposit-notice.compact {
  max-width: 640px;
}

.deposit-notice.form-note {
  margin: 1rem 0;
}

.deposit-notice strong {
  display: block;
  color: #07583b;
  font-weight: 950;
}

.deposit-notice p,
.booking-rules p,
.booking-waiver-note p {
  color: #205443;
}

.booking-waiver-note strong {
  color: #07583b;
  font-weight: 950;
}

.deposit-notice .btn {
  margin-top: 0.8rem;
}

.timing-list {
  margin-top: 0.75rem;
}

.text-link {
  color: var(--blue-dark);
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.band {
  background: white;
  border-block: 1px solid var(--line);
}

.soft-band {
  background:
    linear-gradient(135deg, rgba(255, 210, 63, 0.34), transparent 38%),
    linear-gradient(315deg, rgba(27, 191, 131, 0.16), transparent 38%),
    #fffdf4;
  border-block: 1px solid #f1df93;
}

.trust-grid article {
  padding: 1rem;
  background: white;
  border-left: 6px solid var(--green);
  border-radius: var(--radius);
}

.trust-grid article:nth-child(2) {
  border-color: var(--blue);
}

.trust-grid article:nth-child(3) {
  border-color: var(--red);
}

.trust-grid article:nth-child(4) {
  border-color: var(--yellow);
}

.trust-grid article:nth-child(5) {
  border-color: var(--green);
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.package-card.featured {
  border-color: var(--red);
  box-shadow: 0 18px 45px rgba(255, 77, 97, 0.18);
}

.price {
  margin: 0;
  color: var(--ink);
}

.price span {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.4rem;
}

.package-card .btn {
  margin-top: auto;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(23, 105, 255, 0.14), transparent 40%),
    linear-gradient(315deg, rgba(255, 77, 97, 0.12), transparent 40%),
    white;
  border-bottom: 1px solid var(--line);
}

.page-hero .section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.detail-hero {
  max-width: var(--content);
  margin: 0 auto;
  padding: 2rem 1rem 1rem;
  display: grid;
  gap: 1.25rem;
}

.detail-copy,
.detail-media {
  min-width: 0;
}

.detail-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: white;
}

.detail-media img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.detail-grid,
.area-layout,
.contact-layout {
  display: grid;
  gap: 1rem;
}

.split-cta {
  display: grid;
  gap: 1rem;
  align-items: center;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  margin-bottom: 3rem;
}

.split-cta p {
  color: #d8e1ec;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.chip-list span {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue-dark);
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  padding: 0.3rem 1rem;
}

summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 950;
}

summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.6rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding-bottom: 1rem;
}

.safety-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.safety-list li {
  margin: 0;
  padding: 0.85rem 1rem;
  background: white;
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(16, 33, 61, 0.08);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

caption {
  text-align: left;
  padding: 1rem;
  font-weight: 950;
}

th,
td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-top: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--ink);
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem;
  border: 1px solid #bcc8d8;
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus-visible,
.nav-toggle:focus-visible,
.primary-nav a:focus-visible,
.mobile-bar a:focus-visible,
summary:focus-visible,
.signature-pad:focus-visible,
.admin-panel td button:focus-visible,
.text-button:focus-visible {
  outline: 3px solid #ffd23f;
  outline-offset: 2px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.8rem;
  background: var(--soft-yellow);
  border-radius: var(--radius);
}

.consent input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 0.15rem;
  flex: 0 0 auto;
}

.form-status {
  min-height: 1.5rem;
  font-weight: 850;
  color: var(--blue-dark);
}

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

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-list a {
  display: block;
  padding: 0.9rem;
  border-radius: var(--radius);
  background: var(--soft-blue);
  color: var(--blue-dark);
  font-weight: 950;
  text-decoration: none;
}

.waiver-callout {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #bdd9ff;
  border-radius: var(--radius);
  background: var(--soft-blue);
}

.waiver-callout .btn {
  margin-top: 0.9rem;
}

.waiver-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.waiver-text-panel,
.waiver-form,
.waiver-summary-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 33, 61, 0.08);
}

.waiver-text-panel,
.waiver-form,
.waiver-summary-card {
  padding: 1rem;
}

.waiver-text-panel article {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.waiver-text-panel h3,
.waiver-summary-card h3 {
  margin-top: 1rem;
}

.legal-note {
  padding: 0.75rem 0.85rem;
  border: 1px solid #f1df93;
  border-radius: var(--radius);
  background: var(--soft-yellow);
  color: #5f4a00;
  font-weight: 850;
}

.waiver-form {
  display: grid;
  gap: 1rem;
}

.waiver-consents {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  border: 0;
}

.waiver-consents legend {
  margin-bottom: 0.25rem;
  font-weight: 950;
}

.signature-section {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid #bdd9ff;
  border-radius: var(--radius);
  background: var(--soft-blue);
}

.signature-pad {
  width: 100%;
  height: 190px;
  border: 2px dashed #7fb0ff;
  border-radius: var(--radius);
  background: white;
  cursor: crosshair;
}

.signature-actions,
.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.timestamp-note {
  margin-top: 0;
  font-size: 0.92rem;
  font-weight: 850;
}

.waiver-summary {
  padding-top: 0;
}

.waiver-summary:empty {
  display: none;
}

.summary-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
}

.summary-list div {
  display: grid;
  gap: 0.15rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  background: var(--soft-blue);
}

.summary-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.summary-list dd {
  margin: 0;
  font-weight: 900;
}

.summary-consents {
  padding-left: 1.1rem;
}

.signature-preview {
  width: min(420px, 100%);
  min-height: 96px;
  margin-top: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

code {
  padding: 0.1rem 0.25rem;
  border-radius: 4px;
  background: rgba(23, 105, 255, 0.1);
  color: var(--blue-dark);
  font-size: 0.92em;
}

.admin-main .page-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.admin-title-row,
.admin-section-top {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.admin-stack,
.admin-grid {
  display: grid;
  gap: 1rem;
}

.admin-panel,
.admin-form,
.customer-detail {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 33, 61, 0.08);
  padding: 1rem;
}

.admin-form {
  display: grid;
  gap: 0.9rem;
  align-self: start;
}

.admin-auth {
  max-width: 680px;
}

.admin-login-form {
  display: grid;
  gap: 1rem;
}

.metric-grid {
  display: grid;
  gap: 0.75rem;
}

.metric-card {
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px solid #bdd9ff;
  border-radius: var(--radius);
  background: var(--soft-blue);
}

.metric-card span,
.metric-card strong {
  display: block;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-card strong {
  margin-top: 0.15rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.05;
}

.admin-filter-row,
.admin-two-column {
  display: grid;
  gap: 1rem;
}

.admin-filter-row label {
  min-width: 0;
}

.admin-panel .table-wrap {
  max-width: 100%;
}

.admin-panel table {
  min-width: 880px;
}

.admin-panel small {
  color: var(--muted);
  font-weight: 800;
}

.table-actions {
  min-width: 190px;
}

.table-actions button,
.text-button,
.admin-panel td button {
  margin: 0.15rem;
  padding: 0.38rem 0.52rem;
  border: 1px solid #bdd9ff;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue-dark);
  font-weight: 850;
  cursor: pointer;
}

.text-button {
  text-align: left;
  border-radius: var(--radius);
}

.status-badge {
  display: inline-flex;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft-blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: capitalize;
}

.status-reserved,
.status-confirmed {
  background: var(--soft-green);
  color: #07583b;
}

.status-completed {
  background: var(--soft-yellow);
  color: #5f4a00;
}

.status-cancelled {
  background: #eef2f7;
  color: #475569;
}

.customer-detail h4 {
  margin: 1rem 0 0;
}

.customer-detail ul {
  margin-top: 0.4rem;
}

.site-footer {
  background: var(--ink);
  color: white;
  padding: 2.5rem 1rem 6rem;
}

.site-footer p,
.site-footer a {
  color: #dce7f3;
}

.footer-inner {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  display: inline-block;
  color: white;
  font-size: 1.5rem;
  font-weight: 950;
  text-decoration: none;
}

.site-footer h2 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
  color: white;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-top: 0.35rem;
  font-weight: 800;
}

.footer-bottom {
  max-width: var(--content);
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #dce7f3;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 34px rgba(16, 33, 61, 0.14);
}

.mobile-bar a {
  min-height: 58px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.05rem;
  padding: 0.45rem 0.35rem;
  text-decoration: none;
  font-weight: 950;
  color: var(--ink);
  line-height: 1.1;
  text-align: center;
}

.mobile-bar span,
.mobile-bar strong {
  display: block;
}

.mobile-bar span {
  font-size: 0.72rem;
  color: var(--muted);
}

.mobile-bar strong {
  font-size: clamp(0.68rem, 3vw, 0.88rem);
  overflow-wrap: anywhere;
}

.mobile-bar a:nth-child(2) {
  border-inline: 1px solid var(--line);
}

.mobile-bar a:last-child {
  background: var(--red);
  color: white;
}

.mobile-bar a:last-child span {
  color: white;
}

@media (min-width: 640px) {
  .promise-strip,
  .rental-grid,
  .package-grid,
  .trust-grid,
  .detail-grid,
  .area-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .contact-layout {
    grid-template-columns: 0.82fr 1.18fr;
  }

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

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

  .admin-filter-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .price-list {
    grid-template-columns: 1fr;
  }

  .setup-options {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
  }

  .primary-nav a {
    padding: 0.6rem 0.7rem;
    font-size: 0.92rem;
  }

  .header-actions {
    display: flex;
    gap: 0.5rem;
  }

  .header-actions .btn {
    padding-inline: 0.85rem;
    font-size: 0.88rem;
  }

  .hero-content {
    margin-left: max(1rem, calc((100vw - var(--content)) / 2));
  }

  .promise-strip,
  .rental-grid,
  .package-grid,
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-hero {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    padding-top: 3rem;
  }

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

  .waiver-layout {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .admin-title-row,
  .admin-section-top {
    grid-template-columns: 1fr auto;
  }

  .admin-two-column {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
  }

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

  .split-cta {
    grid-template-columns: 1fr auto;
  }

  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .mobile-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 1120px) {
  .primary-nav a {
    padding-inline: 0.9rem;
  }

  .header-actions .btn {
    font-size: 0.95rem;
  }
}

@media print {
  body {
    background: white;
  }

  .site-header,
  .site-footer,
  .mobile-bar,
  .hero-actions,
  .form-actions,
  .summary-actions {
    display: none !important;
  }

  .section,
  .page-hero .section {
    max-width: none;
    padding: 1rem 0;
  }

  .waiver-layout,
  .summary-list {
    display: block;
  }

  .waiver-text-panel,
  .waiver-form,
  .waiver-summary-card {
    box-shadow: none;
    break-inside: avoid;
  }
}

/* Live header cleanup - Bounce-Opolis */
.site-header,
.header,
header {
  position: relative;
  z-index: 20;
}

.header-inner,
.nav-wrap,
.site-nav,
.main-nav {
  gap: 1rem;
}

.logo,
.brand {
  flex-shrink: 0;
}

.logo img,
.brand img {
  max-width: 64px;
  height: auto;
}

.brand-title,
.logo-title {
  font-size: 1.25rem;
  line-height: 1.1;
}

.brand-subtitle,
.logo-subtitle {
  font-size: 0.9rem;
  line-height: 1.15;
}

nav,
.site-nav,
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

nav a,
.site-nav a,
.main-nav a {
  font-size: 1rem;
  line-height: 1.15;
  padding: 0.65rem 0.75rem;
  border-radius: 14px;
  white-space: nowrap;
}

.header-actions,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-actions a,
.nav-actions a,
.call-button,
.book-button,
.btn-call,
.btn-book {
  font-size: 1rem;
  line-height: 1.1;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  nav a,
  .site-nav a,
  .main-nav a {
    font-size: 0.95rem;
    padding: 0.55rem 0.6rem;
  }

  .header-actions a,
  .nav-actions a,
  .call-button,
  .book-button,
  .btn-call,
  .btn-book {
    font-size: 0.95rem;
    padding: 0.65rem 0.85rem;
  }
}

@media (max-width: 900px) {
  .header-inner,
  .nav-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  nav,
  .site-nav,
  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
  }

  .header-actions,
  .nav-actions {
    justify-content: space-between;
    width: 100%;
  }
}
