:root {
  --bg: #f4f7f8;
  --surface: #ffffff;
  --surface-alt: #eef5f6;
  --ink: #203743;
  --muted: #57707c;
  --line: #d6e1e5;
  --brand: #2e6f86;
  --brand-deep: #194e63;
  --brand-soft: #edf5f8;
  --accent: #88aeb9;
  --shadow: 0 14px 32px rgba(21, 58, 75, 0.08);
  --radius-lg: 0;
  --radius-md: 0;
  --radius-sm: 0;
  --content: min(1120px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(237, 245, 248, 0.8) 0, rgba(244, 247, 248, 0) 240px),
    var(--bg);
}

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  background: var(--brand-deep);
  color: #f8fdff;
  font-size: 0.92rem;
}

.topbar__inner,
.header__inner,
.section,
.footer__inner,
.page-head,
.hero__grid,
.cta {
  width: var(--content);
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.55rem 0;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.topbar__item--end {
  margin-left: auto;
  gap: 0.8rem;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.social-links__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #f8fdff;
  transition: transform 160ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.social-links__link:hover,
.social-links__link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.52);
}

.social-links__link .icon {
  width: 0.95rem;
  height: 0.95rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 260px;
  max-width: 320px;
}

.brand__logo {
  display: block;
  width: min(100%, 280px);
  height: auto;
  object-fit: contain;
}

.brand__logo--footer {
  width: min(100%, 240px);
}

.brand--footer {
  display: inline-flex;
  min-width: 0;
  max-width: none;
  margin-bottom: 0.9rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fb 100%);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(21, 58, 75, 0.06);
}

.brand--footer .brand__logo--footer {
  width: clamp(180px, 24vw, 240px);
}

.brand__eyebrow {
  display: block;
  color: var(--brand);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.brand__name {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-size: 1.22rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 0;
  padding: 0;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  color: var(--brand-deep);
  font-size: 0;
}

.nav-toggle .icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 0.7rem;
  flex-wrap: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  flex: 0 0 auto;
  min-width: 0;
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  width: 100%;
}

.nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--brand-deep);
}

.nav__header,
.nav-backdrop,
.nav__close {
  display: none;
}

.nav__header {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.nav__eyebrow {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--brand);
}

.nav__close {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  background: white;
  color: var(--brand-deep);
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.nav__close .icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav__outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav__actions .button {
  color: inherit;
}

.nav__actions .button--brand {
  color: white !important;
}

.main {
  padding-bottom: 3rem;
}

.hero {
  padding: 2.5rem 0 1.5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: start;
}

.hero__panel,
.hero__card,
.card,
.info-card,
.service-card,
.team-card,
.quote-card,
.faq,
.post-card,
.contact-card,
.form-card,
.timeline__item,
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero__panel,
.hero__card {
  padding: 2rem;
}

.hero__card {
  align-self: start;
}

.eyebrow,
.pill,
.hero-visual__seal {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero h1,
.page-head h1,
.section-title h2,
.cta h2 {
  font-family: "Libre Baskerville", serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero h1 {
  margin: 1rem 0 0.9rem;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
}

.hero__panel .booking-panel__image--hero {
  margin-bottom: 1.35rem;
  min-height: 260px;
  border-color: rgba(46, 111, 134, 0.14);
}

.hero__panel .booking-panel__image--hero::after {
  background: linear-gradient(180deg, rgba(12, 35, 45, 0.1) 0%, rgba(12, 35, 45, 0.5) 100%);
}

.hero-urgency {
  margin: 0.9rem 0 0;
  color: var(--brand);
  font-weight: 700;
  line-height: 1.5;
}

.hero p,
.page-head p,
.section-title p,
.card p,
.info-card p,
.service-card p,
.team-card p,
.quote-card p,
.faq p,
.post-card p,
.contact-card p,
.timeline__item p {
  color: var(--muted);
  line-height: 1.7;
}

.page-head--article {
  max-width: 52rem;
}

.page-head--article .eyebrow {
  margin-bottom: 0.85rem;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  color: var(--brand-deep);
  font-weight: 800;
  transition: transform 160ms ease, color 160ms ease;
}

.article-back:hover,
.article-back:focus-visible {
  color: var(--brand);
  transform: translateX(-2px);
}

.button-row,
.stats,
.page-meta,
.chips,
.floating-strip,
.quick-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.button-row--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0.82rem 1.1rem;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button--brand {
  background: var(--brand);
  color: white;
  box-shadow: 0 10px 22px rgba(26, 79, 100, 0.16);
}

.button--soft {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(21, 58, 75, 0.05);
}

.button--light {
  background: white;
  color: var(--brand-deep);
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.12);
}

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

.button--brand:hover,
.button--brand:focus-visible {
  background: var(--brand-deep);
  box-shadow: 0 16px 30px rgba(26, 79, 100, 0.22);
}

.button--soft:hover,
.button--soft:focus-visible {
  border-color: rgba(46, 111, 134, 0.32);
  color: var(--brand-deep);
  box-shadow: 0 14px 28px rgba(21, 58, 75, 0.12);
}

.button--light:hover,
.button--light:focus-visible {
  background: #f4fbfe;
  box-shadow: 0 14px 28px rgba(12, 35, 45, 0.18);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  color: currentColor;
  flex: 0 0 auto;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.icon--inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  margin-right: 0.45rem;
  transform: translateY(-0.02em);
}

.icon--light {
  color: rgba(255, 255, 255, 0.94);
}

.icon--brand {
  color: var(--brand);
}

.meta-pill,
.stat__icon {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  margin-bottom: 1.05rem;
  border-radius: 0;
  background: transparent;
  color: var(--brand);
  border: 0;
  box-shadow: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.stat__icon {
  margin-bottom: 0.65rem;
  padding: 0.42rem 0.72rem;
  background: linear-gradient(180deg, #f2f8fa 0%, #e7f1f5 100%);
  border: 1px solid rgba(46, 111, 134, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.booking-action strong {
  display: inline-flex;
  align-items: center;
  line-height: 1.1;
}

.hero-visual {
  height: 100%;
  padding: 1.25rem;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(25, 78, 99, 0.95) 0%, rgba(46, 111, 134, 0.92) 100%);
  color: white;
  display: grid;
  gap: 1rem;
}

.hero-visual h2 {
  font-family: "Libre Baskerville", serif;
  line-height: 1.25;
  margin: 0;
}

.hero-visual p {
  color: rgba(255, 255, 255, 0.84);
}

.hero-visual__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-visual__mini {
  padding: 0.9rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-visual__mini strong,
.stat strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 1.15rem;
}

.section {
  padding-top: 2.5rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

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

.section-header .section-title {
  margin-bottom: 0;
}

.section-header--with-controls {
  margin-bottom: 1.25rem;
}

.section-title h2 {
  margin: 0.7rem 0 0.6rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.page-head {
  padding: 2.3rem 0 1rem;
}

.page-head h1 {
  margin: 0.8rem 0;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.stats {
  margin-top: 1.2rem;
}

.stat {
  min-width: 180px;
  padding: 1rem;
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.card-heading h3 {
  margin: 0;
}

.card-heading--feature {
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.card-heading--feature .icon {
  color: var(--brand-deep);
  width: 1.05rem;
  height: 1.05rem;
}

.card-heading--feature .icon--inline {
  margin-right: 0;
  transform: none;
  display: block;
  flex: 0 0 1.05rem;
  align-self: center;
}

.card-heading--feature h3 {
  font-size: 1.14rem;
  line-height: 1.2;
}

.stat span {
  display: block;
}

.card-grid,
.action-grid,
.team-grid,
.services-grid,
.info-grid,
.quote-grid,
.faq-grid,
.posts-grid,
.contact-grid,
.split,
.footer__inner {
  display: grid;
  gap: 1rem;
}

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

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

.info-grid,
.quote-grid,
.faq-grid,
.split,
.footer__inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card,
.action-card,
.team-card,
.service-card,
.info-card,
.quote-card,
.faq,
.post-card,
.article-card,
.contact-card,
.form-card,
.timeline__item {
  padding: 1.25rem;
}

.card,
.action-card,
.team-card,
.service-card,
.info-card,
.quote-card,
.faq,
.post-card,
.article-card,
.contact-card,
.form-card,
.timeline__item,
.google-review-card {
  transition: transform 180ms ease, box-shadow 200ms ease, border-color 180ms ease;
}

.card:hover,
.action-card:hover,
.team-card:hover,
.service-card:hover,
.info-card:hover,
.quote-card:hover,
.faq:hover,
.post-card:hover,
.article-card:hover,
.contact-card:hover,
.form-card:hover,
.timeline__item:hover,
.google-review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 111, 134, 0.24);
  box-shadow: 0 18px 34px rgba(21, 58, 75, 0.1);
}

.card-media {
  display: block;
  width: calc(100% + 2.5rem);
  max-width: none;
  height: 190px;
  margin: -1.25rem -1.25rem 1rem;
  object-fit: cover;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  background: #dce7eb;
}

.card-media--portrait {
  height: 300px;
  object-fit: cover;
  object-position: center 20%;
  background: #edf5f8;
  padding: 0;
}

.card-media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(46, 111, 134, 0.14), transparent 32%),
    linear-gradient(180deg, #edf5f8 0%, #e4eef3 100%);
  padding: 0;
}

.card-media__avatar {
  position: relative;
  width: 8.5rem;
  height: 8.5rem;
  opacity: 0.7;
}

.card-media__avatar-ring,
.card-media__avatar-head,
.card-media__avatar-body {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid rgba(46, 111, 134, 0.42);
}

.card-media__avatar-ring {
  top: 0.4rem;
  width: 8.5rem;
  height: 8.5rem;
  border-color: rgba(46, 111, 134, 0.12);
  border-radius: 50%;
}

.card-media__avatar-head {
  top: 1.6rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.card-media__avatar-body {
  top: 4.25rem;
  width: 4.9rem;
  height: 2.9rem;
  border-bottom: 0;
  border-radius: 4.5rem 4.5rem 0 0;
  background: rgba(255, 255, 255, 0.22);
}

.card strong,
.action-card h3,
.team-card h3,
.service-card h3,
.info-card h3,
.post-card h3,
.article-card h3,
.faq h3,
.contact-card h3,
.timeline__item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

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

.service-card--with-link {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.service-card__title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.service-card__title .icon {
  color: var(--ink);
}

.service-card__title span {
  display: inline-block;
}

.service-card--with-link p {
  margin-bottom: 1.2rem;
}

.service-list-card {
  padding: 1.7rem 1.8rem;
}

.service-list-intro p {
  margin: 0 0 1rem;
}

.service-list-intro p:last-child {
  margin-bottom: 0.7rem;
  font-weight: 700;
  color: var(--ink);
}

.service-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.45rem;
}

.service-list li {
  color: var(--ink);
  line-height: 1.55;
}

.service-list strong {
  color: var(--brand-deep);
}

.service-emergency-card {
  padding: 1.55rem 1.8rem;
}

.section-title--compact {
  margin-bottom: 1rem;
}

.section-title--compact h2 {
  margin-bottom: 0;
}

.service-card__link {
  font-weight: 800;
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
  transition: color 160ms ease, transform 160ms ease;
}

.service-card__link:hover {
  color: var(--brand);
  transform: translateX(2px);
}

.service-card__actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-card__link--book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  background: var(--brand);
  color: white;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.94rem;
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.service-card__link--book:hover {
  color: white;
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(26, 79, 100, 0.18);
}

.article-card {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.article-card__image {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #dce7eb;
}

.article-card__body {
  padding: 1.5rem;
}

.article-card .pill {
  margin-bottom: 1rem;
}

.article-card__intro {
  margin-bottom: 1.35rem;
  font-size: 1.08rem;
  color: var(--ink);
}

.article__section + .article__section {
  margin-top: 1.5rem;
}

.article__section h2 {
  margin: 0 0 0.55rem;
  font-size: 1.3rem;
}

.article__section p {
  margin: 0 0 0.95rem;
}

.article-card .button-row {
  margin-top: 1.35rem;
}

.map-frame {
  width: 100%;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.office-photo {
  display: block;
  width: calc(100% + 2.5rem);
  max-width: none;
  height: 210px;
  margin: -1.25rem -1.25rem 1rem;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
  background: #dce7eb;
}

.hours-header {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line);
}

.hours-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: var(--brand-soft);
  color: var(--brand-deep);
  flex: 0 0 auto;
}

.hours-header__icon .icon {
  width: 1rem;
  height: 1rem;
}

.hours-header__copy h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.hours-header__copy p {
  margin: 0.25rem 0 0;
  font-size: 0.98rem;
  color: var(--muted);
  font-weight: 600;
}

.hours {
  display: grid;
  gap: 0.6rem;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #e8eef0;
}

.cta {
  margin-top: 2.5rem;
  padding: 1.6rem 1.8rem;
  border-radius: 0;
  background: linear-gradient(180deg, var(--brand-deep) 0%, var(--brand) 100%);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  max-width: 56ch;
}

.footer {
  padding: 2.5rem 0;
}

.info-card--insurance {
  text-align: left;
}

.info-card--insurance p {
  max-width: 66ch;
  margin-left: 0;
  margin-right: 0;
}

.insurance-panel {
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.insurance-panel__visual {
  position: relative;
  min-height: 220px;
  background:
    radial-gradient(circle at 32% 35%, rgba(46, 111, 134, 0.14), transparent 42%),
    radial-gradient(circle at 72% 68%, rgba(46, 111, 134, 0.09), transparent 38%),
    linear-gradient(180deg, rgba(234, 242, 246, 0.95), rgba(244, 249, 252, 0.9));
  border: 1px solid var(--line);
  overflow: hidden;
}

.insurance-panel__visual::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 0;
  pointer-events: none;
}

.insurance-panel__orb {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(46, 111, 134, 0.18);
  box-shadow: 0 18px 30px rgba(18, 46, 58, 0.08);
}

.insurance-panel__orb .icon {
  width: 100%;
  height: 100%;
}

.insurance-panel__orb--large {
  width: 7rem;
  height: 7rem;
  top: 2rem;
  left: 2rem;
}

.insurance-panel__orb--large .icon {
  width: 2.6rem;
  height: 2.6rem;
}

.insurance-panel__orb--small {
  width: 4.25rem;
  height: 4.25rem;
}

.insurance-panel__orb--small .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.insurance-panel__orb--card {
  top: 2.5rem;
  right: 2.3rem;
}

.insurance-panel__orb--file {
  left: 4.3rem;
  bottom: 2rem;
}

.insurance-panel__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.insurance-panel__content h3 {
  margin: 0;
  font-size: 1.45rem;
}

.insurance-panel__content p {
  margin: 0;
}

.insurance-panel__content .button-row {
  margin-top: 0;
  justify-content: flex-start;
}

.welcome-panel {
  padding: 1.5rem;
}

.welcome-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.welcome-panel__story h3,
.welcome-panel__highlights h3 {
  margin: 0 0 0.85rem;
}

.welcome-panel__story p + p {
  margin-top: 1rem;
}

.welcome-panel__highlights {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.welcome-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.welcome-highlight .stat__icon {
  margin-bottom: 0;
}

.welcome-highlight strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.welcome-highlight p {
  margin: 0;
}

.team-card__bio {
  width: 100%;
}

.team-card__bio p {
  margin: 0;
}

.team-card__more {
  display: inline;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-deep);
  font: inherit;
  font-weight: 800;
  line-height: inherit;
  vertical-align: baseline;
  cursor: pointer;
}

.team-card__more:hover,
.team-card__more:focus-visible {
  color: var(--brand);
}

.team-card--interactive {
  cursor: pointer;
}

.team-card--interactive:focus-visible {
  outline: 2px solid rgba(46, 111, 134, 0.55);
  outline-offset: 3px;
}

.team-modal-open {
  overflow: hidden;
}

.team-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.team-modal.is-open {
  display: block;
}

.team-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 46, 58, 0.58);
}

.team-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  overflow: auto;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 24px 54px rgba(13, 37, 48, 0.22);
}

.team-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.team-modal__media .card-media {
  width: 100%;
  height: 380px;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.team-modal__body {
  padding: 1.5rem;
}

.team-modal__role {
  margin-bottom: 0.7rem;
}

.team-modal__body h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.team-modal__text {
  margin: 0;
  white-space: pre-line;
}

.footer__inner {
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.75fr) minmax(180px, 0.75fr);
  align-items: start;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.footer__inner > :first-child {
  max-width: 32rem;
}

.footer p,
.footer li,
.footer small,
.form-note,
.micro {
  color: var(--muted);
  line-height: 1.7;
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer small {
  display: block;
  width: var(--content);
  margin: 1rem auto 0;
}

.social-links--footer {
  margin-top: 0.9rem;
}

.social-links--footer .social-links__link {
  border-color: var(--line);
  background: white;
  color: var(--brand-deep);
}

.social-links--footer .social-links__link:hover,
.social-links--footer .social-links__link:focus-visible {
  background: var(--brand-soft);
  border-color: rgba(46, 111, 134, 0.26);
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfdce1;
  border-radius: 0;
  padding: 0.9rem 0.95rem;
  font: inherit;
  color: var(--ink);
  background: white;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.success-note {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 0;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 700;
}

.success-note.is-visible {
  display: block;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline__step {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 800;
}

.booking-panel {
  height: auto;
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(25, 78, 99, 0.96) 0%, rgba(46, 111, 134, 0.92) 100%);
  color: white;
  align-content: start;
}

.booking-panel__image {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.booking-panel__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 35, 45, 0.08) 0%, rgba(12, 35, 45, 0.56) 100%);
}

.booking-panel__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease;
}

.booking-panel__image-caption {
  position: absolute;
  left: 1rem;
  z-index: 1;
  transition: opacity 220ms ease;
}

.booking-panel__image-caption {
  right: 1rem;
  bottom: 1rem;
  max-width: 26ch;
  color: white;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.4;
}

.booking-panel__image.is-transitioning img,
.booking-panel__image.is-transitioning .booking-panel__image-caption {
  opacity: 0.18;
}

.booking-panel h2 {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  line-height: 1.2;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
}

.booking-panel__actions {
  display: grid;
  gap: 0.55rem;
}

.booking-action {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.82rem 0.95rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 160ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.booking-panel__proof strong {
  display: block;
}

.meta-pill .icon,
.timeline__step .icon,
.eyebrow .icon,
.booking-action strong .icon {
  flex-shrink: 0;
}

.timeline__step .icon {
  transform: translateY(0);
}

.booking-action span,
.booking-panel__proof p {
  color: rgba(255, 255, 255, 0.84);
}

.booking-action:hover,
.booking-action:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 14px 26px rgba(12, 35, 45, 0.16);
}

.booking-panel__proof {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.action-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f6fafb 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.action-card h3 {
  margin: 0 0 0.35rem;
}

.action-card p {
  margin: 0 0 1rem;
}

.action-card .button {
  margin-top: 0;
}

.action-card > .meta-pill--icon-only {
  margin-bottom: 0.6rem;
}

.action-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
}

.meta-pill--icon-only {
  padding: 0.7rem;
  margin-bottom: 0;
  min-width: 3.4rem;
  justify-content: center;
}

.meta-pill--icon-only .icon--inline {
  margin-right: 0;
}

.quote-stack {
  display: grid;
  gap: 1rem;
}

.trust-card {
  display: grid;
  gap: 1rem;
}

.trust-divider {
  height: 1px;
  background: var(--line);
  margin: 0.1rem 0 0.15rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.split--trust {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 1.25rem;
  align-items: start;
}

.split--office-home {
  align-items: stretch;
}

.split--office-home__map {
  display: flex;
}

.split--office-home__map .map-frame {
  height: 100%;
  min-height: 0;
}

.split--office-home__hours {
  margin-top: 0;
}

.team-carousel {
  overflow: hidden;
}

.review-carousel {
  overflow: hidden;
}

.office-carousel {
  overflow: hidden;
}

.team-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-bottom: 0;
  flex: 0 0 auto;
}

.team-carousel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  height: 2.8rem;
  padding: 0 0.9rem;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  color: var(--brand-deep);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.team-carousel__button:hover {
  transform: translateY(-2px);
  background: #f5f9fb;
  border-color: rgba(46, 111, 134, 0.3);
  box-shadow: 0 14px 24px rgba(21, 58, 75, 0.1);
}

.team-carousel__button .icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.team-carousel__button--pause {
  min-width: 2.8rem;
  padding: 0;
}

.team-carousel__track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.team-carousel__slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
}

.review-carousel__viewport {
  overflow: hidden;
  margin-top: 1rem;
}

.office-carousel__viewport {
  overflow: hidden;
  margin-top: 1.5rem;
}

.review-carousel__track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.office-carousel__track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.review-carousel__slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
}

.office-carousel__slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
}

.office-carousel__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  background: #eaf2f6;
}

.google-review-card {
  padding: 1.35rem 1.4rem;
  background: white;
  height: 100%;
}

.google-review-card__top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.google-review-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #5f86c5;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.google-review-card__identity {
  min-width: 0;
}

.google-review-card__identity strong,
.google-review-card__identity span {
  display: block;
}

.google-review-card__identity strong {
  margin: 0 0 0.1rem;
  font-size: 1rem;
  line-height: 1.3;
}

.google-review-card__identity span,
.google-review-card__meta span,
.google-review-card__source {
  color: #6b7280;
  font-size: 0.9rem;
}

.google-review-card__source {
  margin-left: auto;
  font-weight: 700;
}

.google-review-card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.95rem;
  flex-wrap: wrap;
}

.review-stars {
  color: #fbbc04;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.google-review-card p {
  margin: 0;
  color: #374151;
  line-height: 1.7;
}

.google-review-card__body {
  display: grid;
  gap: 0.25rem;
}

.google-review-card__body.is-collapsed p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.google-review-card__more {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #5f6368;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease;
}

.google-review-card__more:hover {
  color: var(--brand-deep);
}

.quote-grid .google-review-card {
  min-height: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0;
}

.trust-strip .stat {
  min-width: 0;
  min-height: 156px;
  padding: 1.35rem 1.1rem;
}

.trust-strip .stat strong {
  margin-bottom: 0.35rem;
  font-size: 1.12rem;
  line-height: 1.3;
}

.trust-strip .stat span {
  line-height: 1.55;
}

.section-cta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.compact-cta {
  background: linear-gradient(180deg, #ffffff 0%, #f6fafb 100%);
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  gap: 0.75rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 24px rgba(21, 58, 75, 0.08);
}

.mobile-cta-bar__button {
  flex: 1 1 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  animation: rise 0.55s ease forwards;
}

[data-reveal="2"] {
  animation-delay: 90ms;
}

[data-reveal="3"] {
  animation-delay: 180ms;
}

[data-reveal="4"] {
  animation-delay: 270ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero__grid,
  .split,
  .footer__inner,
  .card-grid,
  .action-grid,
  .team-grid,
  .services-grid,
  .info-grid,
  .quote-grid,
  .faq-grid,
  .posts-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

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

  .review-carousel__slide {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .office-carousel__slide {
    flex-basis: calc((100% - 1rem) / 2);
  }

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

  .split--office-home__hours {
    margin-top: 0;
  }

  .welcome-panel__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .insurance-panel {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .insurance-panel__visual {
    width: 240px;
    min-height: 220px;
    margin: 0 auto;
  }

  .insurance-panel__content {
    padding-top: 0.35rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .header__inner {
    align-items: center;
  }

  .brand {
    min-width: 0;
    max-width: 250px;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(18, 46, 58, 0.32);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 60;
  }

  .nav-backdrop.is-open {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .nav {
    display: flex;
    flex: 0 0 auto;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    padding: 0.9rem 1rem 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: white;
    border-left: 0;
    box-shadow: none;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 180ms ease;
    z-index: 70;
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__header,
  .nav__close {
    display: flex;
  }

  .nav__header {
    margin-bottom: 0.35rem;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 1rem 0.15rem;
    font-size: 1.02rem;
    line-height: 1.35;
    border-bottom: 1px solid rgba(211, 229, 241, 0.7);
  }

  .nav__links {
    display: block;
  }

  .nav__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    justify-items: stretch;
    align-self: stretch;
    width: 100%;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    background: white;
  }

  .nav__cta,
  .nav__outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0;
    padding: 1rem 1rem;
    text-align: center;
    border-bottom: 0;
  }

  .nav__action-button {
    width: 100%;
    justify-content: center;
  }

  .team-carousel__slide {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 680px) {
  .review-carousel__slide {
    flex-basis: 100%;
  }

  .office-carousel__slide {
    flex-basis: 100%;
  }
}

@media (max-width: 640px) {
  body.nav-open {
    overflow: hidden;
  }

  .topbar {
    display: none;
  }

  .topbar__inner {
    padding: 0.5rem 0;
  }

  .section {
    padding-top: 2rem;
  }

  .topbar__item:last-child {
    display: flex;
  }

  .brand {
    max-width: 220px;
  }

  .brand__logo {
    width: 100%;
  }

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

  .hero__panel,
  .hero__card,
  .card,
  .info-card,
  .service-card,
  .team-card,
  .quote-card,
  .faq,
  .post-card,
  .contact-card,
  .form-card,
  .timeline__item,
  .cta,
  .stat {
    padding: 1rem;
  }

  .card-media {
    width: calc(100% + 2rem);
    margin: -1rem -1rem 0.9rem;
  }

  .booking-action {
    padding: 0.85rem 0.9rem;
  }

  .team-carousel__slide {
    flex-basis: 100%;
  }

  .team-carousel__controls {
    justify-content: flex-start;
    margin-bottom: 0.9rem;
  }

  .booking-panel__image {
    min-height: 180px;
  }

  .booking-panel__image-caption {
    max-width: 22ch;
    font-size: 0.9rem;
  }
}

.hero-overlay-explore {
  width: var(--content);
  margin: 0 auto;
}

.hero-overlay-explore__media {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #1f4f62;
  box-shadow: var(--shadow);
}

.hero-overlay-explore__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease;
}

.hero-overlay-explore__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 46, 58, 0.78) 0%, rgba(18, 46, 58, 0.36) 54%, rgba(18, 46, 58, 0.22) 100%);
}

.hero-overlay-explore__content {
  position: relative;
  z-index: 1;
  width: min(52%, 580px);
  padding: 3rem 2.5rem 10rem;
  color: white;
}

.hero-overlay-explore .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.hero-overlay-explore h1 {
  color: white;
  margin-top: 0.9rem;
  font-size: clamp(2.5rem, 4.9vw, 4.4rem);
}

.hero-overlay-explore p,
.hero-overlay-explore .hero-urgency {
  color: rgba(255, 255, 255, 0.9);
}

.hero-overlay-explore__caption {
  position: absolute;
  left: 2.5rem;
  bottom: 2rem;
  z-index: 1;
  max-width: 28ch;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero-overlay-explore__booking {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 1;
  width: min(370px, calc(100% - 4rem));
  padding: 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 46px rgba(15, 42, 54, 0.18);
}

.hero-overlay-explore__booking h2 {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  color: var(--ink);
}

.hero-overlay-explore__actions {
  display: grid;
  gap: 0.55rem;
}

.hero-overlay-explore__all-services {
  display: inline-flex;
  align-items: center;
  margin-top: 0.95rem;
  color: var(--brand-deep);
  font-weight: 800;
  font-size: 0.98rem;
}

.hero-overlay-explore__all-services:hover,
.hero-overlay-explore__all-services:focus-visible {
  color: var(--brand);
}

.booking-action--overlay {
  background: white;
  border: 1px solid var(--line);
}

.hero-overlay-explore .booking-action--overlay strong,
.hero-overlay-explore .booking-action--overlay span {
  color: var(--ink);
}

.hero-overlay-explore .booking-action--overlay strong .icon {
  color: var(--brand);
}

.hero-overlay-explore__media.is-transitioning img,
.hero-overlay-explore__media.is-transitioning .hero-overlay-explore__caption {
  opacity: 0.18;
}

@media (max-width: 980px) {
  .hero-overlay-explore__media {
    min-height: 760px;
  }

  .hero-overlay-explore__content {
    width: auto;
    padding: 2rem 1.5rem 18rem;
  }

  .hero-overlay-explore__booking {
    left: 1.5rem;
    right: 1.5rem;
    width: auto;
  }

  .hero-overlay-explore__caption {
    left: 1.5rem;
    right: 1.5rem;
    bottom: 15rem;
  }
}

@media (max-width: 640px) {
  .hero-overlay-explore__media {
    min-height: 365px;
  }

  .hero-overlay-explore__content {
    width: calc(100% - 1.2rem);
    max-width: 28rem;
    padding: 0.95rem 0.95rem 2.4rem;
  }

  .hero-overlay-explore h1 {
    margin-top: 0.4rem;
    max-width: 11ch;
    font-size: clamp(1.75rem, 7.1vw, 2.35rem);
    line-height: 0.95;
  }

  .hero-overlay-explore .button-row {
    gap: 0.6rem;
  }

  .hero-overlay-explore__booking {
    display: none;
  }

  .hero-overlay-explore__caption {
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.8rem;
    max-width: 30ch;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .team-modal__dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100vh - 1rem);
    margin: 0.5rem auto;
  }

  .team-modal__media .card-media {
    height: 260px;
  }

  .team-modal__body {
    padding: 1rem;
  }
}
