:root {
  --ink: #102b33;
  --ink-soft: #36545b;
  --muted: #60777d;
  --teal: #0b6662;
  --teal-dark: #074b49;
  --teal-ink: #073b3a;
  --mint: #dff2ec;
  --mint-soft: #f0f8f5;
  --sand: #f5efe4;
  --coral: #cc4e43;
  --coral-dark: #aa3b33;
  --white: #ffffff;
  --off-white: #fafcfb;
  --line: #d9e5e2;
  --line-strong: #bfd3cf;
  --shadow: 0 18px 50px rgba(16, 43, 51, 0.09);
  --shadow-soft: 0 10px 30px rgba(16, 43, 51, 0.06);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e2a91c;
  outline-offset: 3px;
}

::selection {
  background: #b8ded6;
  color: var(--teal-ink);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.emergency-strip {
  background: var(--teal-dark);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.015em;
}

.emergency-strip-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.emergency-strip a {
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(217, 229, 226, 0.88);
  background: rgba(250, 252, 251, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px 14px 14px 4px;
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(11, 102, 98, 0.18);
}

.brand-mark span {
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.06em;
}

.brand-mark i {
  position: absolute;
  top: 3px;
  right: 7px;
  color: #e7c068;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 20px;
  font-weight: 830;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.site-nav a {
  position: relative;
  padding-block: 26px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 680;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--teal);
  content: "";
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--teal);
}

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

.header-actions,
.button-row,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(11, 102, 98, 0.18);
}

.button-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 14px 28px rgba(11, 102, 98, 0.25);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--teal);
  background: var(--white);
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--teal-dark);
}

.button-alert {
  background: var(--coral);
  color: var(--white);
}

.button-alert:hover {
  background: var(--coral-dark);
}

.button-light {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.button-small {
  min-height: 41px;
  padding: 9px 15px;
  font-size: 13px;
}

.button-large {
  min-height: 56px;
  padding-inline: 28px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin-block: 4px;
  border-radius: 2px;
  background: var(--ink);
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #f2faf7 0%, #fbfcfb 56%, #f8f1e6 100%);
}

.home-hero::before {
  position: absolute;
  top: -200px;
  left: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(11, 102, 98, 0.08);
  border-radius: 50%;
  content: "";
}

.home-hero-grid {
  display: grid;
  min-height: 680px;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  padding-block: 72px 88px;
}

.eyebrow,
.card-kicker,
.step-label {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.profile-hero h1,
.emergency-hero h1 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.hero-copy h1 span {
  color: var(--teal);
}

.lead {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}

.hero-copy .button-row,
.page-hero .button-row,
.profile-hero .button-row {
  margin-top: 32px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
}

.hero-note strong {
  color: var(--ink);
}

.status-dot {
  width: 9px;
  height: 9px;
  border: 2px solid #bce2d7;
  border-radius: 50%;
  background: #248e6f;
  box-shadow: 0 0 0 4px rgba(36, 142, 111, 0.1);
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-visual > img {
  width: 100%;
  min-height: 485px;
  max-height: 555px;
  object-fit: cover;
  border-radius: 34px 34px 34px 8px;
  box-shadow: var(--shadow);
}

.hero-contact-card {
  position: absolute;
  right: -26px;
  bottom: 32px;
  display: grid;
  width: min(300px, calc(100% - 32px));
  gap: 6px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px 20px 20px 6px;
  background: rgba(7, 75, 73, 0.94);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(7, 75, 73, 0.28);
  backdrop-filter: blur(12px);
}

.hero-contact-card .card-kicker {
  margin: 0;
  color: #bfe7de;
}

.hero-contact-card strong {
  font-size: 17px;
}

.hero-contact-card a {
  margin-top: 5px;
  color: #f3d483;
  font-size: 14px;
  font-weight: 800;
}

.hero-shape {
  position: absolute;
  z-index: -1;
  top: -26px;
  right: -30px;
  width: 125px;
  height: 125px;
  border: 1px solid #c5ddd7;
  border-radius: 50%;
}

.quick-access {
  position: relative;
  z-index: 2;
  margin-top: -22px;
}

.quick-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quick-grid a {
  position: relative;
  display: grid;
  min-height: 138px;
  align-content: center;
  padding: 25px 26px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease;
}

.quick-grid a:last-child {
  border-right: 0;
}

.quick-grid a:hover {
  background: var(--mint-soft);
}

.quick-grid a > span {
  margin-bottom: 11px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.quick-grid strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}

.quick-grid small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding-block: clamp(72px, 8vw, 108px);
}

.section-soft {
  border-block: 1px solid rgba(217, 229, 226, 0.78);
  background: var(--mint-soft);
}

.section-heading {
  max-width: 690px;
  margin-bottom: 44px;
}

.section-heading h2,
.contact-panel h2,
.emergency-callout h2,
.emergency-mini h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.split-heading .section-heading {
  margin-bottom: 0;
}

.feature-grid,
.doctor-grid,
.article-grid,
.service-preview-grid,
.department-grid,
.contact-grid,
.patient-steps {
  display: grid;
  gap: 24px;
}

.two-column,
.doctor-grid,
.department-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  display: grid;
  min-height: 350px;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 34px;
  overflow: hidden;
  padding: 36px;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 8px;
}

.feature-card-teal {
  background: var(--teal);
  color: var(--white);
}

.feature-card-warm {
  background: var(--sand);
  color: var(--ink);
}

.feature-card .card-number {
  align-self: start;
  margin: 0;
  color: currentColor;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.feature-card .card-kicker {
  color: currentColor;
  opacity: 0.7;
}

.feature-card h3,
.plain-card h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.feature-card p:not(.card-number, .card-kicker) {
  margin: 16px 0 22px;
  opacity: 0.83;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 820;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.feature-card-teal .text-link {
  color: #f4da99;
}

.text-link-light {
  color: var(--white);
}

.doctor-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.doctor-avatar,
.profile-avatar {
  position: relative;
  display: grid;
  min-height: 200px;
  place-items: center;
  overflow: hidden;
  border-radius: 20px 20px 20px 6px;
  background: linear-gradient(150deg, #d5eee7, #a8d4ca);
  color: var(--teal-dark);
}

.doctor-avatar::before,
.profile-avatar::before {
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(7, 75, 73, 0.18);
  border-radius: 50%;
  content: "";
}

.doctor-avatar span,
.profile-avatar span {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.doctor-card-copy {
  min-width: 0;
  align-self: center;
}

.doctor-card .card-kicker {
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.doctor-card h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.credentials {
  margin: 7px 0 2px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.doctor-card-copy > p:not(.card-kicker, .credentials) {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.muted-link {
  color: var(--muted);
}

.content-note {
  max-width: 860px;
  margin: 26px 0 0;
  padding-left: 15px;
  border-left: 3px solid #d9b965;
  color: var(--muted);
  font-size: 13px;
}

.prominent-note {
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid #eadcaf;
  border-left: 4px solid #c7a442;
  border-radius: 10px;
  background: #fffaf0;
}

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

.service-preview-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-preview-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.service-preview-grid span,
.contact-details span,
.detail-card > span,
.contact-cards article > span,
.patient-steps article > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-preview-grid h3 {
  margin: 26px 0 3px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.service-preview-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section-gallery {
  background: #eff5f2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(220px, 280px));
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce6e3;
}

.gallery-grid .gallery-large {
  grid-row: 1 / span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-grid figcaption,
.content-image figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(7, 43, 51, 0.78);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.four-gallery {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 350px;
}

.four-gallery figure:first-child {
  grid-row: auto;
}

.emergency-callout {
  background: var(--teal-dark);
  color: var(--white);
}

.emergency-callout-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.emergency-callout .eyebrow {
  color: #bfe8de;
}

.emergency-callout h2 {
  max-width: 760px;
}

.emergency-callout p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #cfe1df;
}

.emergency-call-actions {
  display: grid;
  min-width: 245px;
  gap: 18px;
  justify-items: start;
}

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

.article-grid article {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
}

.article-grid h3,
.article-grid h2 {
  margin: 35px 0 12px;
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.article-grid p {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 14px;
}

.article-status {
  margin-top: auto;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-panel-section {
  padding-top: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-panel > div > p:not(.eyebrow) {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-details p {
  display: grid;
  gap: 3px;
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-details p:last-child {
  border: 0;
}

.contact-details a,
.contact-details strong {
  font-size: 18px;
}

.placeholder {
  color: #7b6a3d;
  font-style: normal;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, var(--mint-soft), var(--off-white) 64%, var(--sand));
}

.page-hero::after {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(11, 102, 98, 0.1);
  border-radius: 50%;
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 480px;
  align-items: center;
  padding-block: 72px;
}

.page-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.content-split .section-heading {
  margin-bottom: 30px;
}

.content-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 8px;
  box-shadow: var(--shadow);
}

.content-image img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

.principle-list {
  display: grid;
  gap: 8px;
}

.principle-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding-block: 17px;
  border-top: 1px solid var(--line);
}

.principle-list article > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}

.principle-list h3,
.principle-list p {
  margin: 0;
}

.principle-list h3 {
  font-size: 17px;
}

.principle-list p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.plain-card {
  min-height: 290px;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.plain-card h3 {
  margin-top: 42px;
}

.plain-card p {
  color: var(--muted);
}

.narrow-content {
  max-width: 840px;
}

.profile-hero {
  padding-block: 80px;
  background: linear-gradient(120deg, #eef8f5, #fbfaf7);
}

.profile-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: center;
  gap: 70px;
}

.profile-avatar {
  min-height: 390px;
  box-shadow: var(--shadow);
}

.profile-avatar span {
  font-size: 72px;
}

.profile-credentials {
  margin: 22px 0 0;
  color: var(--teal);
  font-size: 17px;
  font-weight: 800;
}

.profile-hero .lead {
  margin-top: 8px;
}

.profile-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.detail-card {
  min-height: 190px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-card h2 {
  margin: 40px 0 8px;
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.profile-copy {
  margin-top: 70px;
}

.profile-copy > h2,
.legal-content h2 {
  margin: 0 0 20px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.profile-copy > p,
.legal-content p {
  color: var(--ink-soft);
}

.review-box,
.disclaimer-box {
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid #e4d5a6;
  border-radius: var(--radius-sm);
  background: #fffaf0;
}

.review-box strong,
.disclaimer-box strong {
  color: #604d1d;
}

.review-box p,
.disclaimer-box p {
  margin: 6px 0 0;
  color: #6c6248;
  font-size: 14px;
}

.department-card {
  display: grid;
  min-height: 520px;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 32px;
  padding: 38px;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 8px;
  background: var(--sand);
}

.department-card-dark {
  background: var(--teal-dark);
  color: var(--white);
}

.department-index {
  align-self: start;
  font-size: 12px;
  font-weight: 850;
  opacity: 0.7;
}

.department-card h2 {
  margin: 30px 0 18px;
  font-size: 34px;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.department-card h3 {
  margin: 30px 0 7px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.department-card p {
  opacity: 0.78;
}

.department-card .button {
  margin-top: 20px;
}

.department-card-dark .tag {
  background: rgba(255, 255, 255, 0.12);
  color: #d7eee9;
}

.service-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-chip-list span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 750;
}

.single-card {
  max-width: 620px;
  grid-template-columns: 1fr;
}

.service-groups {
  display: grid;
  gap: 80px;
}

.service-group {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
}

.service-group-title {
  position: sticky;
  top: 120px;
  align-self: start;
}

.service-group-title > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}

.service-group-title h2 {
  margin: 16px 0 0;
  font-size: 27px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-list article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.service-list article > span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.service-list h3 {
  margin: 25px 0 8px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-section {
  background: #f2f7f5;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  align-items: start;
  gap: 28px;
}

.request-form {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.form-heading {
  margin-bottom: 34px;
}

.form-heading h2 {
  margin: 0;
  font-size: 33px;
  letter-spacing: -0.04em;
}

.form-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.field > span {
  font-size: 13px;
  font-weight: 750;
}

.field > span small {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fcfefd;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(11, 102, 98, 0.12);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: var(--coral);
}

.field > small {
  justify-self: end;
  color: var(--muted);
  font-size: 11px;
}

.field-full,
.consent,
.privacy-inline,
.form-notice {
  grid-column: 1 / -1;
}

.consent {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 13px;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-inline {
  margin: 24px 0;
  padding: 17px 19px;
  border-radius: 10px;
  background: var(--mint-soft);
  color: var(--ink-soft);
  font-size: 13px;
}

.privacy-inline p {
  margin: 4px 0 0;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.form-notice {
  display: none;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 14px;
}

.form-notice.visible {
  display: block;
}

.form-notice.success {
  border: 1px solid #b7d9cd;
  background: #eef9f5;
  color: #184e3d;
}

.form-notice.error {
  border: 1px solid #e8bbb7;
  background: #fff3f2;
  color: #71342f;
}

.form-notice a {
  font-weight: 800;
  text-decoration: underline;
}

.form-aside {
  display: grid;
  gap: 20px;
}

.aside-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.aside-card h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.aside-card p {
  color: var(--muted);
  font-size: 14px;
}

.emergency-aside {
  background: var(--coral);
  color: var(--white);
}

.emergency-aside .card-kicker,
.emergency-aside p {
  color: #ffe2df;
}

.aside-card ol {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.aside-card li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 13px;
}

.aside-card li span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 850;
}

.emergency-hero {
  background: var(--coral);
  color: var(--white);
}

.emergency-hero-inner {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 70px;
}

.emergency-hero .eyebrow {
  color: #ffe0dc;
}

.emergency-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 32px;
  color: #ffe7e4;
  font-size: 19px;
}

.emergency-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.emergency-info-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.emergency-info-grid article > span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 850;
}

.emergency-info-grid h2 {
  margin: 35px 0 10px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.emergency-info-grid p {
  color: var(--muted);
  font-size: 14px;
}

.emergency-facility-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--mint-soft);
}

.emergency-facility-note h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.contact-grid {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-cards article {
  display: grid;
  gap: 7px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.contact-cards a,
.contact-cards strong {
  font-size: 19px;
}

.contact-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.map-placeholder {
  min-height: 190px;
  align-content: end;
  border-style: dashed !important;
  background: linear-gradient(145deg, #eef5f3, #f8faf9) !important;
}

.emergency-mini {
  padding-block: 55px;
  background: #fff0ee;
}

.emergency-mini > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.emergency-mini .eyebrow {
  color: var(--coral);
}

.emergency-mini h2 {
  font-size: 34px;
}

.article-grid-large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-grid-large article {
  min-height: 330px;
}

.article-grid-large h2 {
  font-size: 27px;
}

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

.patient-steps article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.patient-steps h2 {
  margin: 35px 0 20px;
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
  font-size: 14px;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.patient-emergency-card {
  background: var(--coral) !important;
  color: var(--white);
}

.patient-emergency-card > span,
.patient-emergency-card p {
  color: #ffe4e1 !important;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--teal);
  content: "+";
  font-size: 22px;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 0 22px;
  padding-right: 42px;
  color: var(--muted);
  font-size: 14px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  margin-top: 48px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.site-footer {
  padding-top: 72px;
  background: #0c2f36;
  color: #dbe8e7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.8fr);
  gap: 55px;
  padding-bottom: 60px;
}

.brand-light .brand-mark {
  background: #e2f1ed;
  color: var(--teal-dark);
  box-shadow: none;
}

.brand-light .brand-copy small {
  color: #8bc7ba;
}

.footer-brand > p {
  max-width: 300px;
  margin: 22px 0 16px;
  color: #9fbbbb;
  font-size: 14px;
}

.footer-phone {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.footer-grid h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) p {
  margin: 0;
  color: #9fbbbb;
  font-size: 13px;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--white);
}

.site-footer .placeholder {
  color: #d8bd75;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8daaaa;
  font-size: 12px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.mobile-actions {
  display: none;
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 20px;
  }

  .site-nav {
    gap: 17px;
  }

  .header-actions .button-ghost {
    display: none;
  }

  .home-hero-grid {
    min-height: 630px;
    gap: 45px;
  }

  .doctor-card {
    grid-template-columns: 120px 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 114px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 26px 24px 120px;
    background: var(--off-white);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .site-nav a::after {
    display: none;
  }

  .home-hero-grid,
  .content-split,
  .profile-grid,
  .form-layout,
  .contact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    padding-block: 65px 90px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    max-width: 720px;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-grid a:nth-child(2) {
    border-right: 0;
  }

  .quick-grid a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .doctor-grid,
  .service-preview-grid,
  .article-grid,
  .patient-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doctor-card {
    grid-template-columns: 130px 1fr;
  }

  .single-card {
    grid-template-columns: 1fr;
  }

  .four-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 260px);
  }

  .emergency-callout-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-split.reverse-mobile > .content-image {
    order: 2;
  }

  .profile-grid {
    gap: 45px;
  }

  .profile-avatar {
    max-width: 360px;
  }

  .profile-details-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-group {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-group-title {
    position: static;
  }

  .form-aside {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-layout {
    gap: 15px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .emergency-strip-inner {
    min-height: 40px;
    gap: 12px;
    font-size: 11px;
  }

  .emergency-strip-inner span {
    max-width: 210px;
    line-height: 1.25;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    border-radius: 12px 12px 12px 4px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .site-nav {
    top: 110px;
  }

  .home-hero-grid {
    min-height: 0;
    gap: 52px;
    padding-block: 52px 72px;
  }

  .hero-copy h1,
  .page-hero h1,
  .profile-hero h1,
  .emergency-hero h1 {
    font-size: clamp(40px, 13vw, 54px);
    line-height: 1.02;
  }

  .lead {
    font-size: 17px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-note {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .hero-note span:last-child {
    grid-column: 2;
  }

  .hero-visual > img {
    min-height: 360px;
  }

  .hero-contact-card {
    right: 12px;
    bottom: -24px;
  }

  .quick-access {
    margin-top: 0;
    padding-top: 14px;
    background: var(--off-white);
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid a {
    min-height: 105px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-grid a:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .contact-panel h2,
  .emergency-callout h2,
  .emergency-mini h2 {
    font-size: 34px;
  }

  .split-heading,
  .emergency-mini > .container,
  .emergency-facility-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .two-column,
  .doctor-grid,
  .service-preview-grid,
  .article-grid,
  .patient-steps,
  .department-grid,
  .emergency-info-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 320px;
    gap: 20px;
    padding: 26px;
  }

  .doctor-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .doctor-avatar {
    min-height: 175px;
  }

  .service-preview-grid {
    gap: 12px;
  }

  .gallery-grid,
  .four-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 255px);
  }

  .gallery-grid .gallery-large,
  .four-gallery figure:first-child {
    grid-row: auto;
  }

  .four-gallery {
    grid-template-rows: repeat(4, 245px);
  }

  .emergency-callout-inner {
    gap: 32px;
  }

  .contact-panel {
    padding: 28px;
  }

  .page-hero-inner {
    min-height: 440px;
    padding-block: 58px;
  }

  .content-image img {
    min-height: 350px;
  }

  .plain-card {
    min-height: 260px;
    padding: 26px;
  }

  .profile-hero {
    padding-block: 58px;
  }

  .profile-avatar {
    min-height: 310px;
  }

  .profile-details-grid {
    grid-template-columns: 1fr;
  }

  .department-card {
    min-height: 470px;
    gap: 18px;
    padding: 27px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .form-aside {
    grid-template-columns: 1fr;
  }

  .request-form {
    border-radius: var(--radius);
  }

  .form-submit {
    width: 100%;
  }

  .emergency-hero-inner {
    min-height: 560px;
  }

  .article-grid-large article {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding-block: 20px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px max(9px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(9px, env(safe-area-inset-left));
    border-top: 1px solid rgba(217, 229, 226, 0.9);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 30px rgba(16, 43, 51, 0.09);
    backdrop-filter: blur(16px);
  }

  .mobile-actions a {
    display: grid;
    min-height: 52px;
    place-content: center;
    border-radius: 10px;
    text-align: center;
  }

  .mobile-actions a:first-child {
    color: var(--teal-dark);
  }

  .mobile-actions a:last-child {
    background: var(--teal);
    color: var(--white);
  }

  .mobile-actions span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-actions strong {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .emergency-strip,
  .site-header,
  .mobile-actions,
  .button,
  .site-footer {
    display: none !important;
  }

  body {
    background: var(--white);
    color: #000;
  }

  .section,
  .page-hero-inner {
    padding-block: 30px;
  }
}
