:root {
  color-scheme: light;
  --ink: #1f2930;
  --muted: #63717b;
  --line: #d9e1e7;
  --paper: #ffffff;
  --surface: #f5f9fb;
  --surface-strong: #e8f2f0;
  --teal: #117c78;
  --teal-dark: #0b5f5c;
  --coral: #e56f3f;
  --amber: #f3b64b;
  --mint: #cfe9dd;
  --danger: #b42318;
  --success: #137a48;
  --shadow: 0 18px 44px rgba(31, 41, 48, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}

body.has-page-loader {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  border: 0;
}

button {
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 68px;
  width: 100%;
  max-width: 100vw;
  padding: 12px clamp(16px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 225, 231, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand span:last-child {
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: var(--radius);
}

.brand-logo {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(207, 233, 221, 0.72), rgba(255, 255, 255, 0.92)),
    var(--surface);
  transition: opacity 520ms ease, visibility 520ms ease;
}

.page-is-ready .page-loader {
  opacity: 0;
  visibility: hidden;
}

.loader-book {
  position: relative;
  width: min(230px, 58vw);
  aspect-ratio: 1.38;
  perspective: 1000px;
}

.loader-page,
.loader-cover,
.loader-logo {
  position: absolute;
}

.loader-page {
  inset: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 18px 38px rgba(31, 41, 48, 0.18);
}

.loader-page::before,
.loader-page::after {
  content: "";
  position: absolute;
  inset: 28px 24px auto;
  height: 8px;
  background: var(--surface-strong);
  border-radius: 999px;
  box-shadow:
    0 24px 0 var(--surface-strong),
    0 48px 0 rgba(229, 111, 63, 0.16);
}

.loader-page::after {
  top: auto;
  bottom: 28px;
  left: 50%;
  width: 1px;
  height: auto;
  background: var(--line);
  box-shadow: none;
}

.loader-cover {
  top: 0;
  bottom: 0;
  width: 50%;
  background: var(--teal);
  box-shadow: 0 18px 38px rgba(31, 41, 48, 0.18);
  animation-duration: 1400ms;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.22, 0.78, 0.22, 1);
}

.loader-cover-left {
  left: 0;
  border-radius: 8px 0 0 8px;
  transform-origin: left center;
  animation-name: openBookLeft;
}

.loader-cover-right {
  right: 0;
  border-radius: 0 8px 8px 0;
  transform-origin: right center;
  animation-name: openBookRight;
}

.loader-cover-left::after,
.loader-cover-right::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.loader-cover-left::after {
  right: 0;
}

.loader-cover-right::after {
  left: 0;
}

.loader-logo {
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 78px;
  height: 78px;
  object-fit: contain;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  animation: revealLoaderLogo 760ms ease 520ms both;
}

@keyframes openBookLeft {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(-76deg);
  }
}

@keyframes openBookRight {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(76deg);
  }
}

@keyframes revealLoaderLogo {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.top-nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.top-nav a:hover {
  color: var(--teal-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 38px;
  padding-inline: 12px;
  font-size: 0.92rem;
}

.button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-ghost:hover {
  color: var(--teal-dark);
  background: var(--surface-strong);
  border-color: var(--surface-strong);
}

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

.button-secondary:hover {
  color: var(--ink);
  background: #e5a82f;
  border-color: #e5a82f;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.7rem;
  line-height: 1;
}

.hero-section {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: clamp(36px, 8vw, 86px) clamp(16px, 5vw, 70px) clamp(28px, 6vw, 58px);
  background:
    linear-gradient(135deg, rgba(17, 124, 120, 0.12), rgba(229, 111, 63, 0.08)),
    var(--paper);
}

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

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

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.65rem, 4.2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.hero-actions .button {
  flex: 1 1 190px;
}

.hero-stats {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

.hero-stats div {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-stats dt {
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.hero-stats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-stats li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  color: var(--teal-dark);
  background: var(--surface-strong);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-photo {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.section-band {
  padding: clamp(42px, 7vw, 82px) clamp(16px, 5vw, 70px);
  background: var(--paper);
}

.section-light {
  background: var(--surface);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading-inline {
  max-width: none;
}

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

.feature-card,
.review-card,
.admin-panel,
.booking-panel,
.booking-summary,
.admin-login {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card,
.review-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.feature-card p,
.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.pricing-card {
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(31, 41, 48, 0.08);
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.pricing-card strong {
  color: var(--teal-dark);
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
}

.pricing-duration span {
  color: inherit;
  font-size: inherit;
  text-transform: inherit;
}

.pricing-hour-rate,
.pricing-row span {
  color: var(--muted);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.pricing-duration {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.pricing-card-wide {
  margin-top: 16px;
}

.pricing-stage-layout,
.pricing-stage-details,
.pricing-stage-rate {
  display: grid;
  gap: 10px;
}

.pricing-stage-details strong {
  width: fit-content;
}

.pricing-stage-rate {
  align-content: start;
}

.pricing-stage-rate .pricing-note {
  display: grid;
  gap: 2px;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--surface-strong);
  border-radius: var(--radius);
  font-weight: 900;
}

.booking-band {
  background:
    linear-gradient(135deg, rgba(207, 233, 221, 0.72), rgba(255, 255, 255, 0.86)),
    var(--paper);
}

.booking-promo,
.zones-layout,
.method-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.booking-promo .section-heading {
  margin-bottom: 0;
}

.planner-preview,
.weekly-preview {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 4vw, 28px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.planner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.planner-header span {
  color: var(--muted);
  font-size: 0.92rem;
}

.planner-days {
  display: grid;
  gap: 12px;
}

.planner-days div {
  display: grid;
  grid-template-columns: 56px repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.planner-days span {
  color: var(--muted);
  font-weight: 900;
}

.planner-days button {
  min-height: 42px;
  color: var(--teal-dark);
  background: var(--surface-strong);
  border: 1px solid rgba(17, 124, 120, 0.18);
  border-radius: var(--radius);
  font-weight: 900;
}

.weekly-days {
  display: grid;
  gap: 10px;
}

.weekly-day {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.weekly-day strong {
  text-transform: capitalize;
}

.weekly-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.weekly-times a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 68px;
  padding: 0 10px;
  color: var(--teal-dark);
  background: var(--surface-strong);
  border: 1px solid rgba(17, 124, 120, 0.18);
  border-radius: var(--radius);
  font-weight: 900;
}

.no-slot {
  color: var(--muted);
}

.split-section {
  display: grid;
  gap: 28px;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 18px 18px 18px 64px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--coral);
  border-radius: var(--radius);
  font-weight: 900;
}

.process-list span {
  color: var(--muted);
  line-height: 1.5;
}

.method-list {
  counter-reset: steps;
}

.travel-map {
  display: grid;
  gap: 14px;
  padding: clamp(16px, 4vw, 24px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-heading .travel-fee-note {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  width: fit-content;
  margin-top: 4px;
  padding: 12px 14px;
  color: var(--teal-dark);
  background: var(--surface-strong);
  border: 1px solid rgba(17, 124, 120, 0.22);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  font-weight: 800;
}

.travel-fee-note strong {
  color: var(--teal-dark);
}

.map-zoom-frame {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: zoom-in;
}

.travel-map img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform 180ms ease;
  will-change: transform;
}

.map-zoom-frame:hover img {
  transform: scale(1.9);
}

.travel-map figcaption {
  color: var(--muted);
  line-height: 1.5;
}

.about-layout {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.about-panel {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-panel .eyebrow {
  color: var(--coral);
  font-size: 0.8rem;
  line-height: 1.2;
}

.about-photo {
  position: relative;
  margin: 0;
  min-height: 430px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px clamp(16px, 5vw, 70px);
  color: #fff;
  background: #1f2930;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(28px, 4vw, 46px);
  align-items: center;
}

.footer-links a {
  padding: 4px 0;
}

.inline-link {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.schedule-note {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding: 14px;
  color: var(--ink);
  background: var(--surface-strong);
  border: 1px solid rgba(17, 124, 120, 0.18);
  border-radius: var(--radius);
}

.schedule-note strong {
  color: var(--teal-dark);
}

.schedule-note p,
.schedule-note ul {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.schedule-note ul {
  padding-left: 18px;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice {
  position: fixed;
  right: clamp(14px, 4vw, 34px);
  bottom: clamp(14px, 4vw, 34px);
  left: clamp(14px, 4vw, 34px);
  z-index: 120;
  display: flex;
  max-width: 920px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-notice div {
  display: grid;
  gap: 6px;
}

.cookie-notice strong {
  color: var(--teal-dark);
}

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

.legal-page {
  max-width: 920px;
}

.legal-content {
  display: grid;
  gap: 22px;
  padding: clamp(18px, 4vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-content section {
  display: grid;
  gap: 10px;
}

.legal-content h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.legal-content p,
.legal-content li {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.contact-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 4vw, 28px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form textarea {
  min-height: 150px;
}

.contact-form .button {
  justify-self: start;
}

.honeypot {
  display: none;
}

.tool-page {
  padding: clamp(24px, 5vw, 50px) clamp(16px, 5vw, 70px) 64px;
}

.tool-hero {
  max-width: 900px;
  margin: 0 auto 24px;
}

.tool-hero h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 7vw, 4.2rem);
}

.tool-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.65;
}

.booking-layout {
  display: grid;
  gap: 16px;
  min-width: 0;
  max-width: 1180px;
  margin: 0 auto;
}

.booking-summary {
  position: sticky;
  top: 84px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 20px;
}

.summary-label {
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-summary strong {
  font-size: 1.2rem;
}

.booking-summary p,
.muted {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.booking-panel {
  min-width: 0;
  overflow: hidden;
}

.tool-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.tab-button {
  min-width: 0;
  min-height: 52px;
  color: var(--muted);
  background: #fff;
  border-bottom: 3px solid transparent;
  font-weight: 900;
}

.tab-button.is-active {
  color: var(--teal-dark);
  border-color: var(--teal);
}

.tab-panel {
  display: none;
  padding: clamp(16px, 4vw, 28px);
}

.tab-panel.is-active {
  display: block;
}

.slot-toolbar {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.slot-toolbar div {
  display: grid;
  gap: 3px;
  text-align: center;
}

.slot-toolbar span {
  color: var(--muted);
  font-size: 0.92rem;
}

.slot-days {
  display: grid;
  gap: 12px;
}

.duration-field {
  max-width: 280px;
  margin: 0 0 18px;
}

.slot-options {
  display: grid;
  gap: 14px;
  margin: 0 0 10px;
}

.slot-options .duration-field {
  max-width: none;
  margin: 0;
}

.slot-options-help {
  max-width: 760px;
  margin-bottom: 18px;
}

.slot-day {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.slot-day-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.slot-button {
  min-height: 42px;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.slot-button.is-selected {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.booking-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.booking-form h2 {
  font-size: 1.35rem;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(17, 124, 120, 0.24);
  outline-offset: 2px;
}

.check-line {
  grid-template-columns: 22px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.check-line input {
  min-height: 0;
  margin-top: 3px;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.form-message.is-error {
  color: var(--danger);
}

.form-message.is-success {
  color: var(--success);
}

.admin-login,
.admin-dashboard {
  max-width: 1180px;
  margin: 0 auto;
}

.admin-login {
  padding: 24px;
}

.admin-dashboard {
  display: grid;
  gap: 16px;
}

.is-hidden {
  display: none;
}

.admin-grid {
  display: grid;
  gap: 16px;
}

.admin-panel {
  min-width: 0;
  padding: clamp(16px, 3vw, 24px);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-heading h2 {
  font-size: 1.25rem;
}

.settings-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.weekday-row {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.weekday-row strong {
  min-width: 92px;
}

.time-pairs {
  display: grid;
  gap: 8px;
}

.time-pair {
  display: grid;
  grid-template-columns: 1fr 1fr 42px;
  gap: 8px;
  align-items: end;
}

.compact-form {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.history-filters {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

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

.list-stack {
  display: grid;
  gap: 10px;
}

.list-item {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.list-item-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.list-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--teal-dark);
  background: var(--surface-strong);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
}

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

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

.danger-button:hover {
  background: #8f1d14;
  border-color: #8f1d14;
}

@media (min-width: 560px) {
  .hero-stats,
  .feature-grid,
  .reviews-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slot-options {
    grid-template-columns: minmax(150px, 220px) minmax(280px, 1fr);
    max-width: 760px;
    align-items: start;
  }

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

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

  .history-filters {
    grid-template-columns: minmax(220px, 1fr) minmax(140px, 0.22fr) minmax(120px, 0.18fr) auto auto;
    align-items: end;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 62px;
  }

  .site-header > .button-small {
    width: 44px;
    min-width: 44px;
    padding: 0;
    font-size: 0;
  }

  .site-header > .button-small::after {
    content: "RDV";
    font-size: 0.82rem;
  }

  .brand span:last-child {
    display: none;
  }

  .hero-section {
    gap: 24px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

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

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

  .hero-photo {
    max-width: 520px;
  }

  .about-photo {
    height: 430px;
  }

  .weekly-day {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .weekly-times a {
    flex: 1 1 72px;
  }

  .cookie-notice {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-notice .button {
    width: 100%;
  }
}

@media (min-width: 860px) {
  .top-nav {
    display: none;
  }

  .hero-section {
    grid-template-columns: minmax(0, 610px) minmax(360px, 640px);
    justify-content: center;
    column-gap: clamp(34px, 4vw, 68px);
  }

  .hero-actions .button {
    flex: 0 0 auto;
  }

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

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

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

  .pricing-stage-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
    align-items: start;
  }

  .pricing-stage-rate {
    justify-items: end;
    text-align: right;
  }

  .pricing-stage-rate .pricing-note {
    max-width: 390px;
  }

  .split-section,
  .booking-promo,
  .method-layout,
  .zones-layout,
  .booking-layout,
  .contact-layout {
    grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  }

  .booking-promo,
  .method-layout,
  .zones-layout {
    grid-template-columns: minmax(390px, 0.46fr) minmax(0, 1fr);
  }

  .about-layout {
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  }

  .section-heading-inline {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

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

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

  .weekday-row {
    grid-template-columns: 110px minmax(0, 1fr) 42px;
    align-items: start;
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1060px) {
  .top-nav {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
  }
}

@media (min-width: 1180px) {
  .top-nav {
    gap: 16px;
    font-size: 0.95rem;
  }
}

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

  .brand span:last-child {
    display: none;
  }

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

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

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

  .weekly-day,
  .planner-days div {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-cover,
  .loader-logo {
    animation: none;
  }

  .page-loader {
    transition-duration: 120ms;
  }
}
