:root {
  --sage-background: #5f7885;
  --sage-text: #485e69;
  --sage-soft: #eef5f8;
  --ink: #111817;
  --muted: #56615d;
  --line: #dce7eb;
  --paper: #ffffff;
  --warm: #f6f9fa;
  --accent: #caa24a;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
}

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

.top {
  background: var(--sage-background);
  color: #fff;
}

.brand {
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
  min-height: 118px;
  display: flex;
  align-items: center;
  padding-top: 18px;
}

.brand a {
  text-decoration: none;
}

.brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: .02em;
}

.brand-sub {
  display: block;
  margin-top: 3px;
  font-size: 1rem;
  letter-spacing: .04em;
}

.nav {
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 36px;
  color: #fff;
  font-size: 1rem;
}

.nav a {
  padding: 14px 0;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus {
  border-color: #fff;
}

main {
  background: var(--paper);
}

section {
  padding: 76px 0;
}

.wrap {
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
}

.hero {
  padding-top: 26px;
  padding-bottom: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 500px) minmax(340px, 1fr);
  gap: 58px;
  align-items: center;
}

.practice-hero {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.28;
}

h1 {
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-weight: 700;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 500;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.subsection-title {
  margin-top: 24px;
}

p {
  margin: 0 0 18px;
}

.intro {
  font-size: 1.03rem;
}

.section-soft {
  background: var(--warm);
  border-block: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}

.text-box {
  max-width: 760px;
}

.profile-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: start;
  max-width: 900px;
}

.profile-photo {
  width: 150px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.timeline,
.legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-list {
  columns: 2;
  column-gap: 48px;
  margin: 8px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.treatment-list li {
  break-inside: avoid;
  margin: 0 0 9px;
  padding-left: 4px;
}

.practice-gallery {
  margin-bottom: 34px;
}

.practice-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.section-image {
  width: 80%;
  height: auto;
}

.practice-focus {
  display: grid;
  grid-template-columns: minmax(280px, 500px) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.practice-focus .practice-gallery {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.timeline strong {
  display: block;
  color: var(--sage-text);
  margin-bottom: 4px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 44px;
  align-items: start;
  background: var(--sage-soft);
  border: 1px solid var(--line);
  padding: 34px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}

.contact-card dl {
  margin: 0;
}

.contact-card dt {
  font-weight: 700;
  color: var(--sage-text);
  margin-top: 14px;
}

.contact-card dt:first-child {
  margin-top: 0;
}

.contact-card dd {
  margin: 2px 0 0;
}

.phone {
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal {
  padding-top: 54px;
  font-size: .95rem;
  color: var(--muted);
}

.legal-list {
  display: grid;
  gap: 18px;
}

.legal-list li {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.legal-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-list strong {
  display: block;
  color: var(--sage-text);
  margin-bottom: 5px;
}

.dispute-resolution {
  margin-top: 32px;
}

footer {
  background: var(--sage-background);
  color: #fff;
  padding: 34px 0;
}

.footer-inner {
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-inner strong {
  display: block;
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 900px) {

  .brand,
  .nav,
  .wrap,
  .footer-inner {
    width: min(100% - 36px, 1320px);
  }

  .brand {
    min-height: 98px;
  }

  .nav {
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
  }

  section {
    padding: 58px 0;
  }

  .hero-grid,
  .two-col,
  .practice-focus,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .practice-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 2.65rem;
  }

  .brand-sub {
    font-size: .92rem;
  }

  .hero {
    padding-top: 18px;
  }

  .treatment-list {
    columns: 1;
  }

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

  .section-image {
    margin: 0 auto;
  }

  .practice-focus {
    gap: 24px;
  }

  .contact-panel {
    padding: 22px;
  }
}
