:root {
  --ink: #15302e;
  --muted: #5f7370;
  --teal: #0f766e;
  --teal-dark: #0a514c;
  --teal-soft: #dff7f3;
  --mint: #f0fbf9;
  --coral: #f97368;
  --cream: #fffaf5;
  --white: #ffffff;
  --line: #dbe9e7;
  --shadow: 0 24px 70px rgba(13, 74, 69, .13);
  --radius: 26px;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-180%);
  padding: .8rem 1rem;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.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: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 108px 0; }
.section-tint { background: var(--mint); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(219, 233, 231, .65);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  text-decoration: none;
  line-height: 1;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--teal);
  box-shadow: 0 9px 22px rgba(15,118,110,.2);
}
.brand-mark svg { width: 24px; fill: var(--white); }
.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.13rem;
  letter-spacing: -.02em;
}
.brand small {
  display: block;
  margin-top: .25rem;
  color: var(--teal);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav > a:not(.button) {
  color: #385652;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
}
.site-nav > a:not(.button):hover { color: var(--teal); }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .82rem 1.35rem;
  border: 1px solid var(--teal);
  border-radius: 14px;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(15,118,110,.19);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--teal-dark); box-shadow: 0 18px 32px rgba(15,118,110,.24); }
.button-small { min-height: 42px; padding: .65rem 1rem; border-radius: 12px; font-size: .9rem; }
.button-outline { color: var(--teal); background: transparent; box-shadow: none; }
.button-outline:hover { color: var(--white); }
.button-light { color: var(--teal-dark); border-color: var(--white); background: var(--white); box-shadow: none; }
.button-light:hover { color: var(--teal-dark); background: #e9fffb; }
.text-link {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 84px;
  background:
    radial-gradient(circle at 12% 10%, rgba(172, 238, 226, .55), transparent 28%),
    linear-gradient(135deg, #f8fffd 0%, #fffaf6 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 64px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span { width: 24px; height: 2px; border-radius: 999px; background: var(--coral); }
.hero h1, .section h2, .cta-section h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -.052em;
  line-height: 1.07;
}
.hero h1 { max-width: 680px; font-size: clamp(3rem, 5.6vw, 5.35rem); }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-lead { max-width: 650px; margin: 1.6rem 0 0; color: var(--muted); font-size: 1.18rem; }
.hero-actions { display: flex; align-items: center; gap: 1.3rem; margin-top: 2rem; }
.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.hero-notes strong { display: block; font-family: var(--font-display); font-size: .96rem; }
.hero-notes span { display: block; margin-top: .22rem; color: var(--muted); font-size: .78rem; line-height: 1.35; }

.hero-visual { position: relative; z-index: 2; }
.visual-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 36px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.visual-topline { display: flex; align-items: center; gap: .6rem; color: var(--muted); font-size: .8rem; font-weight: 700; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #38b26d; box-shadow: 0 0 0 6px rgba(56,178,109,.12); }
.clinic-illustration { width: 100%; margin-top: .8rem; }
.availability-card {
  position: absolute;
  right: -24px;
  bottom: 30px;
  width: min(330px, 78%);
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(24,65,61,.17);
}
.availability-icon { width: 39px; height: 39px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; color: var(--white); background: var(--coral); }
.availability-card strong { display: block; font-size: .9rem; }
.availability-card span { display: block; color: var(--muted); font-size: .75rem; line-height: 1.4; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-orb-one { width: 250px; height: 250px; right: -120px; top: 20px; background: rgba(249,115,104,.09); }
.hero-orb-two { width: 180px; height: 180px; left: 43%; bottom: -105px; background: rgba(15,118,110,.09); }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { min-height: 82px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid span { position: relative; text-align: center; color: #496662; font-size: .9rem; font-weight: 700; }
.trust-grid span:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; width: 1px; height: 28px; background: var(--line); transform: translateY(-50%); }

.section-heading { display: grid; grid-template-columns: 1fr .75fr; align-items: end; gap: 3rem; margin-bottom: 48px; }
.section h2, .cta-section h2 { font-size: clamp(2.25rem, 4vw, 3.65rem); }
.section-heading > p { margin: 0; color: var(--muted); font-size: 1.02rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: #b5dcd7; box-shadow: 0 20px 48px rgba(29,79,74,.11); }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: var(--teal-soft); }
.service-icon svg { width: 26px; fill: none; stroke: var(--teal); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 1.35rem 0 .6rem; font-family: var(--font-display); font-size: 1.25rem; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.service-note { margin: 1.35rem 0 0; color: var(--muted); font-size: .86rem; }

.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 84px; }
.about-visual { position: relative; }
.photo-placeholder {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  border: 1px dashed #9bc9c3;
  border-radius: 32px;
  text-align: center;
  background:
    linear-gradient(rgba(240,251,249,.8), rgba(240,251,249,.8)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(15,118,110,.035) 14px 28px);
}
.photo-placeholder-icon { width: 82px; height: 82px; display: grid; place-items: center; margin-bottom: 1.2rem; border-radius: 24px; color: var(--white); background: var(--teal); font-size: 2.5rem; font-weight: 300; }
.photo-placeholder strong { font-family: var(--font-display); font-size: 1.25rem; }
.photo-placeholder span { max-width: 350px; margin-top: .55rem; color: var(--muted); font-size: .9rem; }
.about-badge {
  position: absolute;
  right: -28px;
  bottom: 32px;
  min-width: 195px;
  padding: 1.15rem 1.3rem;
  border-radius: 18px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 18px 44px rgba(249,115,104,.25);
}
.about-badge strong, .about-badge span { display: block; }
.about-badge strong { font-family: var(--font-display); font-size: 1.1rem; }
.about-badge span { font-size: .78rem; opacity: .9; }
.about-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; }
.about-copy .text-link { margin-top: .5rem; }

.visit-grid { display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 72px; }
.contact-list { display: grid; gap: 1.25rem; margin: 2rem 0; }
.contact-item { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; }
.contact-item > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: var(--teal); background: var(--teal-soft); font-size: 1.2rem; }
.contact-item strong { display: block; margin-bottom: .18rem; font-family: var(--font-display); }
.contact-item p { margin: 0; color: var(--muted); font-size: .93rem; }
.visit-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.map-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 32px;
  background: #bfe8ed;
  box-shadow: var(--shadow);
}
.map-water { position: absolute; inset: 0; background: repeating-radial-gradient(circle at 10% 15%, rgba(255,255,255,.17) 0 2px, transparent 2px 24px); }
.map-land { position: absolute; border-radius: 48% 52% 43% 57% / 47% 43% 57% 53%; background: #d9efcf; box-shadow: inset 0 0 0 2px rgba(76,128,73,.08); }
.map-land-one { width: 470px; height: 540px; right: -125px; top: -38px; transform: rotate(11deg); }
.map-land-two { width: 180px; height: 260px; left: -95px; bottom: -45px; transform: rotate(-20deg); }
.map-road { position: absolute; height: 12px; border: 3px solid #fff; border-left: 0; border-right: 0; border-radius: 999px; background: #e7c98f; }
.road-one { width: 420px; right: -20px; top: 250px; transform: rotate(-29deg); }
.road-two { width: 330px; right: 32px; top: 180px; transform: rotate(49deg); }
.map-pin { position: absolute; left: 55%; top: 48%; width: 62px; height: 62px; border-radius: 50% 50% 50% 0; background: var(--coral); box-shadow: 0 16px 30px rgba(140,60,53,.24); transform: rotate(-45deg) translate(-50%, -50%); }
.map-pin span { position: absolute; inset: 18px; border-radius: 50%; background: var(--white); }
.map-label { position: absolute; left: 31%; top: 63%; padding: .9rem 1.1rem; border-radius: 14px; background: rgba(255,255,255,.93); box-shadow: 0 12px 25px rgba(29,79,74,.15); }
.map-label strong, .map-label small { display: block; }
.map-label strong { font-family: var(--font-display); }
.map-label small { margin-top: .18rem; color: var(--muted); }

.cta-section { padding: 20px 0 100px; }
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 56px;
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 0, rgba(255,255,255,.16), transparent 25%),
    linear-gradient(135deg, var(--teal-dark), var(--teal));
  box-shadow: 0 25px 65px rgba(15,118,110,.23);
}
.eyebrow-light { color: #b9eee7; }
.cta-card h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }
.cta-card p:not(.eyebrow) { max-width: 650px; margin: .8rem 0 0; color: rgba(255,255,255,.76); }
.cta-card .button { flex: 0 0 auto; }

.site-footer { padding: 68px 0 24px; color: #d9efec; background: #102d2a; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .5fr .5fr; gap: 4rem; }
.brand-footer { color: var(--white); }
.brand-footer small { color: #9cded6; }
.footer-grid > div > p { max-width: 420px; color: #9fb9b5; }
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links strong { margin-bottom: .45rem; color: var(--white); font-family: var(--font-display); }
.footer-links a { color: #a9c2be; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #88a6a1; font-size: .78rem; }
.footer-bottom span:last-child { max-width: 560px; text-align: right; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .section { padding: 82px 0; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
  }
  .menu-toggle span:not(.sr-only) { height: 2px; border-radius: 999px; background: var(--ink); }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: .1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 20px 45px rgba(21,48,46,.15);
  }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.button) { padding: .75rem; }
  .hero-grid, .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero h1 { margin: 0 auto; }
  .visual-card { max-width: 660px; margin: 0 auto; }
  .section-heading { grid-template-columns: 1fr; gap: 1.2rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .visit-grid { gap: 52px; }
  .about-visual { order: 2; }
  .about-copy { order: 1; }
  .photo-placeholder { min-height: 430px; }
  .map-card { min-height: 440px; }
  .cta-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 72px; }
  .brand-mark { width: 38px; height: 38px; border-radius: 12px; }
  .hero { padding: 70px 0 62px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-lead { font-size: 1.03rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-notes { grid-template-columns: 1fr; text-align: left; }
  .hero-notes > div { padding: .6rem 0; }
  .availability-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: -8px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: .7rem 0; }
  .trust-grid span { min-height: 58px; display: grid; place-items: center; padding: .5rem; }
  .trust-grid span:nth-child(2)::after { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .photo-placeholder { min-height: 360px; padding: 2rem; }
  .about-badge { right: 15px; bottom: 18px; }
  .visit-actions { flex-direction: column; }
  .visit-actions .button { width: 100%; }
  .map-card { min-height: 370px; }
  .map-label { left: 13%; }
  .cta-section { padding-bottom: 75px; }
  .cta-card { padding: 36px 26px; }
  .cta-card .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom span:last-child { text-align: left; }
}
