:root {
  --cream: #f6e9e0;
  --cream-light: #f6e9e0;
  --teal: #416f6d;
  --teal-dark: #142f31;
  --sage: #c8d3c5;
  --sage-light: #e9eee6;
  --peach: #efc1a4;
  --peach-light: #f8dfcf;
  --ink: #132529;
  --muted: #5c6866;
  --line: rgba(65, 111, 109, 0.28);
  --shadow: 0 18px 48px rgba(48, 52, 48, 0.1);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.45) 0, rgba(233, 238, 230, 0) 360px),
    #eef3ee;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(65, 111, 109, 0.45);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 10px 0;
  background: rgba(250, 252, 247, 0.94);
  border-bottom: 1px solid rgba(65, 111, 109, 0.18);
  box-shadow: 0 10px 26px rgba(48, 52, 48, 0.055);
  backdrop-filter: blur(14px);
}

.brand-link {
  flex: 0 0 auto;
}

.brand-link img {
  width: clamp(150px, 20vw, 220px);
}

nav {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--teal-dark);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease, color 160ms ease;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(232, 238, 233, 0.88);
  transform: translateY(-1px);
  outline: 0;
}

nav .nav-cta {
  color: #fff;
  background: var(--teal);
}

nav .nav-cta:hover,
nav .nav-cta:focus-visible {
  color: #fff;
  background: var(--teal-dark);
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(340px, 1.2fr) minmax(240px, 0.7fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  padding: clamp(42px, 6vw, 76px) 0 clamp(24px, 4vw, 42px);
}

.hero-left h1 {
  margin: 0;
  color: rgba(65, 111, 109, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.05rem, 5.8vw, 5.25rem);
  font-weight: 500;
  line-height: 1;
}

.kicker,
.label {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.accent-line {
  display: block;
  width: 140px;
  height: 3px;
  margin-top: 22px;
  background: var(--peach);
}

.hero-center {
  text-align: center;
}

.hero-center h2 {
  max-width: 720px;
  margin: 0 auto 8px;
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.08;
  white-space: nowrap;
}

.hero-center p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.28;
}

.hero-visual {
  position: relative;
  width: min(100%, 540px);
  margin: 2px auto 26px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 250, 245, 0.38);
  border: 1px solid rgba(255, 250, 245, 0.7);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(48, 52, 48, 0.11);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(246, 233, 224, 0) 58%, rgba(246, 233, 224, 0.18));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: #fff;
  background: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(65, 111, 109, 0.18);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button.ghost {
  color: var(--teal);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(65, 111, 109, 0.22);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.quick-card {
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 250, 245, 0.82), rgba(232, 238, 230, 0.88)),
    rgba(246, 233, 224, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(48, 52, 48, 0.1);
}

.quick-card h2 {
  margin: -4px 0 8px;
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 500;
  line-height: 1.12;
}

.contact-note {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-detail {
  display: grid;
  gap: 3px;
  margin: 12px 0 2px;
  padding: 10px 12px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(65, 111, 109, 0.14);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.28;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.contact-detail:hover,
.contact-detail:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(65, 111, 109, 0.32);
  transform: translateY(-1px);
  text-decoration: none;
}

.contact-detail span {
  color: var(--teal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 8px;
  padding: 9px 12px;
  color: #fff;
  background: var(--teal);
  border: 1px solid rgba(65, 111, 109, 0.22);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  overflow-wrap: break-word;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.quick-card a + a {
  color: var(--teal);
  background: rgba(255, 255, 255, 0.64);
}

.quick-card a:hover,
.quick-card a:focus-visible {
  background: var(--teal-dark);
  color: #fff;
  box-shadow: 0 12px 22px rgba(65, 111, 109, 0.16);
  transform: translateY(-1px);
  text-decoration: none;
  outline: 0;
}

.quick-card a[href^="mailto:"],
footer a[href^="mailto:"] {
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.care-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0 0 26px;
  background: rgba(65, 111, 109, 0.18);
  border: 1px solid rgba(65, 111, 109, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(48, 52, 48, 0.045);
}

.care-strip div {
  min-height: 118px;
  padding: 20px;
  background: rgba(255, 250, 245, 0.5);
}

.care-strip span {
  width: fit-content;
  display: block;
  margin-bottom: 8px;
  padding: 3px 12px 5px;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.52rem, 2.2vw, 1.9rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
}

.care-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 500;
  line-height: 1.08;
}

.section-heading h1 {
  margin: 0;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 500;
  line-height: 1.02;
}

.about-section,
.blog-section,
.resources-section,
.faq-section {
  margin: 0 0 34px;
}

.about-section {
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.72), rgba(232, 238, 230, 0.76)),
    var(--sage-light);
  border: 1px solid rgba(65, 111, 109, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(48, 52, 48, 0.065);
}

.about-layout {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.about-photo {
  align-self: start;
  width: 168px;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 250, 245, 0.62);
  border: 1px solid rgba(65, 111, 109, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(48, 52, 48, 0.055);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.about-copy p {
  margin: 0;
  color: var(--teal-dark);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.verification-license {
  width: min(100%, 230px);
  height: auto;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(65, 111, 109, 0.16);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(48, 52, 48, 0.06);
}

.about-card,
.blog-card,
.faq-list details {
  background: rgba(255, 250, 245, 0.62);
  border: 1px solid rgba(65, 111, 109, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(48, 52, 48, 0.055);
}

.about-card {
  padding: 22px;
}

.about-card h2,
.about-card h3,
.blog-card h2,
.blog-card h3 {
  margin: 0;
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.12;
}

.about-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.about-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.about-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  background: var(--peach);
  border-radius: 50%;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 30px;
}

.panel,
.quote-panel {
  padding: clamp(22px, 3vw, 30px);
  background: rgba(246, 233, 224, 0.78);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(48, 52, 48, 0.055);
}

#services,
#visits,
#insurance,
#testimonials {
  scroll-margin-top: 96px;
}

.panel {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.panel:hover {
  border-color: rgba(65, 111, 109, 0.42);
  box-shadow: 0 16px 34px rgba(48, 52, 48, 0.075);
  transform: translateY(-2px);
}

.panel h2,
.specialties h2 {
  width: fit-content;
  min-width: 180px;
  margin: -12px auto 18px;
  padding: 5px 18px;
  color: var(--teal-dark);
  background: var(--sage);
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

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

.panel li {
  position: relative;
  padding-left: 28px;
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 11px;
  height: 11px;
  background: var(--teal);
  border-radius: 50%;
}

.quote-panel {
  grid-column: 1 / -1;
  width: min(100%, 560px);
  justify-self: center;
  padding: 20px 28px;
  background: rgba(232, 238, 230, 0.9);
}

.quote-panel p {
  margin: 0;
  color: var(--teal-dark);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  text-align: center;
}

.specialties {
  margin: 0 0 34px;
  padding: 4px 0 0;
}

.specialties ul {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.specialties li {
  overflow: hidden;
  color: var(--teal-dark);
  background: rgba(255, 250, 245, 0.58);
  border: 1px solid rgba(65, 111, 109, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(48, 52, 48, 0.055);
  font-weight: 800;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.specialties li:hover {
  box-shadow: 0 16px 34px rgba(48, 52, 48, 0.08);
  transform: translateY(-2px);
}

.specialties img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.specialties span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 9px 12px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.blog-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 250px;
  padding: clamp(20px, 3vw, 26px);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.blog-card:hover {
  border-color: rgba(65, 111, 109, 0.42);
  box-shadow: 0 16px 34px rgba(48, 52, 48, 0.075);
  transform: translateY(-2px);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.resource-card {
  min-height: 260px;
}

.resource-open {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 9px 13px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(65, 111, 109, 0.2);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.resource-open:hover,
.resource-open:focus-visible {
  color: #fff;
  background: var(--teal);
  transform: translateY(-1px);
  outline: 0;
}

.card-reader {
  margin-top: auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(65, 111, 109, 0.18);
  border-radius: 8px;
}

.card-reader summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: var(--teal-dark);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.card-reader summary::-webkit-details-marker {
  display: none;
}

.card-reader summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
}

.card-reader[open] summary::after {
  content: "-";
}

.reader-content {
  max-height: 430px;
  overflow-y: auto;
  padding: 0 12px 14px;
  color: var(--muted);
}

.reader-content h3,
.reader-content h4 {
  margin: 18px 0 8px;
  color: var(--teal-dark);
  line-height: 1.2;
}

.reader-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.reader-content h4 {
  font-size: 1rem;
}

.reader-content p {
  margin: 0 0 12px;
}

.reader-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding-left: 22px;
}

.reader-content li {
  padding-left: 2px;
}

.reader-source {
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 800;
}

.resource-figure {
  margin: 12px 0 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(65, 111, 109, 0.16);
  border-radius: 8px;
}

.resource-figure img {
  width: 100%;
  height: auto;
}

.resource-page {
  width: min(calc(100% - 40px), 980px);
}

.resource-article {
  padding: clamp(26px, 5vw, 48px);
  background: rgba(255, 250, 245, 0.68);
  border: 1px solid rgba(65, 111, 109, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(48, 52, 48, 0.07);
}

.resource-article h1 {
  margin: 0 0 18px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.02;
}

.resource-article .reader-content {
  max-height: none;
  overflow: visible;
  padding: 0;
  font-size: 1.05rem;
}

.blog-meta {
  color: var(--teal) !important;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--teal-dark);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
}

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

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.endorsements-section {
  margin: 0 0 34px;
}

.about-gallery-section {
  margin: 0 0 34px;
}

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

.gallery-card {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 250, 245, 0.62);
  border: 1px solid rgba(65, 111, 109, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(48, 52, 48, 0.055);
}

.gallery-card-wide {
  grid-column: 1 / -1;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-card-wide img {
  aspect-ratio: 2.15 / 1;
  object-position: center;
}

.gallery-card figcaption {
  padding: 12px 14px 14px;
  color: var(--teal-dark);
  font-weight: 800;
}

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

.endorsement-card {
  min-height: 218px;
  padding: 20px;
  background: rgba(255, 250, 245, 0.62);
  border: 1px solid rgba(65, 111, 109, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(48, 52, 48, 0.055);
}

.endorsement-card > img {
  width: 74px;
  height: 74px;
  margin: 0 0 14px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255, 250, 245, 0.9);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(48, 52, 48, 0.1);
}

.endorsement-card h3 {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 1rem;
  line-height: 1.25;
}

.endorsement-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
}

.insurance {
  width: min(100%, 760px);
  margin: 0 auto 28px;
}

.insurance h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

.insurance img {
  width: 100%;
  height: auto;
}

.testimonials-section {
  margin: 0 0 28px;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.72), rgba(232, 238, 230, 0.86)),
    var(--sage-light);
  border: 1px solid rgba(65, 111, 109, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(48, 52, 48, 0.065);
}

.testimonial-placeholder {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 250, 245, 0.62);
  border: 1px solid rgba(65, 111, 109, 0.16);
  border-radius: 8px;
  text-align: center;
}

.testimonial-placeholder p {
  margin: 0;
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 0 clamp(42px, 6vw, 70px);
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(65, 111, 109, 0.96), rgba(20, 47, 49, 0.94)),
    var(--teal);
  border: 1px solid rgba(255, 250, 245, 0.42);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(48, 52, 48, 0.16);
}

.final-cta .kicker {
  margin-bottom: 8px;
}

.final-cta h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.08;
}

.final-cta .kicker {
  color: var(--peach-light);
}

.final-cta .button {
  color: var(--teal-dark);
  background: #fffaf5;
  border-color: #fffaf5;
  box-shadow: 0 12px 24px rgba(20, 47, 49, 0.18);
}

.final-cta .button.ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 250, 245, 0.72);
}

.final-cta .button:hover,
.final-cta .button:focus-visible {
  background: var(--peach-light);
  border-color: var(--peach-light);
}

.final-cta .button.ghost:hover,
.final-cta .button.ghost:focus-visible {
  color: var(--teal-dark);
  background: #fffaf5;
  border-color: #fffaf5;
}

.schedule-page {
  padding: clamp(36px, 6vw, 70px) 0 clamp(42px, 6vw, 72px);
}

.content-page {
  padding: clamp(34px, 5vw, 58px) 0 clamp(42px, 6vw, 72px);
}

.schedule-intro {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.schedule-intro h1 {
  margin: 0 0 12px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
}

.schedule-intro p {
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.schedule-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.38fr);
  gap: 18px;
  align-items: start;
}

.schedule-form {
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 250, 245, 0.58);
  border: 1px solid rgba(65, 111, 109, 0.18);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(48, 52, 48, 0.07);
}

.form-note {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.schedule-form label,
.visit-choice {
  display: grid;
  gap: 8px;
  margin: 0;
}

.schedule-form label span,
.visit-choice legend {
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.schedule-form input,
.schedule-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(65, 111, 109, 0.2);
  border-radius: 8px;
  font: inherit;
}

.schedule-form textarea {
  min-height: 150px;
  resize: vertical;
}

.schedule-form input:focus,
.schedule-form textarea:focus {
  outline: 3px solid rgba(65, 111, 109, 0.22);
  border-color: rgba(65, 111, 109, 0.5);
}

.form-wide,
.visit-choice {
  grid-column: 1 / -1;
}

.visit-choice {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  border: 0;
}

.visit-choice legend {
  grid-column: 1 / -1;
  padding: 0;
}

.visit-choice label {
  position: relative;
  display: block;
}

.visit-choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.visit-choice label span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(65, 111, 109, 0.2);
  border-radius: 8px;
  color: var(--teal-dark);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.visit-choice input:checked + span {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.visit-choice input:focus-visible + span {
  outline: 3px solid rgba(65, 111, 109, 0.3);
  outline-offset: 2px;
}

.visit-choice label:hover span {
  transform: translateY(-1px);
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.form-actions .button {
  cursor: pointer;
  font: inherit;
}

.form-status {
  min-height: 0;
  margin: 16px 0 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--teal-dark);
  font-weight: 800;
}

.form-status:not(:empty) {
  padding: 12px 14px;
}

.form-status.is-success {
  color: #163d2b;
  background: rgba(200, 211, 197, 0.7);
  border: 1px solid rgba(22, 61, 43, 0.2);
}

.form-status.is-error {
  color: #663124;
  background: rgba(248, 223, 207, 0.82);
  border: 1px solid rgba(102, 49, 36, 0.22);
}

.schedule-contact {
  position: sticky;
  top: 92px;
}

footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 24px 0 34px;
  color: var(--teal-dark);
  border-top: 1px solid rgba(65, 111, 109, 0.18);
  font-weight: 800;
}

footer span,
.footer-address {
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  text-decoration: none;
}

footer a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .topbar,
  .hero {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    text-align: center;
  }

  .hero-left h1 {
    font-size: clamp(3rem, 11vw, 5.2rem);
  }

  .accent-line {
    margin-inline: auto;
  }

  .quick-card {
    width: min(100%, 520px);
    margin-inline: auto;
  }

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

  .care-strip {
    grid-template-columns: 1fr;
  }

  .about-layout,
  .blog-grid,
  .about-gallery,
  .endorsement-grid {
    grid-template-columns: 1fr;
  }

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

  .about-photo {
    width: min(180px, 58vw);
    justify-self: center;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-shell {
    grid-template-columns: 1fr;
  }

  .schedule-contact {
    position: static;
    width: 100%;
  }

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

}

@media (max-width: 620px) {
  .topbar,
  main,
  footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .topbar {
    position: static;
  }

  .brand-link img {
    width: min(100%, 200px);
  }

  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  nav a {
    min-height: 34px;
    padding: 7px 9px;
    background: rgba(255, 255, 255, 0.6);
    font-size: 0.84rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-center h2 {
    font-size: 1.5rem;
  }

  .form-grid,
  .visit-choice,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .specialties ul {
    grid-template-columns: 1fr;
  }

  .specialties li {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    text-align: left;
  }

  .specialties img {
    height: 96px;
  }

  .specialties span {
    justify-content: flex-start;
    min-height: 0;
    padding: 14px;
  }

  footer {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
