:root {
  --bg: #f6ece7;
  --bg-alt: #ecd9cf;
  --surface: #fffaf7;
  --text: #2e2724;
  --muted: #5b4d46;
  --accent: #4c6a54;
  --accent-soft: #e7ddd6;
  --border: #d8c2b5;
  --emergency-bg: #f9e5e3;
  --emergency-border: #a23b3b;
  --shadow: 0 10px 28px rgba(46, 39, 36, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Avenir Next", "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  color: var(--text);
  text-align: center;
  background: linear-gradient(180deg, #f8eeea 0%, var(--bg) 100%);
}

h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  letter-spacing: 0.01em;
}

img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 4px);
}

a {
  color: var(--accent);
}

a:hover {
  color: #244a3a;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #2e6a4f;
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 4rem 0 2rem;
  background: radial-gradient(circle at top right, #efd9cc 0%, transparent 42%);
  border-bottom: 1px solid var(--border);
}

.header-inner h1 {
  margin: 0.2rem 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

.pronouns {
  font-size: 0.46em;
  font-weight: 500;
  color: var(--muted);
  vertical-align: middle;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.eyebrow a {
  color: inherit;
  text-decoration: none;
}

.eyebrow a:hover {
  text-decoration: underline;
}

.name-pronunciation-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0.2rem 0 0.35rem;
}

.name-pronunciation {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}


.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section {
  padding: 3.5rem 0;
}

.alt-bg {
  background: var(--bg-alt);
  border-top: 1px solid #dfd5c8;
  border-bottom: 1px solid #dfd5c8;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: 1.06rem;
}

.hero p,
.section p {
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0.6rem;
}

.button {
  display: inline-block;
  text-decoration: none;
  border: 2px solid transparent;
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 650;
}

.button:hover {
  background: #244a3a;
  color: #fff;
}

.button-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.button-secondary:hover {
  color: #fff;
  background: var(--accent);
}

.small-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(70, 50, 42, 0.08);
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-list li {
  background: var(--accent-soft);
  border: 1px solid #ccb7aa;
  border-radius: 999px;
  padding: 0.36rem 0.8rem;
  font-size: 0.95rem;
}

.pill-list a {
  text-decoration: none;
  font-weight: 600;
}

.pill-list a:hover {
  text-decoration: underline;
}

.specialty-details {
  margin-top: 1rem;
}

.specialty-details h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.spec-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.mini-icon {
  display: inline-block;
  margin-right: 0.35rem;
}
.gallery {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: var(--shadow);
}

.photo-card figcaption {
  font-size: 0.86rem;
  color: var(--muted);
  padding: 0.55rem 0.3rem 0.2rem;
}

.sessions-photo {
  margin: 1.4rem auto 0;
  max-width: 760px;
}

.emergency {
  background: var(--emergency-bg);
  border-top: 1px solid #e9c6c1;
  border-bottom: 1px solid #e9c6c1;
}

.emergency .container {
  border-left: 5px solid var(--emergency-border);
  padding-left: 1rem;
}

.emergency ul {
  margin: 0.8rem auto 0;
  padding-left: 0;
  list-style-position: inside;
  text-align: left;
  max-width: 46rem;
}

.site-footer {
  padding: 3rem 0 4rem;
  background: #213228;
  color: #ecf5ef;
}

.site-footer h2,
.site-footer p {
  color: #f3faf5;
}

.site-footer a {
  color: #ccf0da;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.4rem;
}

.contact-list li {
  margin: 0.3rem 0;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .section {
    padding: 2.5rem 0;
  }

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

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