:root {
  --color-primary: #2ca6a4;
  --color-primary-deep: #1f8c8a;
  --color-accent: #e53935;
  --color-accent-soft: rgba(229, 57, 53, 0.1);
  --color-surface: #ffffff;
  --color-surface-soft: #f6fbfc;
  --color-surface-blue: #edf7f8;
  --color-text: #18313f;
  --color-text-muted: #5d717f;
  --color-border: rgba(35, 50, 65, 0.08);
  --shadow-soft: 0 28px 70px rgba(17, 51, 71, 0.08);
  --shadow-card: 0 18px 40px rgba(24, 49, 63, 0.06);
  --shadow-float: 0 18px 38px rgba(8, 25, 36, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --container: min(1180px, calc(100vw - 2rem));
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(44, 166, 164, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fcfefe 58%, #ffffff 100%);
  line-height: 1.72;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section {
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
  position: relative;
}

.section-kicker,
.eyebrow,
.summary-label,
.form-kicker {
  margin: 0 0 1rem;
  color: var(--color-primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-kicker-alert {
  color: var(--color-accent);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.8rem, 7.2vw, 6.4rem);
  line-height: 0.98;
  max-width: 10.5ch;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2.5rem, 5.2vw, 4.25rem);
  margin-bottom: 1.1rem;
}

h3 {
  font-size: 1.18rem;
  font-weight: 700;
}

p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0.92rem 1.55rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible {
  outline: 2px solid rgba(44, 166, 164, 0.35);
  outline-offset: 3px;
}

.button-accent {
  color: #ffffff;
  background: linear-gradient(135deg, #ef5350, #d9332f);
  box-shadow: 0 16px 34px rgba(229, 57, 53, 0.28);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: linear-gradient(135deg, #f26461, #c92d2a);
}

.button-secondary {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 12px 30px rgba(11, 32, 46, 0.12);
}

.button-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease, border-color 180ms ease;
}

.site-header:not(.is-scrolled) {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(8, 25, 36, 0.08);
  border-bottom-color: rgba(24, 49, 63, 0.05);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(19, 43, 58, 0.08);
  border-bottom: 1px solid rgba(24, 49, 63, 0.05);
}

.site-header:not(.is-scrolled) .brand-copy strong,
.site-header:not(.is-scrolled) .brand-copy small,
.site-header:not(.is-scrolled) .site-nav a {
  color: rgba(24, 49, 63, 0.92);
  text-shadow: none;
}

.site-header:not(.is-scrolled) .site-nav a[aria-current="page"] {
  color: var(--color-primary);
}

.site-header:not(.is-scrolled) .site-nav a:hover,
.site-header:not(.is-scrolled) .site-nav a:focus-visible {
  color: var(--color-primary);
  opacity: 1;
}

.site-header:not(.is-scrolled) .brand-mark {
  background: linear-gradient(160deg, rgba(44, 166, 164, 0.18), rgba(44, 166, 164, 0.05));
  box-shadow: inset 0 0 0 1px rgba(44, 166, 164, 0.2);
}

.site-header:not(.is-scrolled) .brand-mark svg {
  stroke: var(--color-primary);
}

.site-header:not(.is-scrolled) .menu-toggle {
  background: rgba(255, 255, 255, 0.82);
}

.site-header:not(.is-scrolled) .menu-toggle span {
  background: var(--color-text);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.header-actions .button {
  min-height: 3.25rem;
  padding: 0.82rem 1.3rem;
  white-space: nowrap;
}

.header-cta-secondary {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(24, 49, 63, 0.06);
  box-shadow: 0 14px 30px rgba(17, 51, 71, 0.08);
}

.site-header:not(.is-scrolled) .header-cta-secondary {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(44, 166, 164, 0.18), rgba(44, 166, 164, 0.05));
  box-shadow: inset 0 0 0 1px rgba(44, 166, 164, 0.2);
}

.brand-mark svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 1.45rem;
}

.site-nav a {
  color: rgba(24, 49, 63, 0.84);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-nav a[aria-current="page"] {
  color: var(--color-primary);
}

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

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.65rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(21, 49, 66, 0.08);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 0.3rem 0;
  border-radius: 999px;
  background: var(--color-text);
}

.hero {
  position: relative;
  overflow: clip;
  min-height: min(100svh, 980px);
  padding: calc(var(--header-height) + 3.75rem) 0 clamp(6rem, 10vw, 8rem);
  display: grid;
  align-items: end;
}

.hero-backdrop,
.hero::before {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background:
    linear-gradient(112deg, rgba(9, 30, 48, 0.86) 10%, rgba(25, 90, 111, 0.72) 48%, rgba(44, 166, 164, 0.4) 100%),
    url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1800&q=80&fm=webp") center/cover no-repeat;
  transform: scale(1.08);
  animation: heroZoom 28s ease-out forwards;
}

.hero::before {
  content: "";
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(14, 33, 45, 0.16));
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.45;
}

.hero-glow-one {
  width: 22rem;
  height: 22rem;
  right: -3rem;
  top: 6rem;
  background: rgba(44, 166, 164, 0.32);
}

.hero-glow-two {
  width: 15rem;
  height: 15rem;
  left: -4rem;
  bottom: 8rem;
  background: rgba(255, 255, 255, 0.12);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: clamp(2.5rem, 6vw, 5.2rem);
}

.hero-copy {
  color: #ffffff;
  max-width: 48rem;
}

.hero-copy .eyebrow,
.hero-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.hero-summary .summary-label {
  color: rgba(255, 255, 255, 0.72);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.3rem;
  padding: 0.82rem 1.12rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(14px);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-subtitle {
  max-width: 38rem;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero-links a:hover,
.hero-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.hero-summary {
  padding: 1.6rem 1.5rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(16px);
  color: #ffffff;
  align-self: center;
}

.summary-list {
  display: grid;
  gap: 0.82rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.summary-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #ffffff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(2.6rem, 6vw, 5.4rem);
}

.split-media-first {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
}

.section-copy p + .value-points,
.section-copy p + .service-stack {
  margin-top: 2.35rem;
}

.value-points {
  display: grid;
  gap: 1.2rem;
}

.value-points article,
.service-stack article {
  position: relative;
  padding: 0.2rem 0 0.2rem 1.25rem;
}

.value-points strong,
.service-stack h3,
.contact-highlights strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.value-points article::before,
.service-stack article::before,
.contact-highlights article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  bottom: 0.45rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(44, 166, 164, 0.72), rgba(44, 166, 164, 0.12));
}

.image-frame {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(17, 51, 71, 0.1);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(9, 32, 46, 0.12));
}

.image-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.image-frame:hover img {
  transform: scale(1.03);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.9rem;
}

.section-copy > p,
.section-heading > p,
.contact-copy > p {
  max-width: 38rem;
}

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

.specialty-card {
  position: relative;
  padding: 1.7rem 1.45rem 1.85rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(44, 166, 164, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.specialty-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 1.45rem;
  width: 3rem;
  height: 3px;
  border-radius: 999px;
  background: rgba(44, 166, 164, 0.45);
}

.specialty-card:hover,
.specialty-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(24, 49, 63, 0.1);
}

.specialty-card p {
  margin-top: 0.8rem;
}

.icon-wrap {
  width: 3.15rem;
  height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(44, 166, 164, 0.14), rgba(44, 166, 164, 0.06));
  color: var(--color-primary);
}

.icon-wrap svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-extended {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(237, 247, 248, 0.45));
}

.service-stack {
  display: grid;
  gap: 1.3rem;
}

.section-facilities {
  background:
    linear-gradient(180deg, rgba(44, 166, 164, 0.06), rgba(44, 166, 164, 0.03)),
    var(--color-surface-blue);
}

.facilities-layout {
  display: grid;
  gap: 3rem;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 0.25rem;
}

.facility-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(44, 166, 164, 0.14);
}

.facility-item h3 {
  font-size: 1.02rem;
  padding-top: 0.35rem;
}

.facility-item .icon-wrap {
  margin-bottom: 0;
}

.facility-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1rem;
  margin-top: 0.7rem;
}

.gallery-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(17, 51, 71, 0.1);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.emergency-section {
  padding-top: clamp(1.5rem, 4vw, 2.75rem);
}

.emergency-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1.2fr) minmax(250px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.9rem 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(229, 57, 53, 0.08), rgba(255, 255, 255, 0.98)),
    #ffffff;
  border: 1px solid rgba(229, 57, 53, 0.08);
  box-shadow: 0 24px 60px rgba(98, 39, 38, 0.08);
}

.emergency-icon {
  width: 4.2rem;
  height: 4.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.4rem;
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.emergency-icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timing-card {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(229, 57, 53, 0.08);
}

.timing-card span,
.contact-highlights span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.timing-card strong {
  color: var(--color-text);
  font-size: 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.3rem;
  counter-reset: why;
}

.why-item {
  position: relative;
  padding: 2rem 0 0;
  counter-increment: why;
  border-top: 1px solid rgba(44, 166, 164, 0.18);
}

.why-item::before {
  content: "0" counter(why);
  position: absolute;
  top: 0.25rem;
  left: 0;
  color: rgba(44, 166, 164, 0.6);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(246, 251, 252, 0.55));
  padding-bottom: calc(clamp(4.5rem, 8vw, 7.5rem) + 4.5rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.contact-highlights {
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.contact-highlights article {
  position: relative;
  padding: 0.1rem 0 0.1rem 1.25rem;
}

.contact-form {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(44, 166, 164, 0.06);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  color: var(--color-text);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(24, 49, 63, 0.12);
  background: #ffffff;
  color: var(--color-text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(44, 166, 164, 0.65);
  box-shadow: 0 0 0 4px rgba(44, 166, 164, 0.12);
}

.page-shell {
  background:
    radial-gradient(circle at top left, rgba(44, 166, 164, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfefe 62%, #ffffff 100%);
}

.page-hero {
  position: relative;
  overflow: clip;
  padding: calc(var(--header-height) + 3.5rem) 0 4.5rem;
  min-height: 34rem;
  color: #ffffff;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-hero::before {
  background:
    linear-gradient(115deg, rgba(8, 29, 45, 0.86), rgba(44, 166, 164, 0.44)),
    var(--page-hero-image) center/cover no-repeat;
  transform: scale(1.04);
}

.page-hero::after {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(14, 33, 45, 0.2));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.78fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
}

.page-copy {
  max-width: 42rem;
}

.page-kicker {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-title {
  max-width: 13ch;
}

.page-subtitle {
  max-width: 38rem;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.page-panel {
  padding: 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(14px);
}

.page-panel h3,
.page-panel p,
.page-panel li,
.page-panel strong {
  color: #ffffff;
}

.page-panel h3 {
  margin-bottom: 0.75rem;
}

.page-panel p + ul,
.page-panel p + .page-meta {
  margin-top: 1rem;
}

.page-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.page-panel li {
  position: relative;
  padding-left: 1rem;
}

.page-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #ffffff;
}

.page-meta {
  display: grid;
  gap: 0.9rem;
}

.page-meta article {
  position: relative;
  padding-left: 1.1rem;
}

.page-meta article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18));
}

.page-meta span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-meta strong {
  display: block;
  font-size: 1rem;
}

.page-hero-specialties {
  --page-hero-image: url("https://images.unsplash.com/photo-1512678080530-7760d81faba6?auto=format&fit=crop&w=1800&q=80&fm=webp");
}

.page-hero-facilities {
  --page-hero-image: url("https://images.unsplash.com/photo-1580281657527-47ef34f9ba07?auto=format&fit=crop&w=1800&q=80&fm=webp");
}

.page-hero-about {
  --page-hero-image: url("https://images.unsplash.com/photo-1516549655669-df5abf50d4ff?auto=format&fit=crop&w=1800&q=80&fm=webp");
}

.page-hero-contact {
  --page-hero-image: url("https://images.unsplash.com/photo-1551076805-e1869033e561?auto=format&fit=crop&w=1800&q=80&fm=webp");
}

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

.service-card {
  position: relative;
  padding: 1.55rem 1.35rem 1.6rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84));
  box-shadow: 0 18px 42px rgba(24, 49, 63, 0.06);
  border: 1px solid rgba(44, 166, 164, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0;
  width: 2.8rem;
  height: 3px;
  border-radius: 999px;
  background: rgba(44, 166, 164, 0.45);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(24, 49, 63, 0.09);
}

.service-card p {
  margin-top: 0.7rem;
}

.page-section-soft {
  background: linear-gradient(180deg, rgba(237, 247, 248, 0.38), rgba(255, 255, 255, 0));
}

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

.mini-card {
  padding: 1.3rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(24, 49, 63, 0.06);
}

.mini-card h3 {
  margin-top: 0.9rem;
}

.info-strip {
  padding: 1.8rem 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(44, 166, 164, 0.08), rgba(255, 255, 255, 0.95));
  box-shadow: 0 22px 56px rgba(24, 49, 63, 0.06);
}

.info-strip p {
  max-width: 52rem;
}

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

.contact-card {
  padding: 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(24, 49, 63, 0.06);
}

.contact-card span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  color: var(--color-text);
  font-size: 1rem;
}

.contact-card p {
  margin-top: 0.55rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.map-embed {
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(24, 49, 63, 0.08);
  background: #ffffff;
}

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

.page-cta {
  padding-top: 0;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(44, 166, 164, 0.08), rgba(255, 255, 255, 0.96));
  box-shadow: 0 20px 48px rgba(24, 49, 63, 0.06);
}

.cta-band p {
  max-width: 40rem;
}

.note-text {
  margin-top: 1rem;
  font-size: 0.94rem;
}

.booking-future-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.9rem 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(44, 166, 164, 0.08), rgba(255, 255, 255, 0.98));
  box-shadow: 0 20px 48px rgba(24, 49, 63, 0.06);
}

.booking-status-text {
  max-width: 44rem;
}

.booking-actions {
  align-items: center;
}

.booking-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(44, 166, 164, 0.12);
  color: var(--color-primary-deep);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-future-card.is-live {
  background: linear-gradient(135deg, rgba(44, 166, 164, 0.12), rgba(255, 255, 255, 0.98));
}

.booking-future-card.is-live .booking-pill {
  background: rgba(44, 166, 164, 0.18);
}

.site-footer {
  padding: 3.6rem 0 6.5rem;
  background: #fbfefe;
  border-top: 1px solid rgba(24, 49, 63, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 2.8rem;
}

.site-footer h3 {
  margin-bottom: 1.05rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--color-text-muted);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-primary);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(44, 166, 164, 0.08);
  transition: transform 180ms ease, background-color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(44, 166, 164, 0.14);
}

.social-links svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: none;
  gap: 0.75rem;
  padding: 0.85rem 1rem max(0.85rem, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 -10px 30px rgba(18, 41, 56, 0.1);
}

.mobile-cta .button {
  flex: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-grid > .reveal:nth-child(2) {
  --reveal-delay: 70ms;
}

.stagger-grid > .reveal:nth-child(3) {
  --reveal-delay: 140ms;
}

.stagger-grid > .reveal:nth-child(4) {
  --reveal-delay: 210ms;
}

.stagger-grid > .reveal:nth-child(5) {
  --reveal-delay: 280ms;
}

.stagger-grid > .reveal:nth-child(6) {
  --reveal-delay: 350ms;
}

.stagger-grid > .reveal:nth-child(7) {
  --reveal-delay: 420ms;
}

.stagger-grid > .reveal:nth-child(8) {
  --reveal-delay: 490ms;
}

#home,
#specialties,
#facilities,
#about,
#contact,
#emergency {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1.02);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes floatDrift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.hero-badge,
.hero-eyebrow,
.hero-title,
.hero-text,
.hero-actions-enter,
.hero-summary {
  opacity: 0;
  animation: fadeUp 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-badge {
  animation-delay: 120ms;
}

.hero-eyebrow {
  animation-delay: 220ms;
}

.hero-title {
  animation-delay: 320ms;
}

.hero-text {
  animation-delay: 440ms;
}

.hero-actions-enter {
  animation-delay: 580ms;
}

.hero-summary {
  animation-delay: 720ms;
}

.hero-badge {
  animation-name: fadeUp, floatDrift;
  animation-duration: 900ms, 6s;
  animation-delay: 120ms, 1.3s;
  animation-fill-mode: forwards, both;
  animation-iteration-count: 1, infinite;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), ease-in-out;
}

@media (max-width: 1080px) {
  .specialty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .hero-inner,
  .page-hero-inner,
  .split,
  .split-media-first,
  .contact-layout,
  .emergency-banner,
  .cta-band,
  .booking-future-card {
    grid-template-columns: 1fr;
  }

  .hero-summary {
    max-width: 30rem;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.4rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(44, 166, 164, 0.08);
  }

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

  .page-hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 82px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 2.4rem);
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .specialty-grid,
  .services-grid,
  .facility-grid,
  .why-grid,
  .facility-gallery,
  .mini-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .emergency-banner {
    padding: 1.5rem;
  }

  .hero-actions .button,
  .mobile-cta .button {
    min-height: 3.8rem;
  }

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

  .hero-links a,
  .contact-actions .button {
    width: 100%;
    justify-content: center;
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 2.6rem);
    padding-bottom: 3rem;
  }

  .contact-form,
  .page-panel,
  .contact-card,
  .cta-band,
  .info-strip {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .mobile-cta {
    display: flex;
  }
}

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

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

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  .hero-badge,
  .hero-eyebrow,
  .hero-title,
  .hero-text,
  .hero-actions-enter,
  .hero-summary {
    opacity: 1;
    transform: none;
  }
}
