:root {
  --bg: #fff9f4;
  --bg-soft: #f7eee7;
  --text: #2d2520;
  --muted: #7b6d64;
  --primary: #bd7b62;
  --primary-dark: #955d49;
  --cream: #fffdf9;
  --line: rgba(45, 37, 32, 0.12);
  --shadow: 0 24px 70px rgba(79, 45, 34, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 244, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(45, 37, 32, 0.08);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.08rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--text);
  color: var(--cream);
  font-family: "Playfair Display", serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(189, 123, 98, 0.1);
  color: var(--text);
}

.nav-links a.active {
  background: var(--text);
  color: var(--cream);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--text);
  color: var(--cream);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 7px 6px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  padding: 74px 0 42px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 62px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--primary);
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 18px 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-content p {
  font-size: 1.08rem;
  max-width: 650px;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 16px 34px rgba(189, 123, 98, 0.24);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.trust-row div {
  min-width: 145px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 1.4rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 3px;
}

.hero-card {
  position: relative;
}

.image-card {
  padding: 16px;
  border-radius: 40px;
  background: linear-gradient(145deg, #fff, #f4e4d9);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.image-card img {
  width: 100%;
  height: min(620px, 70vh);
  object-fit: cover;
  border-radius: 30px;
}

.floating-card {
  position: absolute;
  left: -28px;
  bottom: 38px;
  width: min(300px, 80%);
  padding: 18px 20px 18px 48px;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.floating-card::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(189, 123, 98, 0.14);
  animation: slotPulse 1.9s ease-out infinite;
}

@keyframes slotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(189, 123, 98, 0.28);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(189, 123, 98, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(189, 123, 98, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-card::before {
    animation: none;
  }
}

.floating-card span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.floating-card strong {
  display: block;
  margin-top: 6px;
  line-height: 1.25;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 34px 0 52px;
}

.features article {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(79, 45, 34, 0.06);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--bg-soft);
  color: var(--primary-dark);
  font-size: 1.4rem;
}

.features h3 {
  margin: 18px 0 8px;
}

.section {
  padding: 82px 0;
}

.soft {
  background: var(--bg-soft);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.section-heading.left {
  text-align: left;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  overflow: hidden;
  border-radius: 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px rgba(79, 45, 34, 0.08);
}

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

.service-card div {
  padding: 24px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
}

.service-card span {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.86rem;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 58px;
  align-items: center;
}

.price-card {
  border-radius: 34px;
  background: var(--cream);
  box-shadow: var(--shadow);
  padding: 16px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row strong,
.price-row span {
  display: block;
}

.price-row span {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 5px;
}

.price-row b {
  white-space: nowrap;
  color: var(--primary-dark);
}

.booking-box {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 46px;
  align-items: center;
  padding: 48px;
  border-radius: 42px;
  background: linear-gradient(135deg, #fffdf9, #f4e4d9);
  box-shadow: var(--shadow);
}

.booking-box-compact {
  grid-template-columns: 0.72fr 1fr;
  align-items: center;
}

.booking-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-preview {
  border-radius: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.booking-box-compact .booking-preview {
  display: block;
}

.booking-summary {
  position: relative;
  display: grid;
  gap: 10px;
  max-height: 260px;
  margin: 0 0 18px;
  padding: 14px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.92), rgba(247, 238, 231, 0.82)),
    var(--cream);
  border: 1px solid rgba(189, 123, 98, 0.24);
  box-shadow: 0 14px 34px rgba(79, 45, 34, 0.07);
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition:
    max-height 0.24s ease,
    margin 0.24s ease,
    padding 0.24s ease,
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.booking-summary.is-dormant {
  max-height: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
}

.booking-summary::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--primary);
}

.summary-kicker,
.summary-item span {
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.summary-item {
  position: relative;
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px 12px 10px 28px;
  border: 1px solid rgba(79, 45, 34, 0.08);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.58);
  color: var(--muted);
}

.summary-item::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 11px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(79, 45, 34, 0.2);
  border-radius: 50%;
  background: transparent;
}

.summary-item.is-filled {
  color: var(--text);
  border-color: rgba(189, 123, 98, 0.26);
  background: rgba(189, 123, 98, 0.1);
}

.summary-item.is-filled::before {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(189, 123, 98, 0.13);
}

.summary-item strong {
  color: inherit;
  font-size: 0.92rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-note {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  color: var(--muted);
}

.booking-note strong {
  color: var(--text);
}

.booking-note span {
  line-height: 1.6;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.wizard-progress span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 36px;
  border-radius: 999px;
  background: rgba(247, 238, 231, 0.78);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.wizard-progress span.active,
.wizard-progress span.done {
  background: var(--text);
  color: var(--cream);
}

.wizard-panel {
  min-height: 430px;
}

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

.wizard-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.wizard-head span {
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard-head strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-choice,
.date-row {
  display: grid;
  gap: 10px;
}

.service-choice {
  grid-template-columns: 1fr;
}

.service-option,
.date-chip,
.slots {
  display: grid;
  gap: 12px;
}

.service-option,
.date-chip,
.slots button {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
}

.service-option {
  min-height: 76px;
  padding: 18px 20px;
  text-align: left;
}

.service-option span,
.date-chip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

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

.date-chip {
  min-height: 86px;
  padding: 14px;
  text-align: left;
}

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

.slots button {
  min-height: 64px;
  font-size: 1rem;
}

.service-option.active,
.date-chip.active,
.slots button.active {
  border-color: rgba(189, 123, 98, 0.42);
  background: rgba(189, 123, 98, 0.12);
  color: var(--primary-dark);
}

.slots button.taken {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.48;
  text-decoration: line-through;
}

.slot-message {
  grid-column: 1 / -1;
  color: var(--muted);
  font-weight: 700;
}

.slot-loading-text {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
}

.slot-loading-text::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(189, 123, 98, 0.28);
  animation: slotLoadingPulse 1.1s ease-in-out infinite;
}

.slot-skeleton {
  min-height: 64px;
  border: 1px solid rgba(79, 45, 34, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 253, 249, 0.82), transparent),
    rgba(189, 123, 98, 0.08);
  background-size: 220% 100%, 100% 100%;
  animation: slotSkeletonShimmer 1.25s ease-in-out infinite;
}

@keyframes slotLoadingPulse {
  50% { box-shadow: 0 0 0 6px rgba(189, 123, 98, 0.14); }
}

@keyframes slotSkeletonShimmer {
  from { background-position: 120% 0, 0 0; }
  to { background-position: -120% 0, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .slot-loading-text::before,
  .slot-skeleton {
    animation: none;
  }
}

.slot-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.slot-legend i {
  width: 10px;
  height: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.legend-free {
  background: var(--cream);
}

.legend-selected {
  background: var(--primary);
  border-color: var(--primary) !important;
}

.legend-taken {
  background: transparent;
  opacity: 0.45;
}

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

.field-grid label:last-child {
  grid-column: 1 / -1;
}

.field-grid label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.field-grid input,
.field-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.78);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  resize: vertical;
}

.field-grid input:focus,
.field-grid textarea:focus {
  outline: 3px solid rgba(189, 123, 98, 0.18);
  border-color: rgba(189, 123, 98, 0.5);
}

.booking-error,
.booking-success {
  margin: 14px 0 0;
  font-weight: 700;
}

.booking-error {
  color: #9b3f34;
}

.booking-success {
  padding: 14px 16px;
  border: 1px solid rgba(72, 122, 78, 0.18);
  border-radius: 18px;
  background: rgba(72, 122, 78, 0.1);
  color: #3f7046;
}

.booking-submit {
  width: 100%;
  margin-top: 16px;
  border: 0;
  cursor: pointer;
}

.booking-submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

.wizard-complete {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(189, 123, 98, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(189, 123, 98, 0.16), transparent 42%),
    rgba(255, 253, 249, 0.72);
}

.wizard-complete[hidden] {
  display: none;
}

.complete-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  border: 1px solid rgba(189, 123, 98, 0.42);
  border-radius: 50%;
  color: var(--primary-dark);
  font-size: 2rem;
  font-weight: 800;
}

.wizard-complete div > span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard-complete strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.wizard-complete p {
  max-width: 420px;
  margin: 14px auto 24px;
  color: var(--muted);
  line-height: 1.7;
}

.wizard-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.wizard-actions .btn {
  flex: 1;
  border: 0;
  cursor: pointer;
}

.wizard-actions .btn[hidden],
.booking-submit[hidden] {
  display: none;
}

.wizard-actions .btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.faq-section {
  padding-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-grid article,
.review-card {
  padding: 28px;
  border-radius: 30px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 20px 45px rgba(79, 45, 34, 0.08);
}

.faq-grid h3,
.review-card h3 {
  margin: 0 0 10px;
}

.testimonial-section {
  padding-top: 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stars {
  color: var(--primary);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-weight: 800;
}

.review-person img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(189, 123, 98, 0.18);
}

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 44px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a,
.contact-list span {
  color: var(--muted);
}

.hours-card {
  border-radius: 34px;
  background: var(--bg-soft);
  padding: 28px;
  border: 1px solid var(--line);
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.hours-card div:last-child {
  border-bottom: 0;
}

.hours-card span {
  color: var(--muted);
}

.map-wrap {
  margin-top: 34px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 24px 0;
  background: var(--text);
  color: rgba(255, 253, 249, 0.78);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.sticky-booking {
  display: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px max(18px, calc((100vw - 1120px) / 2 + 18px)) 18px;
    border-radius: 0 0 28px 28px;
    background: rgba(255, 249, 244, 0.58);
    border: 0;
    border-bottom: 1px solid rgba(45, 37, 32, 0.08);
    box-shadow: 0 24px 70px rgba(79, 45, 34, 0.15);
    backdrop-filter: blur(24px) saturate(1.35);
    -webkit-backdrop-filter: blur(24px) saturate(1.35);
    overflow: hidden;
    isolation: isolate;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-links::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(180deg, rgba(255, 253, 249, 0.7), rgba(255, 249, 244, 0.34)),
      radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.72), transparent 38%);
    backdrop-filter: blur(26px) saturate(1.35);
    -webkit-backdrop-filter: blur(26px) saturate(1.35);
  }

  .nav-links a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 12px 16px 12px 42px;
    border: 1px solid rgba(255, 253, 249, 0.34);
    border-radius: 16px;
    background: rgba(255, 253, 249, 0.34);
    color: rgba(45, 35, 31, 0.66);
    font-weight: 800;
  }

  .nav-links a::before {
    content: "";
    position: absolute;
    left: 18px;
    width: 7px;
    height: 7px;
    border: 1px solid rgba(189, 123, 98, 0.36);
    border-radius: 50%;
    background: transparent;
    transform: scale(0.78);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 253, 249, 0.72);
    color: var(--text);
  }

  .nav-links a.active {
    border-color: rgba(189, 123, 98, 0.22);
    box-shadow:
      inset 0 0 0 1px rgba(255, 253, 249, 0.72),
      0 10px 28px rgba(79, 45, 34, 0.07);
  }

  .nav-links a.active::before {
    border-color: var(--primary);
    background: var(--primary);
    transform: scale(1);
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .pricing-layout,
  .booking-box,
  .booking-box-compact,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .booking-box-compact .booking-preview {
    display: block;
  }

  .booking-box-compact .service-choice,
  .booking-box-compact .date-row,
  .booking-box-compact .slot-legend,
  .booking-box-compact .slots {
    grid-column: 1;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-grid {
    gap: 36px;
  }

  .floating-card {
    left: 18px;
  }

  .features,
  .service-grid,
  .faq-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .booking-box {
    padding: 30px;
  }

  .wizard-panel,
  .wizard-complete {
    min-height: 0;
  }

  .sticky-booking {
    position: fixed;
    z-index: 60;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    border-radius: 999px;
    background: var(--primary);
    color: white;
    font-weight: 900;
    box-shadow: 0 16px 40px rgba(79, 45, 34, 0.28);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  body.hide-sticky-booking .sticky-booking {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
  }

  body {
    padding-bottom: 74px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    height: 68px;
  }

  .nav-links {
    top: 68px;
    padding-inline: 14px;
    border-radius: 0 0 24px 24px;
  }

  .nav-links a {
    min-height: 44px;
    border-radius: 16px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .booking-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .image-card {
    transform: none;
    padding: 10px;
    border-radius: 28px;
  }

  .image-card img {
    height: 420px;
    border-radius: 22px;
  }

  .price-row,
  .hours-card div,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-box {
    padding: 22px;
  }

  .booking-intro p,
  .booking-note {
    display: none;
  }

  .booking-summary {
    width: 100%;
    margin-bottom: 14px;
    padding: 12px;
  }

  .summary-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 42px;
    padding: 9px 12px 9px 28px;
  }

  .summary-item::before {
    top: 50%;
    transform: translateY(-50%);
  }

  .summary-item strong {
    text-align: right;
  }

  .booking-preview {
    padding: 18px;
    border-radius: 24px;
  }

  .wizard-progress {
    gap: 6px;
    margin-bottom: 18px;
  }

  .wizard-progress span {
    min-height: 30px;
    padding: 0 4px;
    font-size: 0.68rem;
  }

  .wizard-head {
    margin-bottom: 14px;
  }

  .wizard-head strong {
    font-size: 1.85rem;
  }

  .service-option {
    min-height: 72px;
  }

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

  .wizard-actions {
    flex-direction: column-reverse;
  }

  .wizard-complete {
    padding: 24px 18px;
  }

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

  .date-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .field-grid label:last-child {
    grid-column: auto;
  }

  .map-wrap iframe {
    min-height: 280px;
    border-radius: 24px;
  }
}
