:root {
  --ink: #163338;
  --ink-soft: #52696d;
  --brand: #0b525b;
  --brand-dark: #073c43;
  --brand-light: #dff2f1;
  --cyan: #08a9d8;
  --accent: #e77b4c;
  --paper: #f7faf9;
  --white: #ffffff;
  --line: #dce7e5;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --radius-sm: 12px;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(12, 52, 58, .11);
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 76px 0 74px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
img { max-width: 100%; }
a { color: var(--brand); transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
a:hover { color: var(--brand-dark); text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.skip-link { position: fixed; z-index: 9999; top: -80px; left: 16px; padding: 10px 16px; border-radius: 0 0 8px 8px; color: white; background: var(--brand-dark); }
.skip-link:focus { top: 0; color: white; }
.site-container { width: 100%; max-width: 1180px; padding-right: 20px; padding-left: 20px; }

h1, h2, h3 { margin-top: 0; color: var(--ink); }
h1, h2 { font-family: var(--serif); letter-spacing: -.035em; }
h1 { font-size: clamp(2.9rem, 12vw, 6.7rem); font-weight: 700; line-height: .93; }
h1 em { color: var(--brand); font-weight: 600; }
h2 { font-size: clamp(2.35rem, 8.4vw, 4.5rem); font-weight: 700; line-height: 1; }
h3 { font-family: var(--sans); font-size: 1.16rem; font-weight: 800; line-height: 1.35; }
p { margin-top: 0; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--brand); font-size: .72rem; font-weight: 800; letter-spacing: .14em; line-height: 1.4; text-transform: uppercase; }
.eyebrow span { display: block; width: 28px; height: 2px; background: var(--accent); }
.eyebrow.light { color: #b9d8d6; }
.section { padding: 78px 0; scroll-margin-top: 74px; }
.section-heading { margin-bottom: 38px; }
.section-heading h2 { max-width: 690px; margin-bottom: 24px; }
.section-heading > p { max-width: 580px; color: var(--ink-soft); }

.site-nav { height: 76px; padding: 0; border-bottom: 1px solid rgba(11,82,91,.09); background: rgba(247,250,249,.96); box-shadow: 0 4px 20px rgba(12,52,58,.05); backdrop-filter: blur(12px); }
.nav-shell { display: flex; flex-wrap: wrap; align-items: center; width: 100%; max-width: 1240px; height: 100%; margin: 0 auto; padding: 0 18px; }
.navbar-brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; margin: 0; padding: 0; color: var(--ink); font-size: .95rem; font-weight: 600; letter-spacing: -.02em; }
.navbar-brand:hover, .footer-brand:hover { color: var(--ink); }
.navbar-brand img, .footer-brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.navbar-brand strong, .footer-brand strong { color: var(--brand); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-phone { align-items: center; gap: 8px; color: var(--ink); font-size: .84rem; font-weight: 700; }
.nav-phone i { color: var(--brand); }
.navbar-toggler { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 8px; border: 0; border-radius: 10px; background: var(--brand-light); }
.navbar-toggler span { display: block; width: 100%; height: 2px; border-radius: 5px; background: var(--brand); }
.navbar-collapse { position: absolute; top: 75px; right: 0; left: 0; padding: 16px 20px 22px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.navbar-nav .nav-link { padding: 11px 4px !important; color: var(--ink) !important; font-size: .88rem; font-weight: 700; }
.navbar-nav .nav-link.active { color: var(--brand) !important; }
.mobile-menu-cta { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; padding: 12px 18px; border-radius: 10px; color: var(--white); background: var(--brand); font-weight: 800; }
.mobile-menu-cta:hover { color: var(--white); background: var(--brand-dark); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-width: 1px; border-radius: 10px; font-family: var(--sans); font-size: .84rem; font-weight: 800; letter-spacing: -.01em; }
.btn-lg { min-height: 54px; padding: 14px 20px; font-size: .92rem; }
.btn-primary { border-color: var(--brand); background: var(--brand); box-shadow: 0 9px 24px rgba(11,82,91,.16); }
.btn-primary:hover, .btn-primary:focus, .btn-primary:active { border-color: var(--brand-dark) !important; color: var(--white); background: var(--brand-dark) !important; transform: translateY(-1px); }
.btn-secondary { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); background: var(--white); transform: translateY(-1px); }
.btn-nav { min-height: 40px; padding: 9px 15px; color: white !important; }

.hero { position: relative; min-height: calc(100vh - 76px); padding: 64px 0 84px; overflow: hidden; background: linear-gradient(160deg, #f7faf9 0%, #eef7f5 100%); scroll-margin-top: 76px; }
.hero::after { content: ""; position: absolute; right: -180px; bottom: -350px; width: 570px; height: 570px; border: 1px solid rgba(8,169,216,.14); border-radius: 50%; box-shadow: inset 0 0 0 74px rgba(255,255,255,.18), inset 0 0 0 75px rgba(8,169,216,.09); }
.hero-accent { position: absolute; top: 12%; right: -55px; width: 180px; height: 55%; border: 1px solid rgba(11,82,91,.12); border-radius: 100% 0 0 100%; border-right: 0; }
.hero-grid { position: relative; z-index: 1; display: grid; gap: 54px; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 26px; }
.hero-lead { max-width: 650px; margin-bottom: 30px; color: var(--ink-soft); font-size: 1.04rem; line-height: 1.75; }
.hero-buttons { display: grid; gap: 10px; margin-bottom: 34px; }
.hero-facts { display: grid; gap: 18px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-facts > div { display: flex; align-items: flex-start; gap: 13px; color: var(--ink-soft); font-size: .78rem; line-height: 1.45; }
.hero-facts i { width: 20px; padding-top: 4px; color: var(--accent); font-size: 1.1rem; text-align: center; }
.hero-facts span { display: flex; flex-direction: column; }
.hero-facts strong { color: var(--ink); font-size: .86rem; }
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 16px;
  align-items: center;
  min-height: 0;
  padding-bottom: 64px;
}
.doctor-photo { position: relative; z-index: 1; overflow: visible; }
.doctor-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border: 8px solid var(--white);
  border-radius: inherit;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.doctor-photo-primary { grid-column: 1 / -1; justify-self: end; width: 72%; max-width: 300px; aspect-ratio: 1; border-radius: 50% 50% 12px 50%; }
.doctor-photo-secondary { width: 100%; max-width: 220px; aspect-ratio: 1; border-radius: 12px 50% 50% 50%; }
.doctor-label {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 8px;
  width: calc(100% - 16px);
  max-width: none;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255,255,255,.97);
  box-shadow: 0 8px 20px rgba(12,52,58,.12);
  font-size: .64rem;
  line-height: 1.35;
  transform: translateY(100%);
}
.doctor-label strong, .doctor-label span { display: block; }
.doctor-label span { color: var(--brand); }
.experience-note { position: relative; z-index: 3; width: 100%; padding: 18px 12px; border-radius: var(--radius-sm); color: white; background: var(--accent); box-shadow: 0 12px 30px rgba(231,123,76,.22); line-height: 1.25; transform: rotate(-2deg); }
.experience-note span, .experience-note strong { display: block; }
.experience-note span { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; }
.experience-note strong { margin-top: 3px; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }

.care-section { background: var(--white); }
.care-layout { display: grid; gap: 14px; }
.care-feature { position: relative; padding: 30px 24px; overflow: hidden; border-radius: var(--radius); color: var(--white); background: var(--brand); }
.care-feature::after { content: ""; position: absolute; right: -90px; bottom: -130px; width: 230px; height: 230px; border: 42px solid rgba(255,255,255,.06); border-radius: 50%; }
.care-feature .icon-box { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 48px; border-radius: 50%; color: var(--brand); background: var(--white); font-size: 1.25rem; }
.care-number { position: absolute; top: 25px; right: 25px; color: rgba(255,255,255,.35); font-family: var(--serif); font-size: 2.1rem; }
.care-feature h3 { color: white; font-size: 1.5rem; }
.care-feature > p:last-child { position: relative; z-index: 1; margin: 0; color: #cce2e0; }
.care-list { border-top: 1px solid var(--line); }
.care-list article { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.care-list article p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.icon-line { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: var(--brand); background: var(--brand-light); font-size: 1.1rem; }

.hours-section { position: relative; overflow: hidden; color: #cee0df; background: var(--brand-dark); }
.hours-section::before { content: ""; position: absolute; top: -190px; left: -140px; width: 420px; height: 420px; border: 62px solid rgba(8,169,216,.08); border-radius: 50%; }
.hours-grid { position: relative; display: grid; gap: 36px; }
.hours-intro h2 { color: white; }
.hours-intro > p { max-width: 480px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; }
.light-link { color: white; }
.light-link:hover { color: #b9d8d6; }
.hours-card { padding: 10px 20px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.07); box-shadow: 0 20px 60px rgba(0,0,0,.14); backdrop-filter: blur(8px); }
.hours-row { display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hours-row:last-child { border-bottom: 0; }
.hours-row strong, .hours-row time { color: white; font-size: .9rem; }
.hours-row time { font-weight: 800; }
.hours-row small { grid-column: 1 / -1; color: #9fc0be; font-size: .69rem; }
.hours-row.special { margin: 0 -10px; padding: 18px 10px; border-radius: 8px; background: rgba(8,169,216,.12); }
.hours-row.special small { color: #bfe8f3; }

.procedures-section { background: var(--paper); }
.procedure-groups { display: grid; gap: 14px; }
.procedure-groups article { padding: 27px 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.procedure-groups article.procedure-main { border-color: transparent; background: var(--brand-light); }
.procedure-icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 30px; border-radius: 50%; color: var(--brand); background: var(--paper); font-size: 1.1rem; }
.procedure-groups h3 { min-height: 2.7em; margin-bottom: 18px; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin-bottom: 11px; padding-left: 25px; color: var(--ink-soft); font-size: .87rem; }
.check-list li::before { content: "\f00c"; position: absolute; top: 1px; left: 0; color: var(--accent); font-family: FontAwesome; font-size: .78rem; }

.contact-section { padding-bottom: 88px; background: var(--white); }
.contact-grid { display: grid; gap: 38px; }
.contact-lead { max-width: 530px; color: var(--ink-soft); font-size: 1rem; }
.contact-details { display: grid; gap: 20px; margin: 28px 0; font-style: normal; }
.contact-details > div, .contact-details > a { display: flex; align-items: flex-start; gap: 15px; color: var(--ink-soft); }
.contact-details i { display: grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%; color: var(--brand); background: var(--brand-light); }
.contact-details span { display: flex; flex-direction: column; }
.contact-details strong { color: var(--ink); }
.contact-details small { color: var(--ink-soft); }
.contact-buttons { display: grid; gap: 10px; }
.contact-buttons .btn { min-height: 50px; padding: 12px 18px; }
.map-wrap { min-height: 390px; overflow: hidden; border-radius: var(--radius); background: var(--brand-light); box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 390px; border: 0; filter: saturate(.68) contrast(.95); }

.site-footer { padding: 34px 0 105px; color: #9db6b4; background: #062e33; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.footer-brand { color: white; }
.footer-brand:hover { color: white; }
.footer-inner p { width: 100%; margin: 0; font-size: .78rem; }
.facebook-link { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; color: white; background: rgba(255,255,255,.1); }
.facebook-link:hover { color: white; background: var(--cyan); }
.mobile-action-bar { position: fixed; z-index: 1035; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1.25fr 1fr; min-height: 68px; padding-bottom: env(safe-area-inset-bottom); border-top: 1px solid var(--line); background: var(--white); box-shadow: 0 -8px 25px rgba(12,52,58,.1); }
.mobile-action-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--ink); font-size: .65rem; font-weight: 800; }
.mobile-action-bar i { color: var(--brand); font-size: 1.12rem; }
.mobile-action-bar .primary-action { margin: -10px 4px 6px; border-radius: 12px; color: white; background: var(--brand); box-shadow: 0 8px 22px rgba(11,82,91,.25); }
.mobile-action-bar .primary-action i { color: white; }

@media (min-width: 576px) {
  .hero-buttons, .contact-buttons { display: flex; flex-wrap: wrap; }
  .hero-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-visual { width: 100%; max-width: 600px; margin-right: auto; margin-left: auto; }
  .care-layout { grid-template-columns: .88fr 1.12fr; align-items: stretch; }
  .care-feature { padding: 34px; }
  .procedure-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .procedure-main { grid-column: 1 / -1; }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .site-container { padding-right: 28px; padding-left: 28px; }
  .section { padding: 108px 0; }
  .section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; margin-bottom: 54px; }
  .section-heading h2 { margin-bottom: 0; }
  .section-heading > p { margin: 0; }
  .hero { padding: 86px 0 100px; }
  .care-list article { grid-template-columns: 54px 1fr; gap: 20px; padding: 28px 4px; }
  .hours-grid { grid-template-columns: .78fr 1.22fr; gap: 75px; align-items: center; }
  .procedure-groups { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .procedure-main { grid-column: auto; }
  .contact-grid { grid-template-columns: .9fr 1.1fr; align-items: stretch; }
  .contact-copy { padding: 22px 0; }
  .site-footer { padding-bottom: 34px; }
  .footer-inner p { width: auto; margin-left: auto; }
  .mobile-action-bar { display: none; }
}

@media (min-width: 992px) {
  .site-nav { height: 84px; }
  .nav-shell { flex-wrap: nowrap; padding: 0 28px; }
  .navbar-brand img { width: 44px; height: 44px; }
  .navbar-collapse { position: static; display: flex !important; flex-basis: auto; align-items: center; order: 1; margin-left: auto; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .navbar-nav { flex-direction: row; align-items: center; gap: 16px; }
  .navbar-nav .nav-link { position: relative; padding: 31px 2px 27px !important; font-size: .76rem; }
  .navbar-nav .nav-link::after { content: ""; position: absolute; right: 0; bottom: 22px; left: 0; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform .2s ease; }
  .navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
  .nav-actions { order: 2; margin-left: 24px; }
  .mobile-menu-cta { display: none; }
  .hero { min-height: calc(100vh - 84px); padding-top: 76px; }
  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 80px; min-height: 650px; }
  .hero-visual { display: block; max-width: none; min-height: 510px; margin: 0; padding-bottom: 0; }
  .doctor-photo { position: absolute; }
  .doctor-photo-primary { top: 0; right: 0; width: 77%; max-width: 390px; }
  .doctor-photo-secondary { bottom: 6px; left: 0; width: 55%; max-width: 270px; }
  .doctor-label {
    bottom: auto;
    left: auto;
    width: max-content;
    max-width: calc(100% + 34px);
    padding: 10px 15px;
    border: 2px solid rgba(255,255,255,.82);
    color: white;
    background: rgba(7,60,67,.96);
    box-shadow: 0 9px 24px rgba(7,60,67,.2);
    font-size: .68rem;
    backdrop-filter: blur(8px);
    transform: none;
  }
  .doctor-label span { color: #b9d8d6; }
  .doctor-photo-primary .doctor-label { right: -14px; bottom: 54px; }
  .doctor-photo-secondary .doctor-label { bottom: 38px; left: -10px; }
  .experience-note { position: absolute; right: 2%; bottom: 8px; width: 38%; padding: 23px 18px; }
  .hero-lead { max-width: 600px; font-size: 1.1rem; }
  .care-layout { grid-template-columns: .75fr 1.25fr; gap: 50px; }
  .care-feature { padding: 42px; }
  .care-feature .icon-box { margin-bottom: 95px; }
  .care-list article { grid-template-columns: 60px .75fr 1fr; align-items: start; }
  .care-list article h3 { margin: 10px 0 0; }
  .care-list article p { grid-column: 3; }
  .procedure-groups article { padding: 34px; }
}

@media (min-width: 1200px) {
  .navbar-nav { gap: 25px; }
  .nav-phone { margin-left: 5px; }
  .hero-grid { grid-template-columns: 1.12fr .88fr; }
}

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