:root {
  --navy: #072a57;
  --navy-2: #0b3c72;
  --teal: #0a8b91;
  --teal-dark: #08747a;
  --charcoal: #343d45;
  --ink: #17202a;
  --muted: #627180;
  --line: #dce4e9;
  --surface: #f6f9fb;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(8, 42, 87, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.container { width: min(1160px, calc(100% - 36px)); margin-inline: auto; }
.narrow { width: min(850px, calc(100% - 36px)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 10px; z-index: 1000;
  padding: 10px 14px; background: var(--navy); color: white; border-radius: 8px;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220,228,233,.9);
}
.header-row { min-height: 78px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 250px; }
.brand img { width: 54px; height: 54px; object-fit: cover; object-position: center; border-radius: 10px; }
.brand-text strong { display: block; color: var(--navy); letter-spacing: .06em; font-size: 16px; }
.brand-text span { display: block; font-size: 11px; color: var(--charcoal); letter-spacing: .19em; text-transform: uppercase; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a, .language-select {
  text-decoration: none; font-weight: 650; font-size: 14px; color: #263745;
  padding: 12px 11px; border-radius: 10px; border: 0; background: transparent;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--navy); background: #f1f6f8; }
.nav .referral-link { background: var(--navy); color: white; padding-inline: 15px; }
.nav .referral-link:hover { background: var(--navy-2); color: white; }
.language-select { border: 1px solid var(--line); min-height: 44px; }
.menu-button { display: none; margin-left: auto; border: 1px solid var(--line); background: white; color: var(--navy); border-radius: 10px; padding: 10px 12px; min-height: 44px; font-weight: 700; }

.hero { padding: 76px 0 66px; background: linear-gradient(145deg, #fff 55%, #f0f8f8 100%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 58px; align-items: center; }
.eyebrow { color: var(--teal-dark); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; margin-bottom: 12px; }
h1, h2, h3 { color: var(--navy); line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(40px, 6vw, 68px); letter-spacing: -.04em; margin-bottom: 20px; }
h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -.03em; margin-bottom: 16px; }
h3 { font-size: 20px; margin-bottom: 8px; }
.lead { font-size: 19px; color: #526271; max-width: 720px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 18px; border-radius: 11px; font-weight: 750; text-decoration: none; border: 1px solid transparent; }
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--navy-2); }
.btn-secondary { border-color: #b7c7d2; color: var(--navy); background: white; }
.btn-secondary:hover { border-color: var(--teal); }
.hero-card { background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); padding: 26px; }
.hero-logo { width: min(100%, 440px); margin: 0 auto; }
.quick-info { display: grid; gap: 11px; margin-top: 22px; border-top: 1px solid var(--line); padding-top: 20px; }
.quick-info div { display: flex; justify-content: space-between; gap: 18px; font-size: 14px; }
.quick-info span { color: var(--muted); }
.quick-info strong { color: var(--navy); text-align: right; }

.section { padding: 72px 0; }
.section.alt { background: var(--surface); }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading p { color: var(--muted); font-size: 17px; margin-bottom: 0; }

.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-tile, .condition-card, .info-card {
  border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); padding: 24px;
}
.service-tile { min-height: 238px; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.service-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #a8cfd2; }
.icon-box { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: #eaf6f6; color: var(--teal-dark); font-weight: 900; margin-bottom: 18px; }
.service-tile p, .condition-card p, .info-card p { color: var(--muted); margin-top: 0; }
.service-tile a { margin-top: auto; color: var(--teal-dark); font-weight: 800; text-decoration: none; }

.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }
.stat { padding: 26px; border-left: 4px solid var(--teal); background: white; border-radius: 0 14px 14px 0; }
.stat strong { display: block; font-size: 28px; color: var(--navy); }
.stat span { color: var(--muted); }

.page-hero { padding: 62px 0 44px; background: linear-gradient(180deg,#f5f9fb,#fff); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(38px,5vw,56px); }
.page-hero .lead { margin-bottom: 0; }

.service-section { padding: 52px 0 0; }
.service-section:last-child { padding-bottom: 72px; }
.service-section h2 { font-size: 30px; }
.condition-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.condition-card { min-height: 185px; }
.condition-card h3 { color: var(--navy); }

.notice { border: 1px solid #b9d7d9; background: #eff8f8; border-radius: 16px; padding: 22px; }
.notice strong { color: var(--navy); }
.notice.warning { background: #fff8ea; border-color: #ead7aa; }
.notice + .notice { margin-top: 16px; }

.detail-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.detail-list li { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.detail-list strong { color: var(--navy); }

.affiliation-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 24px; }
.affiliation { border: 1px solid var(--line); border-radius: 14px; padding: 18px; font-weight: 700; color: var(--navy); background: white; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card { border: 1px solid var(--line); border-radius: 18px; padding: 26px; background: white; }
.contact-card h2 { font-size: 28px; }
.contact-card a { color: var(--teal-dark); font-weight: 750; }

.site-footer { background: #061f3e; color: #d9e3eb; padding: 44px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 36px; }
.site-footer h3 { color: white; font-size: 17px; }
.site-footer a { color: #d9e3eb; text-decoration: none; }
.site-footer a:hover { color: white; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 7px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); margin-top: 28px; padding-top: 18px; font-size: 13px; color: #adbdca; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (max-width: 960px) {
  .nav { position: absolute; left: 18px; right: 18px; top: 84px; display: none; padding: 12px; background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav.is-open { display: flex; }
  .nav a, .language-select { width: 100%; }
  .menu-button { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .tile-grid, .condition-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 28px, 1160px); }
  .brand { min-width: 0; }
  .brand-text strong { font-size: 14px; }
  .brand-text span { font-size: 9px; }
  .hero, .section { padding: 54px 0; }
  .tile-grid, .condition-grid, .stats, .affiliation-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .detail-list li { grid-template-columns: 1fr; gap: 2px; }
  .hero-actions .btn { width: 100%; }
}

/* Patient feedback */
.patient-feedback{padding-top:0;}
.patient-feedback .contact-card{max-width:900px;margin:0 auto;}
.footer-feedback{margin-top:28px;padding:18px 0;border-top:1px solid var(--border, #dfe6ec);font-size:.95rem;line-height:1.6;color:var(--muted, #607080);}

/* 2026-08-25 accessibility-focused homepage refresh */
body { font-size: 18px; color: #111827; }
body.home-simple { background: #fff; }
.home-simple .container { width: min(1440px, calc(100% - 64px)); }
.home-simple .site-header { background: #fff; border-bottom: 1px solid #d7e0e5; backdrop-filter: none; }
.home-simple .header-row { min-height: 112px; gap: 28px; }
.home-simple .brand-logo-only { min-width: 0; width: 460px; max-width: 38vw; }
.home-simple .brand-logo-only img { width: 100%; height: 86px; object-fit: contain; object-position: left center; border-radius: 0; }
.home-simple .nav { gap: 18px; }
.home-simple .nav a,
.home-simple .language-select { font-size: 18px; font-weight: 700; padding: 14px 10px; border-radius: 0; color: #0b2146; }
.home-simple .nav a:hover,
.home-simple .nav a[aria-current="page"] { background: transparent; color: #067f86; border-bottom: 3px solid #067f86; }
.home-simple .language-select { border: 1px solid #aebbc4; border-radius: 8px; min-height: 50px; }
.home-simple .menu-button { font-size: 18px; min-height: 50px; padding: 12px 18px; }

.home-hero-simple { padding: 56px 0 42px; }
.home-hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.home-hero-split > div:first-child { padding-right: 28px; }
.home-simple h1 { font-size: clamp(44px, 5.4vw, 76px); line-height: 1.06; letter-spacing: -.035em; margin-bottom: 24px; color: #071f4a; }
.home-simple .lead { font-size: clamp(21px, 2vw, 27px); line-height: 1.55; color: #202933; max-width: 820px; margin-bottom: 30px; }
.home-simple .btn { min-height: 58px; padding: 14px 28px; font-size: 20px; border-radius: 7px; }
.home-simple .btn-primary { background: #067f86; }
.home-simple .btn-primary:hover { background: #056a70; }
.home-simple .btn-secondary { border: 2px solid #087b82; color: #066b72; }
.doctor-summary { border-left: 1px solid #8091a0; padding: 6px 0 6px 48px; }
.doctor-summary .eyebrow { font-size: 20px; letter-spacing: .06em; margin-bottom: 10px; }
.doctor-summary h2 { font-size: clamp(36px, 4vw, 58px); margin-bottom: 14px; color: #0a214c; }
.doctor-summary h3 { font-size: clamp(24px, 2.2vw, 32px); color: #087b82; margin-bottom: 16px; }
.doctor-summary p { font-size: 21px; line-height: 1.65; margin: 0; color: #1e2832; }

.home-services-simple { padding: 20px 0 26px; }
.center-title { text-align: center; font-size: 32px; margin-bottom: 18px; }
.simple-service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.simple-service-tile { min-height: 112px; border: 2px solid #168d93; border-radius: 6px; display: flex; align-items: center; justify-content: center; padding: 18px 16px; text-align: center; text-decoration: none; color: #071f4a; font-size: 22px; line-height: 1.25; font-weight: 800; background: #fff; }
.simple-service-tile:hover, .simple-service-tile:focus { background: #f4fbfb; outline: 3px solid rgba(6,127,134,.18); outline-offset: 2px; }

.affiliation-strip { padding: 14px 0 10px; }
.affiliation-strip .container { border: 1px solid #c8d7dd; border-radius: 7px; background: #f7fbfc; padding: 18px 24px 20px; }
.affiliation-strip h2 { text-align: center; font-size: 24px; color: #087b82; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }
.affiliation-row { display: grid; grid-template-columns: repeat(5,1fr); }
.affiliation-row div { padding: 8px 22px; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 18px; line-height: 1.35; font-weight: 750; color: #0b2146; border-right: 1px solid #9bacb7; }
.affiliation-row div:last-child { border-right: 0; }

.referral-home-notice { padding: 0 0 14px; }
.referral-home-grid { border: 2px solid #158b92; border-radius: 7px; display: grid; grid-template-columns: 300px 1fr; align-items: center; padding: 12px 22px; }
.referral-home-grid strong { color: #087b82; text-transform: uppercase; letter-spacing: .03em; font-size: 22px; text-align: center; padding-right: 24px; border-right: 1px solid #7e929f; }
.referral-home-grid p { font-size: 18px; line-height: 1.35; margin: 0; padding-left: 28px; color: #15202b; }

.home-simple .simple-footer { padding: 16px 0 20px; background: #062550; }
.footer-contact-grid { display: grid; grid-template-columns: 1.05fr 1.25fr .9fr 1.25fr 1.15fr 1.15fr; gap: 0; }
.footer-contact-grid > div { min-width: 0; padding: 0 22px; border-right: 1px solid rgba(255,255,255,.48); }
.footer-contact-grid > div:first-child { padding-left: 0; }
.footer-contact-grid > div:last-child { border-right: 0; padding-right: 0; }
.footer-contact-grid strong, .footer-contact-grid span { display: block; }
.footer-contact-grid strong { font-size: 17px; color: #fff; margin-bottom: 2px; }
.footer-contact-grid span, .footer-contact-grid a { font-size: 16px; color: #fff; line-height: 1.35; overflow-wrap: anywhere; }
.footer-feedback-simple { margin-top: 14px; border-top: 1px solid rgba(255,255,255,.28); padding-top: 12px; text-align: center; color: #fff; font-size: 17px; }
.home-simple .footer-bottom { margin-top: 10px; padding-top: 10px; font-size: 13px; }

/* Accessibility: clear focus and readable defaults site-wide */
a:focus-visible, button:focus-visible, select:focus-visible { outline: 3px solid #0b9ba2; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }

@media (max-width: 1200px) {
  .home-simple .brand-logo-only { width: 390px; max-width: 42vw; }
  .home-simple .nav { gap: 8px; }
  .home-simple .nav a, .home-simple .language-select { font-size: 16px; }
  .simple-service-grid { grid-template-columns: repeat(3,1fr); }
  .affiliation-row { grid-template-columns: repeat(3,1fr); gap: 0; }
  .affiliation-row div:nth-child(3) { border-right: 0; }
  .affiliation-row div:nth-child(n+4) { border-top: 1px solid #9bacb7; }
  .footer-contact-grid { grid-template-columns: repeat(3,1fr); row-gap: 18px; }
  .footer-contact-grid > div:nth-child(3) { border-right: 0; }
  .footer-contact-grid > div:nth-child(4) { padding-left: 0; }
}
@media (max-width: 960px) {
  .home-simple .container { width: min(100% - 36px, 1440px); }
  .home-simple .header-row { min-height: 92px; }
  .home-simple .brand-logo-only { width: 340px; max-width: 70vw; }
  .home-simple .brand-logo-only img { height: 70px; }
  .home-simple .nav { top: 96px; gap: 0; }
  .home-simple .nav a, .home-simple .language-select { font-size: 20px; min-height: 54px; }
  .home-hero-split { grid-template-columns: 1fr; gap: 34px; }
  .doctor-summary { border-left: 0; border-top: 1px solid #8091a0; padding: 28px 0 0; }
  .simple-service-grid { grid-template-columns: repeat(2,1fr); }
  .affiliation-row { grid-template-columns: 1fr 1fr; }
  .affiliation-row div { border-right: 0; border-bottom: 1px solid #9bacb7; min-height: 82px; }
  .affiliation-row div:last-child { border-bottom: 0; grid-column: 1 / -1; }
  .referral-home-grid { grid-template-columns: 1fr; }
  .referral-home-grid strong { border-right: 0; border-bottom: 1px solid #7e929f; padding: 0 0 10px; }
  .referral-home-grid p { padding: 12px 0 0; text-align: center; }
}
@media (max-width: 640px) {
  body { font-size: 18px; }
  .home-simple .container { width: min(100% - 24px, 1440px); }
  .home-simple .brand-logo-only { width: 270px; max-width: calc(100% - 80px); }
  .home-simple .brand-logo-only img { height: 62px; }
  .home-hero-simple { padding: 38px 0 30px; }
  .home-simple h1 { font-size: 40px; }
  .home-simple .lead { font-size: 21px; }
  .doctor-summary h2 { font-size: 34px; }
  .doctor-summary h3 { font-size: 24px; }
  .doctor-summary p { font-size: 19px; }
  .simple-service-grid { grid-template-columns: 1fr; gap: 12px; }
  .simple-service-tile { font-size: 22px; min-height: 88px; }
  .affiliation-row { grid-template-columns: 1fr; }
  .affiliation-row div:last-child { grid-column: auto; }
  .footer-contact-grid { grid-template-columns: 1fr; }
  .footer-contact-grid > div, .footer-contact-grid > div:nth-child(4) { padding: 12px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.3); }
  .footer-contact-grid > div:last-child { border-bottom: 0; }
  .footer-contact-grid strong { font-size: 18px; }
  .footer-contact-grid span, .footer-contact-grid a { font-size: 18px; }
}
