:root {
  color-scheme: light;
  --bg: #f4fbfb;
  --surface: #ffffff;
  --ink: #0f2a2b;
  --muted: #4f6f73;
  --brand: #08b2af;
  --brand-dark: #06908e;
  --brand-rgb: 8, 178, 175;
  --line: rgba(15, 42, 43, 0.12);
  --shadow: 0 18px 50px rgba(9, 34, 36, 0.12);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: radial-gradient(circle at top, #e9f6f6 0%, #f4fbfb 55%);
  color: var(--ink);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 251, 251, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e6fffe, var(--brand));
  box-shadow: inset 0 0 0 2px rgba(8, 178, 175, 0.25);
}

.brand-text {
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
}

.brand-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.menu {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.menu a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(8, 178, 175, 0.28);
}

.btn-ghost {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.btn-ghost:hover {
  background: rgba(var(--brand-rgb), 0.12);
  transform: translateY(-2px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero {
  padding: 40px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 52px;
  align-items: center;
}

.hero-specialty-banner {
  display: inline-grid;
  gap: 4px;
  padding: 14px 18px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.16), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(var(--brand-rgb), 0.28);
  box-shadow: 0 16px 36px rgba(7, 60, 61, 0.08);
}

.hero-specialty-banner strong {
  font-size: 1rem;
  color: var(--ink);
}

.hero-specialty-banner span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-copy h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.6rem, 4.5vw, 4.1rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.hero-metrics div {
  padding: 14px 10px;
  border-radius: 14px;
  background: rgba(8, 178, 175, 0.06);
  border: 1px solid var(--line);
}

.hero-metrics strong {
  display: block;
  font-size: 1.05rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  isolation: isolate;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(244, 251, 251, 0.08), rgba(10, 62, 64, 0.14)),
    linear-gradient(135deg, rgba(8, 178, 175, 0.1), rgba(244, 251, 251, 0.06));
  pointer-events: none;
  z-index: 1;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8, 178, 175, 0.12);
  filter: brightness(1.01) contrast(0.9) saturate(1.2);
}

.specialist-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 42, 43, 0.84);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 18px 30px rgba(9, 34, 36, 0.18);
  z-index: 2;
}

.photo-card {
  position: absolute;
  bottom: -22px;
  left: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  z-index: 2;
}

.badge {
  display: inline-block;
  background: rgba(var(--brand-rgb), 0.16);
  color: var(--brand);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.gold-bar {
  background: linear-gradient(120deg, rgba(var(--brand-rgb), 0.14), rgba(255, 255, 255, 0.7));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 50px 0;
}

.gold-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.gold-grid h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.gold-grid p {
  color: var(--muted);
}

.about {
  padding: 90px 0 0 0;
}

.about-stack {
  display: flex;
  gap: 28px;
}

.about-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-card__photo {
  margin: -32px -32px 28px;
  aspect-ratio: 4 / 2.35;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 18px 18px;
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.12);
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.06), rgba(255, 255, 255, 0));
}

.about-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.about-card h2 {
  font-family: "DM Serif Display", serif;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.about-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-credentials {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 42, 43, 0.08);
}

.about-credentials__label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.65rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.about-credentials__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-credentials__chips span {
  background: rgba(var(--brand-rgb), 0.12);
  border: 1px solid rgba(var(--brand-rgb), 0.4);
  color: var(--ink);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.about-panel {
  background: linear-gradient(120deg, rgba(8, 178, 175, 0.12), rgba(255, 255, 255, 0.95));
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid rgba(8, 178, 175, 0.25);
  box-shadow: 0 20px 60px rgba(7, 60, 61, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.about-panel ul {
  list-style: none;
  margin: 0;
  display: grid;
  gap: 18px;
  color: var(--muted);
}

.about-panel li {
  background: rgba(255, 255, 255, 0.85);
  padding: 14px 16px;
  border-radius: 14px;
  border-left: 4px solid rgba(var(--brand-rgb), 0.5);
  box-shadow: 0 12px 24px rgba(7, 60, 61, 0.06);
}

.about-panel strong {
  color: var(--brand-dark);
}

.about-panel a {
  align-self: flex-start;
}

.specialties {
  padding: 90px 0;
}

.specialties h2 {
  font-family: "DM Serif Display", serif;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.specialties-intro {
  max-width: 640px;
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.specialty-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid rgba(15, 42, 43, 0.08);
  box-shadow: 0 20px 45px rgba(7, 60, 61, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.specialty-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(8, 178, 175, 0.18), transparent 55%);
  pointer-events: none;
}

.specialty-card__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.specialty-card__header h3 {
  font-size: 1.5rem;
  margin: 0;
  font-family: "DM Serif Display", serif;
}

.specialty-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.specialty-pill {
  align-self: flex-start;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.specialty-card__meta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
}

.method {
  padding: 90px 0;
  background: rgba(8, 178, 175, 0.05);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.method h2 {
  font-family: "DM Serif Display", serif;
  margin-bottom: 16px;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand);
  color: #121212;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta {
  padding: 70px 0;
  background: linear-gradient(120deg, rgba(var(--brand-rgb), 0.18), rgba(255, 255, 255, 0.9));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
}

.cta h2 {
  font-family: "DM Serif Display", serif;
}

.contact {
  padding: 96px 0 72px;
  border-top: 1px solid var(--line);
}

.contact-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.contact-heading h2 {
  font-family: "DM Serif Display", serif;
  font-size: 2.2rem;
  line-height: 1.12;
  margin-bottom: 16px;
}

.contact-heading p:last-child {
  color: #264d53;
  font-size: 1rem;
  max-width: 620px;
}

.contact-cards {
  --unit-card-top-height: 204px;
  --unit-card-hours-height: 96px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
  margin-bottom: 34px;
}

.unit-card {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 48px rgba(7, 54, 59, 0.08);
  overflow: hidden;
  display: grid;
  min-height: 100%;
}

.unit-card__body {
  padding: 30px 30px 22px;
  display: grid;
  grid-template-rows:
    minmax(var(--unit-card-top-height), max-content)
    minmax(var(--unit-card-hours-height), max-content)
    auto;
  align-content: start;
  height: 100%;
}

.unit-card__top {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
  min-height: var(--unit-card-top-height);
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(15, 42, 43, 0.1);
}

.unit-card__top > div {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.unit-card__icon,
.contact-schedule__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f2fbfb, #e8f6f6);
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(var(--brand-rgb), 0.12);
}

.unit-card__icon svg,
.contact-schedule__icon svg,
.unit-card__phone-icon svg,
.contact-schedule__button svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.unit-card__top h3 {
  font-size: 1.12rem;
  line-height: 1.3;
  margin-bottom: 8px;
}

.unit-card__top p {
  color: #31555b;
  font-size: 0.99rem;
  line-height: 1.55;
}

.unit-card__top a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: var(--brand);
  font-weight: 600;
}

.unit-card__top a::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
  box-sizing: border-box;
}

.unit-card__hours {
  display: grid;
  gap: 10px;
  padding: 18px 0 20px;
  min-height: var(--unit-card-hours-height);
  align-content: start;
}

.unit-card__hours strong {
  font-size: 0.98rem;
}

.unit-card__hours span {
  color: #78969a;
}

.unit-card__meta-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.08);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.unit-card__meta-value {
  color: #4f6f73;
  font-size: 1rem;
  font-weight: 600;
}

.unit-card__actions {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 20px;
  margin-top: 0;
  flex-wrap: wrap;
}

.contact-schedule__button span,
.unit-card__cta-icon,
.floating-whatsapp__icon {
  display: inline-flex;
}

.contact-schedule__button span {
  color: currentColor;
}

.contact-schedule__button svg {
  width: 22px;
  height: 22px;
}

.unit-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 0;
  padding: 14px 18px;
  min-height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(20, 155, 74, 0.2);
  background: linear-gradient(135deg, #1bb35e, #149b4a);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 16px 30px rgba(20, 155, 74, 0.18);
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.unit-card__cta--primary {
  width: 100%;
  padding-inline: 18px;
}

.unit-card__cta span:first-child {
  order: 2;
}

.unit-card__cta-icon {
  order: 1;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.unit-card__cta-icon img,
.floating-whatsapp__icon img {
  width: 16px;
  height: 16px;
  display: block;
  object-fit: contain;
}

.unit-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 2px 2px 2px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.unit-card__link::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.unit-card__map {
  flex: 0 0 180px;
}

.contact-schedule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  border-radius: 28px;
  border: 1px solid rgba(var(--brand-rgb), 0.08);
  background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.08), rgba(255, 255, 255, 0.92));
  box-shadow: 0 20px 40px rgba(7, 54, 59, 0.05);
}

.contact-schedule__copy {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-schedule__copy strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.contact-schedule__copy p {
  color: #31555b;
  max-width: 420px;
}

.contact-schedule__button {
  min-width: 420px;
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(var(--brand-rgb), 0.55);
  color: var(--brand);
  background: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-footer {
  background: rgba(235, 244, 244, 0.78);
  color: #37585c;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  font-size: 0.95rem;
}

.footer-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(55, 88, 92, 0.7);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.unit-card__cta:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #18a857, #118742);
  border-color: rgba(20, 155, 74, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(20, 155, 74, 0.24);
}

.unit-card__link:hover {
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.contact-schedule__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(8, 178, 175, 0.16);
  border-color: rgba(var(--brand-rgb), 0.8);
  background: #ffffff;
}

.floating-whatsapp:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(8, 178, 175, 0.28);
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .specialist-tag {
    position: static;
    margin: 12px 0 0;
    justify-content: center;
  }

  .photo-card {
    position: static;
    margin-top: 12px;
  }

  .contact-cards {
    --unit-card-top-height: auto;
    --unit-card-hours-height: auto;
    grid-template-columns: 1fr;
  }

  .unit-card__body {
    display: flex;
    flex-direction: column;
  }

  .unit-card__top,
  .unit-card__hours {
    min-height: 0;
  }

  .unit-card__actions {
    align-self: stretch;
    margin-top: auto;
  }

  .contact-schedule {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-schedule__button {
    min-width: 0;
    width: 100%;
  }
}

@media (min-width: 901px) and (max-width: 1060px) {
  .contact-cards {
    --unit-card-top-height: 236px;
    --unit-card-hours-height: 104px;
  }
}

@media (max-width: 640px) {
  .site-header .btn {
    display: none;
  }

  .hero {
    padding-top: 30px;
  }

  .contact {
    padding-top: 84px;
  }

  .contact-heading h2 {
    font-size: 2.2rem;
  }

  .unit-card__body {
    padding: 22px 20px 16px;
  }

  .unit-card__top {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    min-height: 0;
  }

  .unit-card__icon,
  .contact-schedule__icon {
    width: 56px;
    height: 56px;
  }

  .contact-schedule {
    padding: 20px;
  }

  .contact-schedule__copy {
    align-items: flex-start;
  }

  .contact-schedule__copy p {
    max-width: none;
  }
}
