:root {
  --color-background: #f3f7f8;
  --color-surface: rgba(255, 255, 255, 0.85);
  --color-surface-strong: #ffffff;
  --color-primary: #3cb5c7;
  --color-primary-dark: #1f7a8c;
  --color-primary-bright: #63d3d6;
  --color-primary-soft: #d3eff1;
  --color-text: #1f2f38;
  --color-muted: #5c7281;
  --color-accent: #7dc7d6;
  --header-height: 88px;
  --font-body: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --shadow-soft: 0 20px 60px rgba(31, 47, 56, 0.08);
  --shadow-card: 0 12px 30px rgba(31, 47, 56, 0.08);
  color-scheme: light;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
  touch-action: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
}

a:hover,
a:focus {
  color: var(--color-primary-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-primary-dark);
  outline-offset: 2px;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

main {
  padding-top: var(--header-height);
}

section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem);
}

.section-divider {
  padding-block: clamp(4rem, 7vw, 6rem);
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(70%, 620px);
  height: 2px;
  background: rgba(31, 47, 56, 0.24);
  pointer-events: none;
  bottom: 0;
}

main .section-divider:first-of-type::after,
main .section-divider:last-of-type::after {
  display: none;
}

.section-divider > .container {
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
  display: inline-block;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 60ch;
  margin: 0.75rem auto 0;
  color: var(--color-muted);
}

.insurance-note {
  max-width: 60ch;
  margin: 1.25rem auto 2rem;
  font-size: 0.95rem;
  color: var(--color-muted);
  text-align: center;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.gradient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(125, 199, 214, 0.55) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(60, 181, 199, 0.6) 0%, transparent 70%),
    radial-gradient(circle at 50% 80%, rgba(211, 239, 241, 0.85) 0%, transparent 75%),
    var(--color-background);
  filter: blur(90px);
  background-attachment: fixed;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  background: var(--color-text);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  transition: top 0.2s ease;
  z-index: 999;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  backdrop-filter: blur(24px);
  background: linear-gradient(135deg, rgba(60, 181, 199, 0.45), rgba(243, 247, 248, 0.88));
  box-shadow: 0 8px 20px rgba(31, 47, 56, 0.08);
  border-bottom: 1px solid rgba(31, 47, 56, 0.08);
  z-index: 99;
  transform: translateY(0);
  transition: transform 0.35s ease;
  will-change: transform;
}

.site-header--hidden {
  transform: translateY(calc(-100% - 1rem));
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.logo:hover,
.logo:focus-visible {
  color: inherit;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.primary-nav a {
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  inset: auto 0 -0.4rem 0;
  height: 2px;
  background: var(--color-primary);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.book-btn {
  background: var(--color-accent);
  color: var(--color-text);
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(125, 199, 214, 0.28);
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.book-btn:hover,
.book-btn:focus-visible {
  background: #66c0ca;
  color: var(--color-text);
  box-shadow: 0 12px 24px rgba(102, 192, 202, 0.32);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(31, 47, 56, 0.12);
  background: rgba(255, 255, 255, 0.85);
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 999px;
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  --hero-padding-y: clamp(4rem, 8vw, 7rem);
  --hero-anchor-offset: clamp(3rem, 11vw, 5.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding-top: calc(var(--hero-padding-y) + var(--hero-anchor-offset));
  padding-bottom: var(--hero-padding-y);
  min-height: calc(100vh - var(--header-height));
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }

  .site-header--hidden {
    transform: translateY(0);
  }

}

.hero-content {
  display: grid;
  gap: 1.75rem;
  justify-items: center;
  width: min(640px, 90%);
  margin-inline: auto;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 45ch;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.scroll-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(3rem, 10vh, 6rem);
  padding: 0.2rem;
  color: var(--color-primary);
  opacity: 0.75;
  transition: transform 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.scroll-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  animation: arrowPulse 2.8s ease-in-out infinite;
}

.scroll-indicator:focus-visible {
  transform: translateY(2px);
  opacity: 0.95;
}

.scroll-indicator:hover {
  color: var(--color-primary-dark);
  opacity: 0.9;
}

.meta-item::before {
  content: '•';
  margin-right: 0.5rem;
  color: var(--color-primary);
}


.cta-buttons,
.about-actions,
.contact-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: 0 14px 30px rgba(125, 199, 214, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #66c0ca;
  color: var(--color-text);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(102, 192, 202, 0.34);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-text);
}

.btn-outline:hover {
  background: var(--color-primary-soft);
}

.btn-secondary {
  background: var(--color-text);
  color: #fff;
}

.btn-secondary:hover {
  background: #16212a;
}

.btn-link {
  background: transparent;
  padding-inline: 0;
  color: var(--color-primary-dark);
}

.btn-link:hover {
  text-decoration: underline;
}

.hero-meta .meta-item:first-child::before {
  content: '';
  margin-right: 0;
}

.hero-meta .meta-item:first-child {
  padding-left: 0;
}

/* About */
#about {
  scroll-margin-top: calc(var(--header-height) - 12px);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.about-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  justify-content: center;
  align-items: center;
}

.about-media {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.about-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.1rem, 2.3vw, 1.6rem);
}

.about-copy .section-eyebrow {
  margin-bottom: clamp(0.4rem, 1vw, 0.6rem);
}

.about-body {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  justify-items: center;
}

.about-headshot {
  width: min(260px, 65vw);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(31, 47, 56, 0.12);
}

.about-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 2.1vw + 1.1rem, 2.75rem);
  line-height: 1.1;
}

.about-highlights {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: var(--color-muted);
  text-align: center;
}

.about-highlights li::before {
  content: '✓';
  color: var(--color-primary-dark);
  margin-right: 0.5rem;
}

.about-copy p {
  margin: 0;
}

.about-actions {
  justify-content: center;
  grid-column: 1 / -1;
  margin-top: clamp(0.4rem, 1vw, 0.6rem);
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .about-media {
    justify-content: flex-end;
  }

  .about-headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-copy {
    padding-left: clamp(1rem, 2vw, 1.75rem);
  }
}

/* Services */
.services {
  text-align: center;
}

.services .grid {
  display: grid;
  gap: 2rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.card {
  background: var(--color-surface);
  padding: 2rem 1.75rem;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
  align-items: center;
  color: inherit;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(31, 47, 56, 0.14);
  border-color: var(--color-primary);
}

.card:focus-visible {
  transform: none;
  box-shadow: var(--shadow-card);
  border-color: var(--color-primary);
  outline: 3px solid rgba(60, 181, 199, 0.6);
  outline-offset: 4px;
}


.card__header {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: center;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.3;
}

.card__teaser,
.card_teaser {
  color: var(--color-muted);
  font-size: 0.97rem;
  line-height: 1.45;
  min-height: calc(2 * 1.45em);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card__cta::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.card:hover .card__cta::after,
.card:focus-visible .card__cta::after {
  transform: translateX(4px);
}

.service-card {
  cursor: pointer;
}

.service-card:focus-visible {
  outline: none;
}

.service-modal[hidden] {
  display: none;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 47, 56, 0.6);
  backdrop-filter: blur(4px);
}

.service-modal__content {
  position: relative;
  width: min(640px, 100%);
  max-height: min(90vh, 720px);
  border-radius: 26px;
  background: var(--color-surface-strong);
  box-shadow: 0 24px 80px rgba(31, 47, 56, 0.25);
  overflow: hidden;
}

.service-modal__body {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  overflow-y: auto;
  max-height: inherit;
  text-align: center;
}

.service-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(60, 181, 199, 0.12);
  color: var(--color-primary-dark);
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-modal__close:hover,
.service-modal__close:focus-visible {
  background: rgba(60, 181, 199, 0.24);
  color: var(--color-primary-dark);
  transform: scale(1.02);
}

.service-modal__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.service-modal__description {
  color: var(--color-text);
  font-size: 1.02rem;
}

.service-modal__recommendation {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(211, 239, 241, 0.6);
  color: var(--color-primary-dark);
  font-weight: 500;
  text-align: center;
}

.service-modal__pricing {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
}

.service-modal__pricing-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.service-modal__pricing-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 0.85rem);
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.service-modal__pricing-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 0 1 calc(33.333% - 0.6rem);
  min-width: 170px;
  max-width: 220px;
  padding: clamp(0.6rem, 2vw, 0.85rem);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px rgba(31, 47, 56, 0.08);
  font-weight: 500;
  text-align: center;
}

.service-modal__pricing-duration {
  color: var(--color-text);
  white-space: nowrap;
}

.service-modal__pricing-amount {
  color: var(--color-primary-dark);
}

.service-modal__pricing-line {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 0.5rem;
  align-items: baseline;
  width: 100%;
  font-size: 0.85rem;
}

.service-modal__pricing-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.65rem;
  color: var(--color-muted);
}

.service-modal__pricing-value {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.service-modal__pricing-value--rmt {
  color: var(--color-text);
}


@media (max-width: 640px) {
  .service-modal {
    padding: 1.25rem;
  }

  .service-modal__content {
    width: 100%;
  }

  .service-modal__body {
    max-height: 80vh;
  }
}

/* Reviews */
.reviews {
  overflow: hidden;
  text-align: center;
}

.reviews #reviews-title {
  margin-bottom: 4rem;
}

.reviews-track {
  --reviews-fade-width: 12%;
  display: flex;
  gap: 2rem;
  width: max-content;
  margin: 0 auto;
  animation: scrollReviews 180s linear infinite;
}

.review-slide {
  display: block;
  border-radius: 20px;
}

.review {
  background: var(--color-surface-strong);
  padding: 2rem 2.4rem;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  max-width: 340px;
  display: grid;
  gap: 1.2rem;
  text-align: left;
}

.review blockquote {
  font-style: italic;
  color: var(--color-text);
  overflow: hidden;
}

.review figcaption {
  color: var(--color-muted);
  font-weight: 500;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reviewer-name {
  font-weight: 600;
}

.reviewer-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
  background: rgba(60, 181, 199, 0.18);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

.rating-star {
  font-size: 1.05rem;
  margin-right: 0.4rem;
  line-height: 1;
}

.rating-score {
  line-height: 1;
}

/* Contact */
.contact-layout {
  display: grid;
  gap: clamp(1.5rem, 5vw, 2.5rem);
  justify-items: stretch;
}

.contact-eyebrow {
  justify-self: center;
  text-align: center;
}

.contact-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 3rem);
  align-items: stretch;
  justify-items: stretch;
  margin-inline: auto;
  max-width: 960px;
  width: 100%;
}

.contact-details {
  display: grid;
  gap: 1.25rem;
  justify-items: start;
  text-align: left;
  align-content: start;
}

.contact-details .address-link {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  color: var(--color-muted);
}

.contact-link {
  text-decoration: none;
  font-weight: 600;
}

.contact-note {
  color: var(--color-muted);
  max-width: 48ch;
  text-align: left;
}

.location .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: 0 14px 30px rgba(125, 199, 214, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  margin-inline: 0;
  justify-self: start;
}

.location .cta:hover,
.location .cta:focus {
  background: #66c0ca;
  color: var(--color-text);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(102, 192, 202, 0.34);
}

.contact-map {
  width: min(100%, 640px);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-self: stretch;
}

.contact-map iframe {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  flex: 1;
  height: 100%;
  min-height: 260px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(2rem, 6vw, 4rem);
  }

  .contact-details {
    justify-items: start;
    text-align: left;
  }

  .location .cta {
    margin-inline: 0;
  }

  .contact-map {
    margin: 0;
  }

  .contact-map iframe {
    min-height: 0;
  }
}

/* Booking */
.booking {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
}

.booking-cta {
  display: grid;
  gap: 1.75rem;
  text-align: center;
  justify-items: center;
}

.booking-support {
  max-width: 60ch;
  color: var(--color-muted);
  line-height: 1.7;
}


.booking-waiver {
  max-width: 70ch;
  font-size: 0.85rem;
  color: var(--color-muted);
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

.booking-support a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}

.book-text {
  font-weight: bold;
  font-style: italic;
}

/* Footer */
footer {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0;
  border-top: 1px solid rgba(31, 47, 56, 0.08);
  background: linear-gradient(135deg, rgba(243, 247, 248, 0.92), rgba(60, 181, 199, 0.75));
  backdrop-filter: blur(24px);
  box-shadow: 0 -12px 30px rgba(31, 47, 56, 0.08);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
}

.footer-info {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  font-weight: 500;
}

.footer-privacy {
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.footer-privacy:hover,
.footer-privacy:focus {
  color: var(--color-primary-dark);
}

.footnote {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.noscript {
  padding: 1rem 0 3rem;
  text-align: center;
  color: var(--color-muted);
}

/* Animations */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes arrowPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    text-align: center;
  }

  .about-highlights {
    justify-items: center;
  }

  .contact-grid {
    justify-items: stretch;
  }

  .contact-details {
    justify-items: start;
    text-align: left;
  }

  .contact-note {
    text-align: left;
  }

  .about-actions {
    justify-content: center;
  }

  .footer-grid {
    justify-content: center;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }

  .site-header .container {
    justify-content: center;
  }

  .nav-toggle,
  .primary-nav {
    display: none !important;
  }

  body.nav-open {
    overflow: auto;
  }

  .hero {
    --hero-padding-y: clamp(3.5rem, 12vw, 5rem);
    --hero-anchor-offset: clamp(2.5rem, 16vw, 4rem);
    padding-top: calc(var(--hero-padding-y) + var(--hero-anchor-offset));
    padding-bottom: var(--hero-padding-y);
  }

  .hero-content {
    gap: 1.5rem;
  }

  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding-inline: clamp(1.5rem, 6vw, 2.25rem);
  }

  .reviews-track {
    --reviews-fade-width: 8%;
  }

  .footer-info {
    gap: 0.25rem;
  }

  .footer-privacy,
  .footnote {
    display: none;
  }
}

@media (max-width: 480px) {
  .card {
    padding: 2rem 1.5rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  /* Stacks the pricing for mobiles */
  .price-double {
    flex-direction: column;
    gap: 0.5rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reviews-track {
    animation: none;
  }
}

/* Scroll margin for anchored sections */
#home {
  scroll-margin-top: calc(var(--header-height) + var(--hero-anchor-offset, 0px));
}

#about,
#services,
#reviews,
#contact,
#booking {
  scroll-margin-top: var(--header-height);
}

#services {
  scroll-margin-top: calc(var(--header-height) - 12vh);
}




