:root {
  --ink: #10272b;
  --muted: #64777b;
  --soft: #eef8f7;
  --soft-2: #f7fbfb;
  --white: #ffffff;
  --line: rgba(16, 39, 43, 0.12);
  --teal: #0f8b8d;
  --teal-dark: #075e61;
  --aqua: #5ed5d7;
  --orange: #f58220;
  --gold: #f4b544;
  --danger: #c94747;
  --shadow: 0 24px 70px rgba(9, 65, 68, 0.14);
  --glass: rgba(255, 255, 255, 0.68);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(94, 213, 215, 0.2), transparent 34rem),
    linear-gradient(180deg, #fbfefe 0%, #f4faf9 42%, #ffffff 100%);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(15, 139, 141, 0.48);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(18px, 5vw, 72px);
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 -1px 0 rgba(15, 139, 141, 0.06);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 253, 252, 0.76));
  border-color: rgba(15, 139, 141, 0.12);
  box-shadow: 0 18px 46px rgba(10, 76, 78, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 232px;
  min-inline-size: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(10, 76, 78, 0.16);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  color: rgba(16, 39, 43, 0.78);
  font-size: 0.94rem;
  font-weight: 800;
  min-inline-size: 0;
}

.nav a,
.footer-links a {
  position: relative;
}

.nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(15, 139, 141, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(15, 139, 141, 0.32), 0 0 0 6px rgba(15, 139, 141, 0.08);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.is-open .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.is-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.is-open .menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-glow {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  padding: clamp(120px, 12vw, 172px) clamp(18px, 5vw, 72px) 54px;
}

.hero::before,
.hero::after,
.section-glow::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  top: 10%;
  right: -8rem;
  width: 28rem;
  height: 28rem;
  background: rgba(15, 139, 141, 0.13);
}

.hero::after {
  left: -9rem;
  bottom: 6rem;
  width: 24rem;
  height: 24rem;
  background: rgba(245, 130, 32, 0.12);
}

.section-glow::after {
  top: 10rem;
  left: 52%;
  width: 18rem;
  height: 18rem;
  background: rgba(94, 213, 215, 0.14);
  filter: blur(8px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(9, 65, 68, 0.16), 0 0 0 6px rgba(94, 213, 215, 0.11);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 18px 34px rgba(15, 139, 141, 0.22);
}

.button-secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 139, 141, 0.22);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 30% 20%, rgba(94, 213, 215, 0.36), transparent 18rem),
    radial-gradient(circle at 78% 70%, rgba(245, 130, 32, 0.18), transparent 18rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(15, 139, 141, 0.16);
  border-radius: 28px;
  background-image:
    linear-gradient(rgba(15, 139, 141, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 139, 141, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.orb-one {
  top: 68px;
  right: 82px;
  width: 118px;
  height: 118px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
}

.orb-two {
  left: 54px;
  bottom: 62px;
  width: 92px;
  height: 92px;
  background: linear-gradient(135deg, var(--teal), var(--aqua));
}

.care-core {
  position: absolute;
  inset: 50%;
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 70px rgba(8, 80, 82, 0.18);
  transform: translate(-50%, -50%);
}

.pulse-ring {
  position: absolute;
  inset: -22px;
  border: 1px solid rgba(15, 139, 141, 0.26);
  border-radius: 54px;
  animation: pulse 2.8s ease-in-out infinite;
}

.medical-cross {
  position: relative;
  width: 96px;
  height: 96px;
}

.medical-cross span {
  position: absolute;
  inset: 50% auto auto 50%;
  display: block;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--teal), #0ba2c7);
  transform: translate(-50%, -50%);
}

.medical-cross span:first-child {
  width: 34px;
  height: 96px;
}

.medical-cross span:last-child {
  width: 96px;
  height: 34px;
}

.care-core p {
  position: absolute;
  bottom: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 40px rgba(9, 65, 68, 0.13);
  backdrop-filter: blur(16px);
  animation: float 5s ease-in-out infinite;
}

.card-top {
  top: 92px;
  left: 42px;
}

.card-mid {
  right: 28px;
  top: 46%;
  animation-delay: -1s;
}

.card-bottom {
  left: 72px;
  bottom: 80px;
  animation-delay: -2s;
}

.mini-icon,
.service-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--orange));
  font-weight: 900;
}

.mini-icon {
  width: 34px;
  height: 34px;
}

.hero-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(38px, 6vw, 70px);
}

.hero-badges span {
  padding: 11px 16px;
  border: 1px solid rgba(15, 139, 141, 0.18);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 24px rgba(15, 139, 141, 0.08);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-badges .highlight-badge {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 16px 34px rgba(245, 130, 32, 0.22);
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 52px);
}

.section-heading.center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.about {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(238, 248, 247, 0.74));
}

.about-grid,
.card-grid,
.feature-grid,
.testimonial-grid,
.answer-grid {
  display: grid;
  gap: 18px;
}

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

.glass-panel,
.department-card,
.service-card,
.answer-card,
.feature-card,
.testimonial-card,
.appointment-form,
.hours-card,
.location-card {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: var(--glass);
  box-shadow: 0 18px 44px rgba(9, 65, 68, 0.09);
  backdrop-filter: blur(18px);
}

.glass-panel {
  min-height: 220px;
  padding: 26px;
  border-radius: 26px;
}

.glass-panel,
.department-card,
.service-card,
.answer-card,
.feature-card,
.testimonial-card,
.appointment-form,
.hours-card,
.location-card {
  min-inline-size: 0;
}

.glass-panel p,
.department-card p,
.service-card p,
.answer-card p,
.feature-card p,
.testimonial-card p,
.appointment-copy p,
.contact-copy address {
  margin: 0;
  color: var(--muted);
}

.departments,
.services {
  position: relative;
  overflow: hidden;
}

.departments::before,
.services::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -8rem;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  background: rgba(94, 213, 215, 0.16);
}

.departments-grid,
.services-grid {
  position: relative;
}

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

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
  margin-inline: auto;
}

.department-card,
.service-card,
.answer-card {
  min-height: 252px;
  padding: 24px;
  border-radius: 26px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.department-card:hover,
.service-card:hover,
.answer-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 139, 141, 0.28);
  box-shadow: 0 30px 70px rgba(9, 65, 68, 0.16), 0 0 0 7px rgba(94, 213, 215, 0.1);
}

.department-card:hover,
.service-card:hover,
.answer-card:hover {
  background: rgba(255, 255, 255, 0.84);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
}

.answer-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(238, 248, 247, 0.58));
}

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

.answer-card {
  min-height: 240px;
}

.why {
  background:
    linear-gradient(135deg, rgba(7, 94, 97, 0.96), rgba(16, 39, 43, 0.98)),
    radial-gradient(circle at 80% 10%, rgba(245, 130, 32, 0.25), transparent 24rem);
  color: var(--white);
}

.why .eyebrow {
  color: #9ee9eb;
}

.why .section-heading h2 {
  color: var(--white);
}

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

.feature-card {
  min-height: 218px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.feature-card strong {
  display: block;
  margin-bottom: 30px;
  color: #9ee9eb;
  font-size: 0.88rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.76);
}

.appointment {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 7vw, 88px);
  align-items: start;
  background: var(--soft-2);
}

.appointment-copy {
  position: sticky;
  top: 110px;
}

.appointment-copy p {
  max-width: 560px;
  margin-top: 18px;
}

.hours-card {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding: 22px;
  border-radius: 24px;
}

.hours-card span,
.opening-hours span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.opening-hours p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 30px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 39, 43, 0.12);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15, 139, 141, 0.56);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(15, 139, 141, 0.12);
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.field-error {
  min-height: 18px;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 700;
}

.field-help {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 850;
}

.submit-button.is-loading {
  pointer-events: none;
  opacity: 0.78;
}

.submit-button.is-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: var(--white);
  border-radius: 999px;
  animation: spin 720ms linear infinite;
}

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

.testimonial-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 28px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.review-top strong {
  display: block;
  line-height: 1.2;
}

.review-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--orange));
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(15, 139, 141, 0.16);
}

.stars {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.stars span {
  width: 13px;
  height: 13px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.testimonial-card p {
  color: var(--ink);
  font-size: 1.02rem;
}

.testimonial-card span {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.faq {
  background: linear-gradient(180deg, rgba(238, 248, 247, 0.7), rgba(255, 255, 255, 0.85));
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  border: 0;
  padding: 22px 24px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item button span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  transition: transform 180ms ease;
}

.faq-item.is-open button span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 7vw, 84px);
  align-items: center;
}

.contact-copy address {
  margin-top: 20px;
  font-style: normal;
  font-size: 1.08rem;
}

.location-card {
  position: relative;
  min-height: 440px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 20%, rgba(245, 130, 32, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(238, 248, 247, 0.65));
}

.map-grid {
  position: absolute;
  inset: 28px;
  border-radius: 28px;
  background-image:
    linear-gradient(rgba(15, 139, 141, 0.1) 2px, transparent 2px),
    linear-gradient(90deg, rgba(15, 139, 141, 0.1) 2px, transparent 2px);
  background-size: 42px 42px;
}

.map-grid::before,
.map-grid::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(15, 139, 141, 0.16);
}

.map-grid::before {
  left: 12%;
  top: 42%;
  width: 76%;
  height: 16px;
  transform: rotate(-12deg);
}

.map-grid::after {
  left: 45%;
  top: 12%;
  width: 16px;
  height: 72%;
  transform: rotate(18deg);
}

.map-pin {
  position: absolute;
  top: 42%;
  left: 54%;
  width: 54px;
  height: 54px;
  border: 12px solid var(--orange);
  border-radius: 50% 50% 50% 0;
  background: var(--white);
  transform: rotate(-45deg);
  box-shadow: 0 18px 34px rgba(245, 130, 32, 0.28);
}

.location-content,
.opening-hours {
  position: absolute;
  left: 28px;
  right: 28px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.location-content {
  top: 28px;
}

.location-content span {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-content strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.location-content p {
  margin: 10px 0 0;
  color: var(--muted);
}

.opening-hours {
  bottom: 28px;
  display: grid;
  gap: 5px;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #082b2e;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: contain;
  background: var(--white);
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand p,
.emergency-note,
.copyright {
  margin: 0;
}

.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer-social span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
}

.emergency-note,
.copyright {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

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

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

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

@media (max-width: 1100px) {
  .about-grid,
  .departments-grid,
  .answer-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .appointment-copy {
    position: static;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-grid {
    gap: 42px;
  }
}

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px clamp(16px, 4vw, 28px);
  }

  .nav-cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(15, 139, 141, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-button {
    display: block;
  }

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

  .site-header.is-open .nav a {
    padding: 14px;
    border-radius: 16px;
  }

  .site-header.is-open .nav a:hover {
    background: var(--soft);
  }

  .site-header.is-open .nav-cta {
    display: none;
  }

  .hero-visual {
    min-height: 440px;
  }

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

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

  .section {
    padding: 58px clamp(16px, 5vw, 22px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.62rem, 8vw, 2.45rem);
    line-height: 1.1;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 94px;
    padding-bottom: 34px;
  }

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

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 380px;
    border-radius: 26px;
  }

  .care-core {
    width: 170px;
    height: 170px;
    border-radius: 32px;
  }

  .medical-cross {
    transform: scale(0.76);
  }

  .float-card {
    max-width: min(190px, calc(100% - 40px));
    padding: 11px 12px;
    font-size: 0.84rem;
  }

  .card-top {
    top: 54px;
    left: 20px;
  }

  .card-mid {
    right: 18px;
  }

  .card-bottom {
    left: 20px;
    bottom: 52px;
  }

  .about-grid,
  .departments-grid,
  .answer-grid,
  .services-grid,
  .testimonial-grid,
  .appointment-form {
    grid-template-columns: 1fr;
  }

  .department-card,
  .service-card,
  .answer-card,
  .glass-panel,
  .feature-card,
  .testimonial-card {
    min-height: auto;
  }

  .location-card {
    min-height: 390px;
  }

  .location-content,
  .opening-hours {
    left: 18px;
    right: 18px;
    padding: 16px;
  }

  .footer {
    gap: 22px;
    padding-block: 30px;
  }

  .footer-links,
  .footer-social {
    gap: 12px;
  }

  .footer-brand {
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .brand strong {
    max-width: 138px;
    font-size: 0.88rem;
    line-height: 1.1;
  }

  .hero-visual {
    min-height: 350px;
  }

  .care-core {
    width: 146px;
    height: 146px;
  }

  .float-card {
    font-size: 0.78rem;
  }
}
