/* Base */
:root {
  --bg: #f6fbff;
  --surface: #ffffff;
  --surface-soft: #eef6fd;
  --text: #17324b;
  --heading: #142060;
  --muted: #5f768c;
  --border: rgba(23, 50, 75, 0.12);
  --accent: #0d6fb8;
  --accent-dark: #0a568d;
  --shadow: 0 20px 50px rgba(16, 62, 103, 0.08);
  --radius: 24px;
  --container: min(1120px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Public Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(13, 111, 184, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.05;
  color: var(--heading);
}

h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.6rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(23, 50, 75, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-logo {
  width: 4.4rem;
  height: 4.4rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.brand-text strong {
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  line-height: 1;
}

.brand-text span {
  font-size: 0.82rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  font-size: 0.96rem;
  color: var(--muted);
}

.site-nav .button {
  color: #fff;
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav .button-primary,
.site-nav .button-primary:hover,
.site-nav .button-primary:focus-visible {
  color: #fff;
  background: linear-gradient(145deg, var(--accent-dark), var(--accent));
  box-shadow: 0 12px 26px rgba(13, 111, 184, 0.24);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  font: inherit;
  color: var(--text);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.floating-book:hover,
.floating-book:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(145deg, var(--accent), #3f9ddf);
  color: #fff;
  box-shadow: 0 14px 30px rgba(13, 111, 184, 0.22);
}

.button-book {
  background: linear-gradient(145deg, #0f7d46, #2fc170);
  color: #fff;
  box-shadow: 0 15px 30px rgba(19, 138, 75, 0.3);
}

.button-call {
  border: 1px solid rgba(19, 138, 75, 0.32);
  background: linear-gradient(145deg, rgba(235, 250, 242, 0.96), rgba(255, 255, 255, 0.96));
  color: #0f6739;
  box-shadow: 0 12px 24px rgba(19, 138, 75, 0.12);
}

.button-google-map {
  background: linear-gradient(135deg, #4285f4 0%, #4285f4 42%, #34a853 42%, #34a853 68%, #fbbc04 68%, #ea4335 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(66, 133, 244, 0.24);
}

.button-google-map:hover,
.button-google-map:focus-visible {
  box-shadow: 0 16px 32px rgba(52, 168, 83, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  color: var(--text);
}

.button-strong-link {
  border-color: rgba(13, 111, 184, 0.24);
  background: linear-gradient(145deg, rgba(236, 245, 253, 0.96), rgba(255, 255, 255, 0.96));
  color: var(--accent-dark);
  box-shadow: 0 14px 28px rgba(13, 111, 184, 0.13);
}

.button-nav {
  min-height: 2.75rem;
  padding-inline: 1.15rem;
  font-size: 0.95rem;
}

/* Heroes and sections */
.hero,
.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero-copy {
  max-width: 62rem;
}

.page-hero-wide .page-hero-copy,
.page-hero-wide .page-hero-copy .lede,
.page-hero-wide .page-hero-copy h1 {
  max-width: none;
}

.about-page-hero .page-hero-copy,
.about-page-hero .page-hero-copy .lede,
.about-page-hero .page-hero-copy h1 {
  margin-inline: auto;
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

/* Cards and shared surfaces */
.card,
.service-card,
.detail-card,
.cta-block,
.faq-item,
.footer-contact-card,
.footer-map-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.page-hero .lede {
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 44rem;
}

.hero-image-card {
  display: grid;
  min-width: 0;
}

.home-hero-image {
  display: block;
  width: 100%;
  min-height: 430px;
  max-height: 680px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.footer-title {
  color: var(--text);
  font-weight: 700;
}

.detail-meta span {
  border-radius: 999px;
  padding: 0.6rem 0.8rem;
  background: var(--surface-soft);
  color: var(--text);
  border: 1px solid rgba(13, 111, 184, 0.1);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section {
  padding: 1rem 0 2rem;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(13, 111, 184, 0.025), rgba(13, 111, 184, 0.07) 48%, rgba(13, 111, 184, 0.025)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading-wide {
  max-width: 100%;
}

.section-heading h2 {
  font-size: clamp(1.55rem, 2.35vw, 2.15rem);
}

.home-main {
  text-align: center;
}

.home-main .section-heading,
.home-main .home-team-section .section-heading p {
  margin-inline: auto;
}

.home-main .section-heading {
  text-align: center;
}

.home-main .booking-card {
  text-align: left;
}

.home-main .section-cta,
.home-main .detail-meta {
  justify-content: center;
}

/* Homepage */
.homepage-intro {
  width: 100%;
  text-align: center;
}

.homepage-intro p {
  max-width: 56rem;
  margin-inline: auto;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  line-height: 1.7;
  color: var(--text);
}

.mobile-journey-nav {
  display: none;
}

.intro-grid,
.service-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

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

/* Reviews and testimonials */
.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonials-section .section-heading {
  margin-bottom: 0.35rem;
}

.testimonial-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonial-carousel-track {
  --testimonial-columns: 2;
  display: flex;
  align-items: stretch;
  gap: 0;
  transition: transform 240ms ease;
  will-change: transform;
}

.testimonial-slide {
  display: grid;
  flex: 0 0 calc(100% / var(--testimonial-columns));
  height: auto;
  padding-inline: 0.75rem;
  box-sizing: border-box;
}

.testimonial-carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border: 1px solid rgba(13, 111, 184, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent-dark);
  box-shadow: 0 12px 24px rgba(13, 111, 184, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, opacity 180ms ease;
}

.testimonial-carousel-button:hover,
.testimonial-carousel-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(13, 111, 184, 0.08);
  box-shadow: 0 16px 28px rgba(13, 111, 184, 0.14);
}

.testimonial-carousel-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.testimonial-carousel-button span {
  font-size: 1.25rem;
  line-height: 1;
}

.card,
.service-card,
.detail-card,
.testimonial-card,
.cta-block,
.footer-contact-card {
  border-radius: var(--radius);
  padding: 1.8rem;
}

.card :is(h2, h3),
.service-card :is(h2, h3),
.detail-card :is(h2, h3),
.testimonial-card :is(h2, h3),
.cta-block :is(h2, h3),
.faq-item :is(h2, h3),
.staff-card :is(h2, h3),
.staff-mini-card :is(h2, h3),
.footer-contact-card :is(h2, h3),
.google-reviews-widget-empty :is(h2, h3) {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
}

.card,
.service-card,
.detail-card,
.testimonial-card,
.footer-contact-card {
  display: grid;
  gap: 1rem;
}

.service-card {
  text-align: center;
}

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

.about-card-grid {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.65rem, 3.2vw, 2.75rem);
  align-items: stretch;
}

.about-card-grid .card:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
}

.about-card-grid .card:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}

.about-card-grid .card:nth-of-type(3) {
  grid-column: 1;
  grid-row: 2;
}

.about-card-grid .card:nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
}

.about-logo-panel {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.about-logo {
  display: block;
  width: clamp(122px, 11.5vw, 156px);
  height: auto;
}

.google-reviews-widget {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.9);
}

.home-reviews-widget {
  position: relative;
  max-height: 28rem;
}

.home-reviews-widget::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4rem;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

.google-reviews-widget-empty {
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
}

.google-reviews-widget-empty code {
  color: var(--accent-dark);
  font-weight: 700;
}

.testimonial-card {
  grid-template-rows: auto 1fr;
  justify-items: center;
  align-items: stretch;
}

.testimonial-media {
  width: auto;
  max-height: 34rem;
  max-width: calc(100% - 2px);
}

.testimonial-video-card {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  width: min(100%, 19.25rem);
}

.testimonial-video-shell {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: calc(var(--radius) - 8px);
  background: transparent;
  overflow: hidden;
}

.testimonial-media {
  display: block;
  height: auto;
  object-fit: contain;
  overflow: hidden;
  border: 0;
  border-radius: calc(var(--radius) - 8px);
  background: #fff;
}

.testimonial-video-shell .testimonial-media {
  width: 100%;
  height: 100%;
  background: transparent;
}

.testimonial-video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 180ms ease, background 180ms ease;
}

.testimonial-video-play span {
  width: 0;
  height: 0;
  border-block: 1.25rem solid transparent;
  border-left: 1.8rem solid rgba(255, 255, 255, 0.96);
  filter: drop-shadow(0 8px 18px rgba(16, 29, 93, 0.32));
}

.testimonial-video-play:hover,
.testimonial-video-play:focus-visible {
  background: transparent;
}

.testimonial-video-shell.is-playing .testimonial-video-play {
  opacity: 0;
  pointer-events: auto;
}

.testimonial-fullscreen-close {
  display: none;
}

.testimonial-video-shell:fullscreen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  aspect-ratio: auto;
  border-radius: 0;
  background: #000;
}

.testimonial-video-shell:fullscreen .testimonial-media {
  object-fit: contain;
  border-radius: 0;
}

.testimonial-video-shell:fullscreen .testimonial-fullscreen-close {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.65rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonial-story-trigger {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(13, 111, 184, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 22px rgba(13, 111, 184, 0.08);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.testimonial-story-trigger:hover,
.testimonial-story-trigger:focus-visible {
  transform: translateY(-1px);
  background: rgba(236, 245, 253, 0.98);
  box-shadow: 0 14px 28px rgba(13, 111, 184, 0.13);
}

.testimonial-story-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(249, 253, 255, 0.94);
  backdrop-filter: blur(3px);
  overflow-y: auto;
}

.testimonial-story-overlay[hidden] {
  display: none;
}

.testimonial-story-close {
  justify-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
}

.testimonial-story-close:hover,
.testimonial-story-close:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.testimonial-story-copy {
  display: grid;
  gap: 0.75rem;
}

.testimonial-story-copy p {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* Services */
.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 1.5rem;
  align-items: center;
}

.detail-card:nth-child(odd) .service-detail-layout {
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
}

.detail-card:nth-child(odd) .service-detail-image {
  grid-column: 1;
  order: -1;
}

.service-detail-copy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}

.detail-card:nth-child(odd) .service-detail-copy {
  grid-column: 2;
}

.service-detail-image {
  align-self: center;
}

.service-detail-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-detail-copy .detail-meta {
  align-self: flex-start;
}

.service-booking-action {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}

.section-cta {
  margin-top: 1.5rem;
}

/* Booking CTAs */
.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-block-stacked {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.cta-block-stacked > div {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  width: min(100%, 50rem);
  text-align: center;
}

.cta-block-stacked :is(h2, h3),
.cta-block-stacked p {
  text-align: center;
}

.home-phone-advice-card {
  width: min(100% - 2rem, 58rem);
  padding-block: 1.6rem;
}

.home-phone-advice-card h3 {
  max-width: 44rem;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  font-weight: 600;
  line-height: 1.32;
}

.home-phone-advice-card h3 span {
  display: block;
}

.booking-card {
  padding: 1rem;
}

.booking-card :is(h2, h3) {
  margin-block: 0.25rem;
}

.cta-block > div {
  min-width: 0;
}

.cta-block .button {
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cta-actions .button {
  min-width: 10.5rem;
}

/* Footer and contact */
.footer-grid {
  grid-template-columns: 1.2fr 0.8fr;
  padding: 1rem 0 2rem;
}

.site-footer {
  border-top: 1px solid rgba(23, 50, 75, 0.08);
}

.footer-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 1.5rem;
  padding: 1rem 0 1rem;
}

.footer-contact-card,
.footer-map-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.footer-contact-card {
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
}

.footer-contact-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-contact-links .button {
  min-height: 2rem;
  padding: 0.5rem 1rem;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-meta {
  display: grid;
  gap: 0.75rem;
}

.footer-contact-meta p {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text);
}

.footer-contact-meta .contact-icon {
  margin-top: 0.25rem;
  color: var(--accent);
}

.footer-contact-meta a {
  color: var(--accent-dark);
  font-weight: 600;
}

.contact-address-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem;
  align-items: start;
}

.contact-address {
  display: inline-block;
  line-height: 1.6;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid rgba(13, 111, 184, 0.12);
  color: var(--text);
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-button-facebook {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
  box-shadow: 0 12px 24px rgba(24, 119, 242, 0.22);
}

.social-button-instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 72%, #515bd4 100%);
  border-color: rgba(221, 42, 123, 0.45);
  color: #fff;
  box-shadow: 0 12px 24px rgba(221, 42, 123, 0.22);
}

.social-button:hover,
.social-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(13, 111, 184, 0.12);
  box-shadow: 0 12px 24px rgba(13, 111, 184, 0.12);
}

.social-button-facebook:hover,
.social-button-facebook:focus-visible {
  background: #0f67d8;
  box-shadow: 0 16px 30px rgba(24, 119, 242, 0.3);
}

.social-button-instagram:hover,
.social-button-instagram:focus-visible {
  background: linear-gradient(135deg, #ff9a2f 0%, #e1306c 45%, #9b35c8 72%, #405de6 100%);
  box-shadow: 0 16px 30px rgba(221, 42, 123, 0.3);
}

.footer-map-card {
  overflow: hidden;
  min-height: 100%;
}

.homepage-map-card {
  height: 420px;
  min-height: 0;
}

.homepage-map-card .footer-map-embed {
  height: 100%;
  min-height: 0;
}

.footer-map-embed {
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(8rem, 1fr));
  gap: 0.75rem;
  justify-items: start;
}

.page-hero {
  padding-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  max-width: 62rem;
}

.stack-lg {
  display: grid;
  gap: 1.5rem;
}

/* Team */
.staff-grid,
.team-directory {
  display: grid;
  gap: 1.5rem;
}

.staff-card,
.staff-mini-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.staff-portrait {
  width: 100%;
  min-height: 320px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 111, 184, 0.12);
  background: var(--surface-soft);
}

.staff-profile-portrait {
  aspect-ratio: 1330 / 2230;
  min-height: 0;
}

.staff-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  padding: 1.8rem;
}

.staff-copy {
  display: grid;
  gap: 1rem;
}

.staff-copy > [data-featured-bio] {
  display: grid;
  gap: 1rem;
}

.staff-booking-action {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}

.staff-role,
.staff-mini-role {
  color: var(--text);
  font-weight: 700;
}

.staff-role-token {
  white-space: nowrap;
}

.staff-quote {
  font-size: 1.05rem;
  color: var(--text);
}

.staff-quote {
  display: grid;
  gap: 0.75rem;
}

.staff-quote p {
  color: inherit;
}

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

.home-team-section .section-heading {
  width: 100%;
  max-width: none;
}

.home-team-section .section-heading p {
  max-width: 56rem;
}

.team-preview-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.team-preview-grid .staff-mini-card {
  flex: 0 1 calc((100% - 3rem) / 3);
  min-width: 0;
}

.team-selector-section {
  padding-top: 1rem;
}

.mobile-team-profiles {
  display: none;
}

.staff-mini-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.staff-selector {
  appearance: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.staff-selector:hover,
.staff-selector:focus-visible,
.staff-selector.is-selected {
  transform: translateY(-3px);
  border-color: rgba(13, 111, 184, 0.35);
  box-shadow: 0 18px 38px rgba(13, 111, 184, 0.16);
}

.staff-selector:focus-visible {
  outline: 3px solid rgba(13, 111, 184, 0.18);
  outline-offset: 3px;
}

.staff-selector.is-selected {
  background:
    linear-gradient(180deg, rgba(13, 111, 184, 0.18), rgba(13, 111, 184, 0.08)),
    rgba(236, 245, 253, 0.98);
}

.staff-mini-copy {
  display: grid;
  gap: 0.75rem;
}

.detail-meta {
  margin-top: 0.25rem;
}

/* FAQ and floating actions */
.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 22px;
  padding: 1rem 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 1rem;
}

.floating-book {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 15;
  min-height: 3.1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .intro-grid,
  .service-grid,
  .service-detail-layout,
  .staff-card,
  .team-directory,
  .footer-contact,
  .footer-grid,
  .cta-block {
    grid-template-columns: 1fr;
  }

  .home-hero-image {
    min-height: 320px;
  }

  .detail-card:nth-child(odd) .service-detail-image {
    grid-column: auto;
    order: initial;
  }

  .detail-card:nth-child(odd) .service-detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-card:nth-child(odd) .service-detail-copy {
    grid-column: auto;
  }

  .team-preview-grid .staff-mini-card {
    flex-basis: 100%;
  }

  .about-card-grid .card,
  .about-logo-panel {
    grid-column: auto;
    grid-row: auto;
  }

  .about-card-grid .card {
    padding: 1.8rem;
  }

  .about-logo-panel {
    position: static;
    transform: none;
    pointer-events: auto;
  }

  .about-logo {
    width: min(52vw, 170px);
    margin-inline: auto;
  }

  .cta-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .footer-map-embed {
    min-height: 320px;
  }

  .testimonial-carousel {
    gap: 0.75rem;
  }

  .testimonial-carousel-track {
    --testimonial-columns: 1;
  }

  .testimonial-media {
    max-height: 30rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(1120px, calc(100vw - 1.25rem));
  }

  body {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    padding-bottom: 4.4rem;
  }

  p {
    line-height: 1.58;
  }

  h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }

  h3 {
    font-size: clamp(1.14rem, 5.2vw, 1.34rem);
  }

  .nav-shell {
    gap: 0.6rem;
    padding-block: 0.45rem;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand-logo {
    width: 3.35rem;
    height: 3.35rem;
  }

  .brand-text strong {
    font-size: clamp(0.98rem, 4vw, 1.12rem);
    line-height: 1.05;
  }

  .brand-text span {
    display: none;
  }

  .nav-toggle {
    min-height: 2.6rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.92rem;
  }

  .site-nav {
    left: 0.625rem;
    right: 0.625rem;
    top: calc(100% + 0.35rem);
    max-height: calc(100dvh - 5.5rem);
    gap: 0.45rem;
    overflow-y: auto;
    border-radius: 18px;
  }

  .site-nav a {
    padding: 0.55rem 0.65rem;
    font-size: 1rem;
  }

  .site-nav .button {
    margin-top: 0.25rem;
    width: 100%;
  }

  .button {
    max-width: 100%;
    min-height: 2.8rem;
    padding: 0.75rem 1rem;
    text-align: center;
    white-space: normal;
  }

  .hero,
  .page-hero,
  .section {
    padding-top: 1.15rem;
  }

  .hero {
    padding-bottom: 0.75rem;
  }

  .home-main .hero + .section {
    padding-top: 0.65rem;
    padding-bottom: 1rem;
  }

  .home-services-section {
    padding-top: 1rem;
  }

  #home-services,
  #home-team,
  #home-reviews,
  #home-location {
    scroll-margin-top: 4.8rem;
  }

  .page-hero h1 {
    max-width: none;
    font-size: clamp(1.58rem, 7.4vw, 1.95rem);
    line-height: 1.08;
  }

  .page-hero .lede {
    margin-top: 0.75rem;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .section {
    padding-bottom: 1.25rem;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .testimonials-section .section-heading {
    margin-bottom: 0.35rem;
  }

  .section-heading h2 {
    font-size: clamp(1.42rem, 6.4vw, 1.8rem);
  }

  .home-hero-image {
    min-height: 240px;
    max-height: 420px;
    border-radius: 18px;
  }

  .homepage-intro p {
    font-size: clamp(0.98rem, 4.4vw, 1.08rem);
    line-height: 1.58;
  }

  .mobile-journey-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.95rem;
  }

  .mobile-journey-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.45rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(13, 111, 184, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-dark);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(13, 111, 184, 0.08);
  }

  .card,
  .service-card,
  .detail-card,
  .testimonial-card,
  .cta-block,
  .footer-contact-card {
    border-radius: 18px;
    padding: 1rem;
  }

  .card :is(h2, h3),
  .service-card :is(h2, h3),
  .detail-card :is(h2, h3),
  .testimonial-card :is(h2, h3),
  .cta-block :is(h2, h3),
  .faq-item :is(h2, h3),
  .staff-card :is(h2, h3),
  .staff-mini-card :is(h2, h3),
  .footer-contact-card :is(h2, h3),
  .google-reviews-widget-empty :is(h2, h3) {
    font-size: clamp(1.25rem, 5.7vw, 1.55rem);
    line-height: 1.12;
  }

  .card p,
  .service-card p,
  .detail-card p,
  .testimonial-card p,
  .footer-contact-card p,
  .faq-item p,
  .staff-copy p,
  .staff-mini-copy p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .service-card,
  .about-card-grid .card {
    text-align: left;
  }

  .home-main .service-card,
  .home-main .cta-block-stacked,
  .home-main .cta-block-stacked > div,
  .home-main .cta-block-stacked :is(h2, h3),
  .home-main .cta-block-stacked p {
    text-align: center;
  }

  .home-main .cta-block-stacked > div {
    justify-items: center;
  }

  .service-card {
    align-content: start;
  }

  .service-grid,
  .intro-grid,
  .about-card-grid,
  .stack-lg,
  .staff-grid,
  .team-directory {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-card-grid .card:nth-of-type(1),
  .about-card-grid .card:nth-of-type(2),
  .about-card-grid .card:nth-of-type(3),
  .about-card-grid .card:nth-of-type(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .detail-meta {
    justify-content: flex-start;
  }

  .detail-meta span {
    padding: 0.45rem 0.6rem;
    font-size: 0.85rem;
  }

  .cta-block,
  .cta-block-stacked,
  .cta-block-stacked > div {
    align-items: stretch;
    justify-items: stretch;
    text-align: left;
  }

  .cta-block-stacked :is(h2, h3),
  .cta-block-stacked p {
    text-align: left;
  }

  .home-phone-advice-card {
    width: 100%;
    padding-block: 1.15rem;
  }

  .home-phone-advice-card h3 {
    font-size: clamp(1rem, 4.5vw, 1.16rem);
  }

  .home-phone-advice-card h3 span {
    display: inline;
  }

  .cta-block .button,
  .section-cta .button {
    width: 100%;
    min-width: 0;
  }

  .service-detail-photo,
  .staff-portrait {
    border-radius: 18px;
  }

  .staff-portrait {
    min-height: 0;
  }

  .staff-mini-card .staff-portrait {
    aspect-ratio: 4 / 3;
    max-height: 20rem;
    object-position: center 18%;
  }

  .team-selector-section,
  .team-featured-section {
    display: none;
  }

  .mobile-team-profiles {
    display: block;
    padding-top: 0.9rem;
  }

  .mobile-team-profiles .staff-grid {
    gap: 1rem;
  }

  .mobile-staff-card {
    gap: 1rem;
  }

  .mobile-staff-card .staff-profile-portrait {
    aspect-ratio: 4 / 5;
    max-height: 32rem;
    object-position: center top;
  }

  .staff-bio {
    display: grid;
    gap: 1rem;
  }

  .mobile-staff-card .staff-booking-action {
    align-items: stretch;
  }

  .mobile-staff-card .button {
    width: 100%;
  }

  .staff-profile-portrait {
    max-height: 34rem;
    object-position: center top;
  }

  .staff-card {
    gap: 1rem;
  }

  .staff-role-token {
    white-space: normal;
  }

  .testimonials-section {
    padding-top: 0.4rem;
  }

  .testimonials-section .container {
    display: grid;
    gap: 0.85rem;
  }

  .testimonials-section .section-heading {
    margin-bottom: 0;
  }

  .testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 0.25rem 0.6rem;
    margin-inline: 0;
  }

  .testimonial-carousel-viewport {
    grid-column: 1 / -1;
    order: 1;
  }

  .testimonial-carousel-button {
    position: static;
    order: 2;
    width: 2.15rem;
    height: 2.15rem;
    transform: none;
  }

  .testimonial-carousel-button:hover,
  .testimonial-carousel-button:focus-visible {
    transform: none;
  }

  .testimonial-carousel-button-prev {
    justify-self: end;
  }

  .testimonial-carousel-button-next {
    justify-self: start;
  }

  .testimonial-slide {
    display: block;
    padding-inline: 0;
  }

  .testimonial-card {
    display: block;
    padding: 0;
  }

  .testimonial-video-card {
    display: grid;
    width: 100%;
    gap: 0.55rem;
  }

  .testimonial-story-trigger {
    line-height: 1.3;
    margin-top: 0;
  }

  .testimonial-media {
    display: block;
    max-height: none;
  }

  .testimonial-video-shell .testimonial-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .floating-book {
    position: fixed;
    right: 0.625rem;
    bottom: max(0.625rem, env(safe-area-inset-bottom));
    left: 0.625rem;
    z-index: 30;
    display: flex;
    width: auto;
    min-height: 3rem;
    margin: 0;
    justify-content: center;
    text-align: center;
    box-shadow: 0 16px 34px rgba(19, 138, 75, 0.3);
  }

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

  .service-booking-action .button {
    width: 100%;
  }

  .footer-contact {
    gap: 1rem;
  }

  .footer-contact-meta,
  .site-footer {
    overflow-wrap: anywhere;
  }

  .footer-contact-links .button,
  .social-button {
    width: 100%;
  }

  .homepage-map-card {
    height: 300px;
    border-radius: 18px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 1rem;
  }
}

@media (max-width: 380px) {
  :root {
    --container: min(1120px, calc(100vw - 1rem));
  }

  .brand-logo {
    width: 3rem;
    height: 3rem;
  }

  .brand-text strong {
    font-size: 0.95rem;
  }

  .nav-toggle {
    padding-inline: 0.75rem;
  }

  .home-hero-image {
    min-height: 245px;
  }

  .testimonial-carousel-button {
    width: 2.15rem;
    height: 2.15rem;
  }
}
