﻿:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --text: #193257;
  --muted: #72819d;
  --line: #d9e3f1;
  --green: #27ae60;
  --green-dark: #1e8d4d;
  --green-soft: rgba(39, 174, 96, 0.12);
  --blue: #1d3f8e;
  --gold: #c9a048;
  --danger: #d64d62;
  --danger-soft: rgba(214, 77, 98, 0.12);
  --shadow: 0 18px 50px rgba(13, 43, 96, 0.1);
  --shadow-soft: 0 10px 28px rgba(13, 43, 96, 0.08);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Manrope, Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at top right, rgba(230, 242, 255, 0.9), transparent 28%),
    linear-gradient(180deg, #f9fbfe 0%, #f2f6fb 100%);
}

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

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

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

svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.booking-page {
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 16px 14px 104px;
}

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

.logo-link img,
.booking-logo img {
  width: 146px;
}

.menu-btn {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 10px;
  color: var(--blue);
  border: 1px solid rgba(29, 63, 142, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.menu-btn i {
  width: 21px;
  height: 2px;
  border-radius: 9px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-btn.is-open i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-btn.is-open i:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-menu {
  position: absolute;
  top: 66px;
  right: 14px;
  left: 14px;
  z-index: 60;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(29, 63, 142, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(13, 43, 96, 0.16);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.site-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 14px;
  color: var(--blue);
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 900;
}

.site-menu a::after {
  color: var(--gold);
  content: ">";
}

.site-menu a:hover,
.site-menu a:focus-visible {
  background: #f5f8ff;
}

.booking-hero {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.booking-hero-copy,
.hero-badge-card,
.booking-card {
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.booking-hero-copy {
  padding: 24px 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(227, 241, 255, 0.94), transparent 46%),
    rgba(255, 255, 255, 0.95);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 11px;
  color: var(--blue);
  border-radius: 999px;
  background: rgba(29, 63, 142, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.booking-hero-copy h1 {
  margin: 0 0 10px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 0.95;
}

.booking-hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: 700;
}

.hero-badge-card {
  display: grid;
  gap: 5px;
  padding: 18px 18px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,251,255,0.95));
}

.hero-badge-card strong {
  color: var(--text);
  font-size: 0.95rem;
}

.hero-badge-card span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.booking-shell {
  margin-top: 16px;
}

.booking-card {
  padding: 18px 14px 18px;
}

.booking-field {
  margin-bottom: 12px;
}

.booking-field label {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.field-shell {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(13, 43, 96, 0.04);
}

.field-shell-icon {
  padding-left: 40px;
}

.field-shell svg {
  position: absolute;
  left: 14px;
  color: #6b84b2;
}

.field-shell input,
.field-shell select,
.field-shell textarea {
  width: 100%;
  color: var(--text);
  border: 0;
  outline: 0;
  background: transparent;
}

.field-shell input,
.field-shell select {
  height: 52px;
  padding: 0 14px 0 0;
}

.field-shell textarea {
  min-height: 110px;
  padding: 14px 14px 14px 0;
  resize: vertical;
}

.field-shell select {
  appearance: none;
  cursor: pointer;
}

.field-shell:focus-within {
  border-color: rgba(39, 174, 96, 0.34);
  box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.08);
}

.field-shell-textarea {
  align-items: flex-start;
}

.field-shell-textarea svg {
  top: 16px;
}

.hours-panel {
  margin: 18px 0 14px;
  padding: 16px 14px 14px;
  border: 1px solid #eef3fa;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
}

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

.hours-panel-header h2 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
}

.hours-help,
.hours-meta span,
.hours-message {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.hours-help {
  margin: 4px 0 0;
}

.hours-meta {
  text-align: right;
}

.loading-state {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(39, 174, 96, 0.16);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hours-message {
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 800;
}

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

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

.booking-services-links {
  margin-top: 18px;
}

.booking-services-links h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
}

.booking-services-grid {
  display: grid;
  gap: 12px;
}

.booking-service-link {
  display: block;
  padding: 15px 16px;
  border: 1px solid rgba(29, 63, 142, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(227, 241, 255, 0.7), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 14px 28px rgba(13, 43, 96, 0.07);
}

.booking-service-link strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 900;
}

.booking-service-link span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
}

.hour-button {
  min-height: 46px;
  padding: 0 8px;
  color: var(--green-dark);
  border: 1.5px solid rgba(39, 174, 96, 0.44);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(25, 50, 87, 0.04);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
  font-size: 0.84rem;
  font-weight: 800;
}

.hour-button:hover,
.hour-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(39, 174, 96, 0.14);
  outline: none;
}

.hour-button.is-selected {
  color: #fff;
  border-color: var(--green);
  background: linear-gradient(135deg, var(--green), #30bf6e);
  box-shadow: 0 16px 30px rgba(39, 174, 96, 0.24);
}

.hour-button:disabled,
.hour-button.is-disabled {
  color: #9ca8bc;
  border-color: #e0e7f1;
  background: #f7f9fc;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

#booking-form {
  margin-top: 6px;
}

.form-feedback {
  display: none;
  margin: 8px 0 14px;
  padding: 14px 15px;
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.5;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-success {
  color: var(--green-dark);
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.16);
}

.form-feedback.is-error {
  color: var(--danger);
  background: var(--danger-soft);
  border: 1px solid rgba(214, 77, 98, 0.16);
}

.submit-button {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #d6ad5e);
  box-shadow: 0 18px 34px rgba(201, 160, 72, 0.26);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  font-size: 0.95rem;
  font-weight: 900;
}

.submit-button:hover,
.submit-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 480px);
  margin: 0 auto;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 -10px 26px rgba(13, 43, 96, 0.12);
}

.sticky-cta a {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
}

.sticky-cta a:first-child {
  background: var(--blue);
}

.sticky-cta a:last-child {
  background: var(--gold);
}

@media (min-width: 400px) {
  .booking-card {
    padding-inline: 18px;
  }

  .hours-grid {
    gap: 12px;
  }
}

@media (min-width: 1024px) {
  body {
    padding: 28px 24px 48px;
  }

  .booking-page {
    width: min(1180px, 100%);
    padding: 24px 28px 42px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.44);
    box-shadow: 0 34px 90px rgba(13, 43, 96, 0.12);
  }

  .topbar {
    min-height: 62px;
  }

  .logo-link img,
  .booking-logo img {
    width: 176px;
  }

  .site-menu {
    top: 74px;
    right: 0;
    left: auto;
    width: 300px;
  }

  .booking-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: stretch;
    gap: 18px;
    margin-top: 18px;
  }

  .booking-hero-copy,
  .hero-badge-card,
  .booking-card {
    border-radius: 30px;
  }

  .booking-hero-copy {
    padding: 32px 30px;
  }

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

  .booking-hero-copy p {
    max-width: 720px;
    font-size: 1rem;
  }

  .hero-badge-card {
    align-content: center;
    padding: 24px;
  }

  .hero-badge-card strong {
    font-size: 1.05rem;
  }

  .hero-badge-card span {
    font-size: 0.9rem;
  }

  .booking-shell {
    margin-top: 20px;
  }

  .booking-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 22px 24px;
    padding: 24px;
    align-items: start;
  }

  .booking-card > .booking-field:first-of-type,
  .booking-card > .booking-field:nth-of-type(2) {
    margin-bottom: 0;
  }

  .hours-panel {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    padding: 20px 18px 18px;
  }

  #booking-form {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin-top: 0;
  }

  #booking-form .booking-field:first-child,
  #booking-form .booking-field:nth-child(2),
  #booking-form .booking-field:nth-child(3),
  #booking-form .booking-field:nth-child(4) {
    margin-bottom: 0;
  }

  #booking-form .booking-field:last-of-type {
    grid-column: 1 / -1;
  }

  .form-feedback,
  .submit-button {
    grid-column: 1 / -1;
  }

  .hours-panel-header h2 {
    font-size: 1.18rem;
  }

  .hours-message {
    font-size: 0.94rem;
  }

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

  .hour-button {
    min-height: 50px;
    font-size: 0.9rem;
  }

  .sticky-cta {
    display: none;
  }
}




