:root {
  --ink: #14221f;
  --muted: #5f6d68;
  --paper: #f3f1ea;
  --sand: #e7ece6;
  --brand: #0f766e;
  --deep: #0f3d36;
  --line: rgba(20, 34, 31, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.6 Manrope, sans-serif;
}
a { color: inherit; }

.concept-note {
  padding: 0.45rem 1rem;
  color: #f6f1e8;
  background: var(--deep);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1.25rem, 5vw, 5rem);
  background: rgba(246, 241, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  line-height: 1.05;
  text-decoration: none;
}
.brand small {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-mark {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.7rem;
}

nav { display: flex; align-items: center; gap: 1.6rem; }
nav > a:not(.button) {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  color: white;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { background: #7c2d12; transform: translateY(-2px); }
.button-small { min-height: 2.65rem; padding: 0.55rem 1rem; font-size: 0.88rem; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: 78vh;
  overflow: hidden;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6vw, 5rem);
}
.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: Newsreader, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
h1 { max-width: 14ch; font-size: clamp(3.2rem, 6vw, 6.4rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.hero-text {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.text-link {
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}
.rating {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.rating strong { color: var(--ink); font-size: 1.35rem; }
.stars { color: #b45309; letter-spacing: 0.08em; }

.hero-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--sand);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
.hero-image p {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.35rem 0.65rem;
  color: white;
  background: rgba(28, 42, 58, 0.78);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clinic-photo {
  position: relative;
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  background: var(--sand);
}
.clinic-photo img {
  display: block;
  width: 100%;
  min-height: 520px;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
}
.clinic-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.5rem 0.8rem;
  color: white;
  background: rgba(28, 42, 58, 0.82);
  border-radius: 0.6rem;
  font-size: 0.72rem;
}

.hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 6vw, 6rem);
  color: #f6f1e8;
  background: var(--deep);
}
.hours .eyebrow { color: #b7d4c8; }
.hours h2 { max-width: 11ch; color: #f6f1e8; }
.hours dl { margin: 0; }
.hours dl > div {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(246, 241, 232, 0.16);
}
.hours dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ec8b8;
}
.hours dd {
  margin: 0;
  font-family: Newsreader, serif;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}
.hours-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #c5c0b6;
  font-size: 0.85rem;
}

.care { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 6rem); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(14rem, 0.7fr);
  column-gap: clamp(2rem, 5vw, 5rem);
  row-gap: 0.7rem;
  align-items: end;
}
.section-heading .eyebrow { grid-column: 1; grid-row: 1; }
.section-heading h2 { grid-column: 1; grid-row: 2; }
.section-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  color: var(--muted);
  max-width: 28ch;
}
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
}
.care-grid article {
  min-height: 280px;
  padding: 2.2rem;
  background: var(--paper);
}
.care-grid span { color: var(--brand); font-size: 0.78rem; font-weight: 700; }
.care-grid h3 {
  margin: 4rem 0 0.8rem;
  font-family: Newsreader, serif;
  font-size: 1.65rem;
  font-weight: 500;
}
.care-grid p { margin: 0; color: var(--muted); }

.trust {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 7vw, 7rem);
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 6rem);
  background: var(--sand);
}
.quote { margin: 0; }
.quote blockquote {
  margin: 0;
  font-family: Newsreader, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.quote figcaption {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.trust-points p {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1.5rem;
  margin: 0;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.trust-points span { color: var(--muted); }

.contact {
  padding: clamp(5rem, 9vw, 9rem) 1.25rem;
  color: white;
  background: var(--deep);
  text-align: center;
}
.contact .eyebrow { color: #b7d4c8; }
.contact h2 { max-width: 16ch; margin: auto; }
.contact > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 1.3rem auto 0;
  color: #d5cfc4;
}
.actions-center { justify-content: center; }
.button-light {
  color: var(--deep);
  background: white;
  border-color: white;
}
.button-light:hover { color: white; background: transparent; }
.text-link-light { color: white; }
.contact small {
  display: block;
  margin-top: 2rem;
  color: #b7b1a6;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1.25rem, 5vw, 5rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  nav > a:not(.button) { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 4.5rem 1.25rem 3rem; }
  .hero-image { min-height: 520px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading > p:last-child { grid-column: 1; grid-row: auto; }
  .section-heading h2 { max-width: none; }
  .care-grid { grid-template-columns: 1fr; }
  .care-grid article { min-height: 220px; }
  .care-grid h3 { margin-top: 2.5rem; }
  .hours { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .concept-note { font-size: 0.6rem; }
  .site-header { padding: 0.8rem 1rem; }
  .brand-mark { width: 2.25rem; height: 2.25rem; }
  .brand > span:last-child { font-size: 0.86rem; }
  .button-small { min-height: 2.35rem; padding: 0.45rem 0.75rem; font-size: 0.75rem; }
  h1 { font-size: clamp(2.8rem, 12vw, 4.2rem); }
  .hero-image { min-height: 430px; }
  .hero-image img { object-position: 68% center; }
  .trust-points p { grid-template-columns: 1fr; gap: 0.4rem; }
  footer { flex-direction: column; }
}

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