:root {
  color-scheme: light;
  --ink: #14181b;
  --body: #3d454c;
  --muted: #697079;
  --line: #e2e6e9;
  --soft: #f5f7f8;
  --teal: #0d95b4;
  --teal-dark: #0a6e85;
  --teal-soft: #e6f4f8;
  --red: #c8402f;
  --red-dark: #a9331f;
  --error-bg: #fbeeea;
  --error: #9e3021;
  --success: #0c745b;
  --display: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --text: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--text);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.booking-open {
  background: var(--soft);
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: var(--teal-dark);
  text-decoration: none;
}

a:hover {
  color: var(--red);
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 22px;
  font-size: 54px;
  line-height: 1.08;
}

h2 {
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.13;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.3;
}

p {
  color: var(--body);
  line-height: 1.65;
}

address {
  color: var(--body);
  font-style: normal;
  line-height: 1.65;
}

.shell {
  width: min(100% - 80px, 1180px);
  margin-inline: auto;
}

.narrow {
  width: min(100% - 40px, 820px);
  margin-inline: auto;
}

.sr-only {
  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 {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.mobile-only {
  display: none;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid #e8ecee;
  background: rgb(255 255 255 / 95%);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 18px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 165px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.desktop-nav a {
  padding: 10px 11px;
  border-radius: 6px;
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--ink);
  background: var(--soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: flex;
  height: 36px;
  overflow: hidden;
  border: 1px solid #dce2e5;
  border-radius: 7px;
}

.language-switch button {
  min-width: 40px;
  padding: 0 10px;
  border: 0;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.language-switch button[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
}

.header-contact-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-contact-link {
  display: flex;
  min-width: 120px;
  flex-direction: column;
  gap: 2px;
  padding: 5px 7px;
  color: var(--ink);
  line-height: 1.1;
  white-space: nowrap;
}

.header-contact-link:hover {
  color: var(--teal-dark);
}

.header-contact-link span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-contact-link strong {
  font-size: 13px;
}

.compact-contact-bar {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover:not(:disabled) {
  color: #fff;
  background: var(--red-dark);
}

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

.button-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.button-large {
  min-height: 56px;
  padding-inline: 27px;
  font-size: 17px;
}

.whatsapp-icon {
  flex: 0 0 auto;
  fill: var(--teal);
}

.hero {
  background: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
  padding-block: 64px 56px;
}

.hero-copy {
  min-width: 0;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  margin: 0 0 24px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-size: 13px;
  font-weight: 700;
}

.location-pill::before {
  content: "\25C9";
  margin-right: 7px;
  font-size: 10px;
}

.hero-lede,
.section-lede {
  margin: 0;
  color: #4a535b;
  font-size: 19px;
  line-height: 1.62;
}

.hero-lede {
  max-width: 34em;
  margin-bottom: 30px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.check-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.check-note span:first-child {
  color: var(--teal);
  font-weight: 800;
}

.hero-media,
.section-image {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border-radius: 8px;
  background: #edf1f2;
}

.hero-media img,
.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facts-band {
  background: var(--ink);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.facts-grid article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  padding: 30px 28px;
  border-right: 1px solid #2a2f34;
}

.facts-grid article:last-child {
  border-right: 0;
}

.facts-grid strong {
  color: #fff;
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.2;
}

.facts-grid span {
  color: #a4adb4;
  font-size: 15px;
  line-height: 1.5;
}

.section {
  padding-block: 88px;
}

.section-tight {
  padding: 0 0 88px;
}

.section-soft {
  border-block: 1px solid #e7ebed;
  background: var(--soft);
}

.section-centered {
  text-align: center;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-entry-inner {
  padding: 44px;
  border: 1px solid #e4e9eb;
  border-radius: 8px;
  background: var(--soft);
}

.entry-heading {
  max-width: 560px;
  margin-bottom: 28px;
}

.entry-heading h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.entry-heading p {
  margin: 0;
}

.entry-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.entry-options button {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 21px;
  border: 1px solid #dce2e5;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.entry-options button:hover {
  border-color: var(--red);
  background: #fdf7f5;
}

.entry-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--red);
  font-size: 22px;
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split p:not(.eyebrow) {
  margin-top: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.step-card {
  padding-top: 20px;
  border-top: 2px solid var(--teal);
}

.step-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.step-card h3 {
  font-size: 19px;
}

.step-card p {
  margin: 0;
  font-size: 15px;
}

.info-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
  padding: 17px 20px;
  border-left: 2px solid var(--teal);
  border-radius: 0 6px 6px 0;
  background: var(--soft);
}

.info-note > span {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  border: 1px solid var(--teal-dark);
  border-radius: 50%;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.info-note p {
  margin: 0;
  font-size: 15px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: var(--body);
  line-height: 1.55;
}

.check-list li::before {
  content: "\2713";
  color: var(--teal);
  font-weight: 900;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  margin: 0;
  font-size: 17px;
}

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

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.price-card-featured {
  border: 2px solid var(--red);
  background: #fffdfc;
}

.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 9px;
  border-radius: 5px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.price-label {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.regular-value {
  margin: 4px 0 14px;
  padding: 12px 15px 14px;
  border-left: 3px solid var(--red);
  background: #f5f6f6;
}

.regular-value > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.struck-price {
  display: inline-flex;
  align-items: flex-start;
  margin: 5px 0 0;
  color: #565d61;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.struck-price > span {
  padding-top: 5px;
  font-family: var(--text);
  font-size: 18px;
  font-weight: 500;
}

.struck-price del {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.struck-price del::before,
.struck-price del::after {
  position: absolute;
  right: -7%;
  left: -7%;
  content: "";
  border-radius: 999px;
  background: var(--red);
  pointer-events: none;
}

.struck-price del::before {
  top: 47%;
  height: 3px;
  opacity: 0.65;
  transform: rotate(5deg);
}

.struck-price del::after {
  top: 52%;
  height: 5px;
  transform: rotate(-7deg);
}

.your-price-label {
  margin: 0 0 3px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: flex-start;
  margin: 0 0 12px;
  color: var(--ink);
}

.price span {
  padding-top: 7px;
  font-size: 22px;
}

.price strong {
  font-family: var(--display);
  font-size: 54px;
  line-height: 1;
}

.price-card > p:last-child,
.future-price {
  margin-bottom: 0;
}

.package-per-visit {
  margin: -3px 0 12px;
  color: var(--body);
  font-size: 14px;
}

.package-per-visit strong {
  color: var(--ink);
  font-size: 18px;
}

.savings-highlight {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 18px 0;
  padding: 13px 15px;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1.35;
}

.savings-highlight strong {
  font-size: 18px;
}

.savings-highlight-subtle {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.savings-highlight-featured {
  color: #fff;
  background: var(--red);
}

.future-price {
  padding-top: 12px;
  border-top: 1px solid #edf0f1;
  font-size: 14px;
}

.actual-price-note {
  margin-top: 22px;
  padding: 22px 24px;
  border-left: 4px solid var(--teal);
  background: var(--teal-soft);
}

.actual-price-note > strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.actual-price-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 10px;
  color: var(--body);
}

.actual-price-options span {
  white-space: nowrap;
}

.actual-price-options b {
  margin-left: 5px;
  color: var(--ink);
  font-size: 18px;
}

.actual-price-note p {
  max-width: 920px;
  margin: 10px 0 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.55;
}

.pricing-notes {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-notes li {
  display: flex;
  gap: 10px;
  color: var(--body);
  font-size: 15px;
}

.pricing-notes li::before {
  content: "\2713";
  color: var(--teal);
  font-weight: 900;
}

.insurance-note {
  margin-top: 40px;
  padding: 26px 28px;
  border-left: 3px solid var(--teal);
  background: var(--soft);
}

.insurance-note p {
  margin: 0;
}

.discount-legal-notice {
  margin-top: 22px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: #f7f8f8;
}

.site-legal-notice {
  margin-top: 0;
  margin-bottom: 24px;
}

.discount-legal-notice > strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 12px;
}

.discount-legal-notice p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  line-height: 1.45;
}

.discount-legal-notice .legal-translation {
  font-weight: 500;
}

.legal-translation-details {
  margin-top: 7px;
}

.legal-translation-details summary {
  width: max-content;
  color: var(--teal-dark);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

html[lang="en"] .legal-translation-details,
.legal-translation:empty {
  display: none;
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
}

.reviews-heading .section-lede {
  max-width: 680px;
  margin-bottom: 0;
}

.reviews-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding-bottom: 5px;
}

.reviews-rating strong {
  font-size: 19px;
}

.reviews-rating small,
.review-card footer span,
.reviews-source-link span {
  color: var(--muted);
  font-size: 13px;
}

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

.review-card {
  display: flex;
  min-width: 0;
  min-height: 210px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.review-card blockquote {
  margin: 22px 0 26px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
}

.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: auto;
}

.reviews-source-link {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 22px;
  padding: 10px 0;
}

.reviews-source-link:hover strong {
  color: var(--red);
}

.stars {
  color: #d9a11e;
  letter-spacing: 0.1em;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}

.location-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.hours-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  color: var(--body);
  font-size: 14px;
}

.faq-section {
  background: #fff;
}

.faq-shell {
  width: min(100% - 40px, 840px);
  margin-inline: auto;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-item {
  border-bottom: 1px solid #eef1f2;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 23px;
  border: 0;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.faq-question:hover {
  background: #fafbfb;
}

.faq-question span:last-child {
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 23px 21px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

.final-cta {
  padding-block: 78px;
  background: var(--ink);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.final-cta h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 36px;
}

.final-cta p {
  margin: 0;
  color: #a4adb4;
  font-size: 17px;
}

.site-footer {
  padding: 50px 0 28px;
  border-top: 1px solid #e8ecee;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 34px;
}

.footer-grid img {
  width: 190px;
  height: auto;
  margin-bottom: 15px;
}

.footer-grid p {
  margin: 0 0 8px;
  font-size: 14px;
}

.footer-grid > div:first-child > a {
  display: block;
  width: max-content;
  margin-top: 4px;
}

.footer-grid nav,
.footer-grid > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 3px;
  color: #8a939b;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid nav a,
.footer-grid > div:last-child div {
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid #eef1f2;
  color: #8a939b;
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom button {
  padding: 0;
  border: 0;
  color: #8a939b;
  background: none;
  cursor: pointer;
  font-size: 13px;
}

.booking-view {
  min-height: 72vh;
  padding: 38px 20px 88px;
  background: var(--soft);
}

.booking-shell {
  width: min(100%, 660px);
  margin-inline: auto;
}

.booking-topline {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  border: 0;
  color: var(--teal-dark);
  background: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.progress-track {
  height: 3px;
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 3px;
  background: #dfe5e7;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--teal);
  transition: width 180ms ease;
}

.booking-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.booking-card h2 {
  margin-bottom: 8px;
  font-size: 29px;
}

.booking-card > p:first-of-type {
  margin: 0 0 24px;
}

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

.choice-button,
.slot-button {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  border: 1px solid #dce2e5;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.choice-button:hover,
.choice-button.selected,
.slot-button:hover,
.slot-button.selected {
  border-color: var(--red);
  background: #fdf7f5;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.choice-chip {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid #dce2e5;
  border-radius: 7px;
  color: var(--body);
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.choice-chip:hover,
.choice-chip.selected {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.field-label {
  display: block;
  margin: 0 0 9px;
  color: var(--body);
  font-size: 14px;
  font-weight: 700;
}

.select-control,
.text-control {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid #d7dce0;
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.form-field > span,
.language-fieldset legend {
  color: var(--body);
  font-size: 14px;
  font-weight: 700;
}

.field-note {
  margin: -7px 0 15px;
  color: var(--muted);
  font-size: 13px;
}

.language-fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.waitlist-fieldset {
  margin: 22px 0 0;
  padding: 0;
  border: 0;
}

.waitlist-fieldset legend {
  margin-bottom: 9px;
  color: var(--body);
  font-size: 14px;
  font-weight: 700;
}

.waitlist-full {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dce2e5;
}

.waitlist-full h3 {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.3;
}

.waitlist-full p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.waitlist-full .button {
  margin-top: 16px;
}

.language-fieldset legend {
  margin-bottom: 9px;
}

.language-buttons {
  display: flex;
  gap: 10px;
}

.consent-label {
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 11px;
  align-items: start;
  padding: 15px;
  border: 1px solid #dce2e5;
  border-radius: 7px;
  cursor: pointer;
}

.consent-label input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.consent-label strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 1.45;
}

.consent-label small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.booking-next {
  width: 100%;
  margin-top: 20px;
}

.slot-button strong {
  display: block;
  margin-bottom: 3px;
  font-size: 16px;
}

.slot-button small {
  color: var(--muted);
  font-size: 14px;
}

.slot-button time {
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
}

.inline-link {
  display: inline-flex;
  margin-top: 20px;
  padding: 0;
  border: 0;
  color: var(--teal-dark);
  background: none;
  cursor: pointer;
  font-weight: 700;
}

.status-box {
  margin-top: 18px;
  padding: 15px 17px;
  border-radius: 7px;
  font-size: 14px;
  line-height: 1.55;
}

.status-box.error {
  color: var(--error);
  background: var(--error-bg);
}

.status-box.info {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.review-list {
  margin-top: 22px;
  border-top: 1px solid #eef1f2;
}

.review-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #eef1f2;
}

.review-row span:first-child {
  flex: 0 0 116px;
  color: #8a939b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-row span:last-child {
  color: var(--ink);
  line-height: 1.5;
  text-align: right;
}

.payment-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 6px;
  color: var(--body);
  background: var(--soft);
  font-size: 14px;
}

.turnstile-wrap {
  min-height: 66px;
  margin-top: 18px;
}

.booking-success-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-size: 25px;
  font-weight: 900;
}

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

.legal-view {
  min-height: 70vh;
  padding-block: 56px 88px;
}

.legal-shell {
  max-width: 840px;
}

.legal-shell h1 {
  margin-top: 22px;
  font-size: 44px;
}

.privacy-block {
  margin-bottom: 30px;
}

.privacy-block h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.privacy-block p {
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.contact-grid a {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

.contact-grid a:hover {
  border-color: var(--teal);
}

.contact-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.toast {
  position: fixed;
  z-index: 150;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 7px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 36px rgb(20 24 27 / 18%);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-contact-links {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .compact-contact-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #eef1f2;
    background: #fff;
  }

  .compact-contact-bar a {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 12px;
    color: var(--ink);
    line-height: 1.1;
  }

  .compact-contact-bar a + a {
    border-left: 1px solid #eef1f2;
  }

  .compact-contact-bar span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .compact-contact-bar strong {
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 72px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .shell {
    width: min(100% - 40px, 1180px);
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline-flex;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 124px;
  }

  .menu-button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    padding: 0;
    border: 1px solid #dce2e5;
    border-radius: 7px;
    background: #fff;
    cursor: pointer;
    font-size: 19px;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 4px 20px 16px;
    border-top: 1px solid #eef1f2;
    background: #fff;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 14px 2px;
    border-bottom: 1px solid #f0f2f3;
    color: var(--ink);
    font-size: 16px;
    font-weight: 650;
  }

  .compact-contact-bar a {
    flex-direction: column;
    gap: 3px;
    padding-block: 7px;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-grid {
    padding-block: 48px 44px;
  }

  .hero-lede,
  .section-lede {
    font-size: 17px;
  }

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

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

  .facts-grid,
  .entry-options,
  .steps-grid,
  .pricing-grid,
  .review-cards,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .facts-grid article {
    border-right: 0;
    border-bottom: 1px solid #2a2f34;
  }

  .facts-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 54px;
  }

  .section-tight {
    padding-bottom: 54px;
  }

  .booking-entry-inner {
    width: 100%;
    padding: 24px 20px;
    border-inline: 0;
    border-radius: 0;
  }

  .entry-options button {
    min-height: 92px;
  }

  .steps-grid {
    margin-top: 36px;
  }

  .info-note {
    width: calc(100% - 40px);
  }

  .price-card {
    padding: 25px 22px;
  }

  .price-badge {
    position: static;
    display: inline-block;
    margin-bottom: 14px;
    align-self: flex-start;
  }

  .actual-price-options {
    flex-direction: column;
    gap: 6px;
  }

  .location-grid,
  .form-grid,
  .success-actions {
    grid-template-columns: 1fr;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .reviews-rating {
    align-items: flex-start;
  }

  .hours-line {
    justify-content: flex-start;
  }

  .final-cta-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 90px;
  }

  .footer-grid {
    gap: 30px;
  }

  .mobile-action-bar {
    position: sticky;
    z-index: 75;
    bottom: 0;
    display: flex;
    gap: 9px;
    padding: 11px 16px;
    border-top: 1px solid #dfe4e6;
    background: rgb(255 255 255 / 96%);
    backdrop-filter: blur(10px);
  }

  .mobile-action-bar .button-primary {
    flex: 1;
    min-width: 0;
  }

  .button-icon {
    width: 50px;
    flex: 0 0 50px;
    padding: 0;
    border-color: #d7dce0;
    color: var(--teal);
    background: #fff;
  }

  body.booking-open .mobile-action-bar,
  body.legal-open .mobile-action-bar {
    display: none;
  }

  .booking-view {
    padding: 26px 16px 62px;
  }

  .booking-card {
    padding: 24px 20px;
  }

  .booking-card h2 {
    font-size: 25px;
  }

  .review-row {
    flex-direction: column;
    gap: 5px;
  }

  .review-row span:first-child {
    flex-basis: auto;
  }

  .review-row span:last-child {
    text-align: left;
  }

  .legal-shell h1 {
    font-size: 34px;
  }
}

@media (max-width: 360px) {
  .compact-contact-bar span {
    font-size: 9px;
  }

  .compact-contact-bar strong {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
