:root {
  --ink: #1f2b24;
  --muted: #66736a;
  --line: #eadfbd;
  --paper: #fff8e5;
  --white: #ffffff;
  --mint: #f1f8ed;
  --mint-strong: #e0f0dc;
  --teal: #007c78;
  --teal-dark: #064f55;
  --amber: #d59a22;
  --peach: #fff1c8;
  --rose: #fae9e2;
  --shadow: 0 18px 50px rgba(89, 71, 28, 0.13);
  --soft-shadow: 0 10px 26px rgba(89, 71, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7dc 0, #fffdf5 42%, #f4fbf0 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.56;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(234, 223, 189, 0.9);
  background: rgba(255, 248, 229, 0.94);
  backdrop-filter: blur(18px);
}

.brand,
.header-right,
.site-nav,
.language-switch,
.hero-actions,
.tag-list {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 260px;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #35a79d);
  box-shadow: 0 8px 18px rgba(0, 124, 120, 0.2);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.header-right {
  gap: 14px;
}

.site-nav {
  gap: 18px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 750;
}

.site-nav a {
  padding: 8px 0;
  text-decoration: none;
}

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

.language-switch {
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.language-switch a {
  min-width: 38px;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.language-switch a.is-active {
  color: var(--white);
  background: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--peach);
}

.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(87, 61, 15, 0.76), rgba(128, 88, 20, 0.42) 52%, rgba(255, 242, 204, 0.08)),
    linear-gradient(0deg, rgba(44, 67, 51, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(255, 236, 173, 0.34), transparent 30%);
}

.hero-content {
  position: relative;
  max-width: 860px;
  padding: 0 clamp(22px, 6vw, 76px) 82px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin: 0 0 13px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #7b5713;
  background: rgba(255, 241, 200, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 4.85rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 3.05rem;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
}

.hero-actions,
.tag-list {
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 28px;
}

.tag-list span {
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--soft-shadow);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #18a69d);
}

.button.secondary {
  color: var(--teal-dark);
  border-color: rgba(217, 232, 227, 0.95);
  background: var(--white);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: #fff0c8;
}

.quick-facts article,
.doctor-card,
.service-grid article,
.specialty-grid article,
.topic-grid article,
.service-tools article,
.review-layout article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.quick-facts article {
  padding: 22px 24px;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts span,
.section-heading p,
.lead-copy,
.doctor-card span,
.topic-grid p,
.review-layout p,
.service-grid p,
.specialty-grid p,
.service-tools p,
.microcopy,
.accordion div,
.contact-section p {
  color: var(--muted);
}

.doctor-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  max-width: 440px;
  margin-top: 26px;
  padding: 14px;
}

.doctor-card img {
  display: block;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  object-fit: cover;
  background: var(--mint);
}

.doctor-card strong,
.doctor-card span {
  display: block;
}

.doctor-card strong {
  font-size: 1.04rem;
}

.section {
  padding: clamp(72px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading p,
.lead-copy,
.contact-section p {
  font-size: 1.05rem;
}

.intro-panel,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.services,
.patient-service {
  background: linear-gradient(180deg, #fffef9, #f7fbf2);
}

.service-grid,
.specialty-grid,
.topic-grid,
.review-layout,
.service-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.service-grid article,
.specialty-grid article,
.topic-grid article,
.review-layout article,
.service-tools article {
  padding: 24px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-grid article:hover,
.specialty-grid article:hover,
.topic-grid article:hover,
.review-layout article:hover,
.service-tools article:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 124, 120, 0.24);
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 17px;
  color: var(--teal-dark);
  background: linear-gradient(135deg, var(--mint-strong), var(--peach));
  font-weight: 900;
}

.patient-path,
.topic-section,
.review-section,
.faq {
  background: linear-gradient(180deg, #fff4cf, #f1f8ed);
}

.rating-score {
  display: inline-grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #35a79d);
  font-size: 1.55rem;
  font-weight: 900;
}

.rating-card a,
.maps-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal-dark);
  font-weight: 850;
}

.review-list {
  padding-left: 20px;
  color: var(--muted);
}

.review-list li + li {
  margin-top: 10px;
}

.maps-card iframe {
  width: 100%;
  min-height: 230px;
  border: 0;
  border-radius: 18px;
  background: var(--mint);
}

.notice {
  margin-top: 28px;
  padding: 18px;
  border-left: 5px solid var(--amber);
  border-radius: 18px;
  background: var(--rose);
  color: var(--ink);
}

.tag-list span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  color: var(--teal-dark);
  background: var(--mint);
}

.check-list {
  padding-left: 20px;
}

.check-list li + li {
  margin-top: 8px;
}

.hours {
  display: grid;
  gap: 8px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.hours span {
  color: var(--muted);
}

.accordion {
  display: grid;
  gap: 10px;
  max-width: 1020px;
}

.accordion button {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.accordion div {
  display: none;
  padding: 0 20px 18px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: var(--white);
}

.accordion button.is-open {
  border-radius: 18px 18px 0 0;
}

.accordion button.is-open + div {
  display: block;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.contact-card a {
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--teal-dark);
  background: linear-gradient(135deg, var(--mint-strong), #f8fff9);
  font-weight: 850;
  text-decoration: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(135deg, var(--teal-dark), #0b6c70);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .quick-facts,
  .intro-panel,
  .contact-section,
  .service-grid,
  .topic-grid,
  .review-layout,
  .service-tools,
  .specialty-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 73px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding-bottom: 58px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }


  .hours div {
    display: grid;
  }
}
