:root {
  --ink: #13221f;
  --muted: #5f706d;
  --line: #dce7e4;
  --paper: #ffffff;
  --soft: #f4faf8;
  --green: #164b47;
  --green-deep: #0d302d;
  --coral: #c9674d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

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

.brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 56px);
  background:
    linear-gradient(120deg, rgba(244, 250, 248, 0.96), rgba(255, 255, 255, 0.9) 58%, rgba(255, 244, 240, 0.72));
}

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

.quiet-line {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.08;
}

.lead {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.doctor-line {
  margin-bottom: 26px;
  color: var(--green);
  font-weight: 900;
}

.actions,
.strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--green);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: var(--green);
}

.button.secondary {
  color: var(--green);
  background: #ffffff;
}

.hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(19, 34, 31, 0.18);
}

.hero-image img {
  width: 100%;
  height: min(62vh, 620px);
  object-fit: cover;
}

.statement {
  padding: clamp(34px, 6vw, 70px) clamp(18px, 5vw, 56px);
  background: var(--green-deep);
  color: #ffffff;
}

.statement p {
  max-width: 980px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1.12;
  text-align: center;
}

.content-band {
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 56px);
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 0.45fr);
  gap: clamp(18px, 4vw, 60px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.treatment-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.treatment-list span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--green-deep);
  font-weight: 850;
  line-height: 1.25;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 56px) clamp(46px, 7vw, 92px);
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background: var(--soft);
}

.contact-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero,
  .section-heading,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image img {
    height: 420px;
  }

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

@media (max-width: 620px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 42px;
  }

  .button {
    width: 100%;
  }

  .hero-image img {
    height: 300px;
  }

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