:root {
  --ink: #183c3b;
  --ink-soft: #315553;
  --cream: #f7f4ed;
  --paper: #fffdf8;
  --sage: #dfe9df;
  --moss: #486963;
  --clay: #c97455;
  --sand: #f0dfc5;
  --line: rgba(24, 60, 59, 0.14);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
.shell {
  width: min(1170px, calc(100% - 48px));
  margin: auto;
}
.narrow {
  max-width: 760px;
}
.centered {
  text-align: center;
}
.section-pad {
  padding: 112px 0;
}
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 10;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
}
.skip-link:focus {
  left: 18px;
  top: 18px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(2.8rem, 5.15vw, 5rem);
}
h2 {
  font-size: clamp(2.15rem, 3.5vw, 3.45rem);
}
h3 {
  font-size: 1.45rem;
}
a {
  color: inherit;
  text-decoration: none;
}
.eyebrow {
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  padding: 22px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.brand strong,
.brand small {
  display: block;
}
.brand strong {
  font-size: 0.93rem;
  letter-spacing: 0.03em;
}
.brand small {
  margin-top: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.85rem;
  font-weight: 600;
}
.site-nav > a:not(.button) {
  border-bottom: 1px solid transparent;
}
.site-nav > a:not(.button):hover {
  border-color: var(--ink);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: #fff;
  padding: 15px 22px;
  font: 700 0.78rem var(--sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 0.2s;
}
.button:hover {
  background: var(--clay);
  border-color: var(--clay);
  transform: translateY(-2px);
}
.button-small {
  padding: 11px 15px;
  font-size: 0.67rem;
}
.menu-button {
  display: none;
  background: transparent;
  border: 0;
}
.hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  padding: 174px 0 80px;
  background: #e6ede5;
}
.hero:after {
  position: absolute;
  content: "";
  right: -100px;
  bottom: -250px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(72, 105, 99, 0.16);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 68px;
}
.hero-copy {
  padding-bottom: 15px;
}
.hero h1 {
  max-width: 700px;
  margin-bottom: 25px;
}
.hero h1 em {
  color: var(--clay);
  font-weight: 400;
}
.hero-intro {
  max-width: 570px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 34px 0;
}
.text-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.text-link span {
  color: var(--clay);
  font-size: 1.1rem;
}
.assurance {
  display: flex;
  gap: 9px;
  max-width: 410px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.assurance span {
  color: var(--clay);
}
.hero-image-wrap {
  position: relative;
  justify-self: end;
  width: min(100%, 462px);
  padding: 22px 0 0 20px;
}
.hero-image-frame {
  position: relative;
  overflow: hidden;
  height: 555px;
  border-radius: 210px 210px 10px 10px;
  background: #a1b9a9;
}
.hero-image-frame:after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(21, 57, 54, 0.16));
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}
.credential-card {
  position: absolute;
  z-index: 2;
  bottom: 33px;
  left: -48px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  padding: 15px 18px;
  background: var(--paper);
  box-shadow: 0 17px 38px rgba(24, 60, 59, 0.15);
}
.credential-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--clay);
}
.credential-card strong,
.credential-card span:not(.credential-icon) {
  display: block;
}
.credential-card strong {
  font: 700 0.85rem var(--serif);
}
.credential-card span:not(.credential-icon) {
  font-size: 0.66rem;
  color: var(--ink-soft);
}
.orb-one,
.orb-two {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(72, 105, 99, 0.15);
}
.orb-one {
  top: 90px;
  left: -160px;
  width: 390px;
  height: 390px;
}
.orb-two {
  right: 36%;
  top: 99px;
  width: 140px;
  height: 140px;
}
.intro-section {
  padding: 125px 0 119px;
  background: var(--paper);
}
.intro-section h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 22px;
}
.intro-section p:last-child {
  max-width: 640px;
  margin: auto;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.support-section {
  background: var(--cream);
}
.section-heading {
  margin-bottom: 50px;
}
.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.66fr;
  align-items: end;
  gap: 50px;
}
.split-heading h2 {
  max-width: 650px;
  margin: 0;
}
.split-heading > p {
  margin: 0;
  color: var(--ink-soft);
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.support-card {
  min-height: 395px;
  padding: 34px 31px;
  border: 1px solid transparent;
}
.warm-card {
  background: #efe2d4;
}
.sage-card {
  background: #dbe8dd;
}
.sand-card {
  background: #eee8db;
}
.card-number {
  display: block;
  margin-bottom: 53px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.support-card h3 {
  max-width: 260px;
  margin-bottom: 17px;
}
.support-card p {
  font-size: 0.91rem;
  line-height: 1.6;
}
.support-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(24, 60, 59, 0.16);
}
.support-card li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(24, 60, 59, 0.16);
  font-size: 0.78rem;
  font-weight: 600;
}
.support-card li:before {
  content: "↗";
  margin-right: 8px;
  color: var(--clay);
}
.approach-section {
  background: var(--ink);
  color: var(--paper);
}
.approach-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.05fr;
  align-items: center;
  gap: 100px;
}
.portrait-block {
  height: 525px;
  overflow: hidden;
  border-radius: 12px 12px 170px 12px;
}
.portrait-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}
.approach-copy .eyebrow {
  color: #d9ae82;
}
.approach-copy h2 {
  max-width: 600px;
}
.approach-copy > p:not(.eyebrow) {
  max-width: 635px;
  color: #d8e4dd;
}
.approach-list {
  margin-top: 35px;
}
.approach-list > div {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.approach-list span {
  color: #d9ae82;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.approach-list p {
  margin: 0;
  color: #d8e4dd;
  font-size: 0.9rem;
}
.approach-list strong {
  color: white;
}
.about-section {
  background: #f2e6d6;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.8fr;
  align-items: center;
  gap: 115px;
}
.about-copy h2 {
  max-width: 590px;
}
.about-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--ink-soft);
}
.pull-quote {
  margin-top: 32px !important;
  padding: 18px 0 18px 23px;
  border-left: 2px solid var(--clay);
  font: italic 1.06rem/1.65 var(--serif) !important;
  color: var(--ink) !important;
}
.history-card {
  margin: 0;
  background: var(--paper);
  box-shadow: 15px 18px 0 #d6c4ae;
  transform: rotate(2deg);
}
.history-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3/3.75;
  object-fit: cover;
  object-position: top;
}
.history-card figcaption {
  padding: 20px 23px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}
.history-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}
.session-section {
  background: var(--paper);
}
.session-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 105px;
}
.session-grid h2 {
  margin: 0;
}
.session-list {
  border-top: 1px solid var(--line);
}
.session-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.session-list article > span {
  color: var(--clay);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.session-list h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}
.session-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.faq-section {
  background: var(--sage);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.1fr;
  gap: 100px;
}
.faq-grid h2 {
  max-width: 450px;
}
.faq-grid > div > p:not(.eyebrow) {
  max-width: 380px;
  color: var(--ink-soft);
}
.accordion details {
  border-top: 1px solid var(--line);
}
.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 21px 0;
  font: 400 1rem var(--serif);
  list-style: none;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary span {
  color: var(--clay);
  font: 400 1.55rem/1 var(--sans);
}
.accordion details[open] summary span {
  transform: rotate(45deg);
}
.accordion details p {
  max-width: 650px;
  margin: 0;
  padding: 0 0 21px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.inquiry-section {
  padding: 105px 0;
  background: var(--clay);
  color: #fff;
}
.inquiry-wrap {
  display: grid;
  grid-template-columns: 0.88fr 1.05fr;
  gap: 110px;
}
.inquiry-section .eyebrow {
  color: #ffe5c5;
}
.inquiry-section h2 {
  max-width: 450px;
}
.inquiry-section > div > p:not(.eyebrow),
.inquiry-wrap > div > p:not(.eyebrow) {
  color: #fff4e8;
}
.inquiry-note {
  margin-top: 27px;
  font-size: 0.82rem;
  line-height: 1.55;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.contact-form label {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-form label span {
  font-weight: 400;
  text-transform: none;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  outline: 0;
  background: transparent;
  color: #fff;
  font: 400 1rem var(--sans);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fff;
}
.contact-form label:nth-of-type(4),
.contact-form button,
.form-status {
  grid-column: 1/-1;
}
.contact-form .button {
  justify-self: start;
  margin-top: 7px;
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.contact-form .button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.form-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.83rem;
}
.site-footer {
  padding: 34px 0;
  background: #102d2c;
  color: #edf2ea;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand .brand-mark {
  border-color: #edf2ea;
}
.footer-wrap p {
  margin: 0;
  font-size: 0.78rem;
}
.footer-meta {
  color: #b7c5bd;
}
.menu-button span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 5px;
  background: var(--ink);
}
@media (max-width: 900px) {
  .site-nav {
    gap: 14px;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid,
  .approach-grid,
  .about-grid,
  .session-grid,
  .faq-grid,
  .inquiry-wrap {
    gap: 55px;
  }
  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
  }
  .hero-image-frame {
    height: 480px;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .support-card {
    min-height: auto;
  }
  .support-card .card-number {
    margin-bottom: 28px;
  }
  .about-grid {
    grid-template-columns: 1fr 0.7fr;
  }
  .split-heading {
    grid-template-columns: 1fr 0.8fr;
  }
  .faq-grid {
    grid-template-columns: 0.8fr 1fr;
  }
}
@media (max-width: 680px) {
  .shell {
    width: min(100% - 34px, 1170px);
  }
  .site-header {
    padding: 17px 0;
  }
  .menu-button {
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 17px;
    left: 17px;
    flex-direction: column;
    align-items: stretch;
    padding: 19px;
    background: var(--paper);
    box-shadow: 0 12px 25px rgba(24, 60, 59, 0.16);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav .button {
    text-align: center;
  }
  .hero {
    padding: 134px 0 55px;
  }
  .hero-grid,
  .split-heading,
  .approach-grid,
  .about-grid,
  .session-grid,
  .faq-grid,
  .inquiry-wrap {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .hero h1 {
    font-size: 2.75rem;
  }
  .hero-image-wrap {
    justify-self: auto;
    width: min(100%, 420px);
    margin: auto;
  }
  .hero-image-frame {
    height: 430px;
  }
  .credential-card {
    left: -7px;
    bottom: 18px;
  }
  .section-pad {
    padding: 76px 0;
  }
  .intro-section {
    padding: 78px 0;
  }
  .support-grid {
    gap: 12px;
  }
  .approach-grid {
    gap: 38px;
  }
  .portrait-block {
    height: 420px;
  }
  .about-grid {
    gap: 52px;
  }
  .history-card {
    max-width: 380px;
    margin: auto;
  }
  .session-grid,
  .faq-grid {
    gap: 30px;
  }
  .inquiry-section {
    padding: 76px 0;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .footer-meta {
    padding-bottom: 4px;
  }
  .orb-two {
    display: none;
  }
}

.card-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card-link span {
  color: var(--clay);
  font-size: 1rem;
}
.faq-more-link {
  display: inline-flex;
  margin-top: 23px;
}
.page-header {
  position: relative;
  background: var(--paper);
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.page-header .site-nav {
  gap: 22px;
}
.page-hero {
  padding: 104px 0 90px;
  background: #e6ede5;
}
.page-hero.clay-hero {
  background: #f0dfc5;
}
.page-hero.sage-hero {
  background: #dfe9df;
}
.page-hero .shell {
  max-width: 920px;
  margin-left: max(24px, calc((100% - 1170px) / 2));
}
.page-hero h1 {
  max-width: 840px;
  margin-bottom: 22px;
}
.page-intro {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}
.page-content {
  padding: 92px 0;
  background: var(--paper);
}
.page-content.alt {
  background: var(--cream);
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  gap: 100px;
}
.reading-copy {
  max-width: 720px;
}
.reading-copy h2 {
  margin: 51px 0 18px;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
}
.reading-copy h2:first-child {
  margin-top: 0;
}
.reading-copy h3 {
  margin: 32px 0 10px;
  font-size: 1.32rem;
}
.reading-copy p {
  color: var(--ink-soft);
}
.reading-copy ul {
  margin: 17px 0 25px;
  padding-left: 20px;
  color: var(--ink-soft);
}
.reading-copy li {
  margin: 9px 0;
}
.side-card {
  align-self: start;
  padding: 29px;
  background: var(--sage);
}
.side-card.clay-side {
  background: #f0dfc5;
}
.side-card h2 {
  font-size: 1.7rem;
}
.side-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.side-card ul {
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.89rem;
}
.side-card .button {
  width: 100%;
  margin-top: 10px;
}
.callout {
  margin: 36px 0;
  padding: 27px 30px;
  border-left: 3px solid var(--clay);
  background: #f7f1e8;
}
.callout p {
  margin: 0 !important;
  color: var(--ink) !important;
  font: italic 1.04rem/1.7 var(--serif);
}
.feature-list {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}
.feature-list article {
  padding: 23px 25px;
  background: var(--cream);
  border-left: 2px solid var(--clay);
}
.feature-list h3 {
  margin: 0 0 8px;
}
.feature-list p {
  margin: 0;
}
.page-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 48px;
}
.page-footer-links .button {
  font-size: 0.68rem;
}
.faq-page {
  max-width: 820px;
}
.faq-page details {
  border-top: 1px solid var(--line);
}
.faq-page details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-page summary {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 22px 0;
  cursor: pointer;
  font: 400 1.05rem var(--serif);
  list-style: none;
}
.faq-page summary::-webkit-details-marker {
  display: none;
}
.faq-page summary span {
  color: var(--clay);
  font: 400 1.55rem/1 var(--sans);
}
.faq-page details[open] summary span {
  transform: rotate(45deg);
}
.faq-page details p {
  max-width: 700px;
  margin: 0;
  padding: 0 0 22px;
  color: var(--ink-soft);
}
.contact-page .inquiry-section {
  padding: 84px 0 96px;
}
.policy-list {
  padding: 0;
  list-style: none;
}
.policy-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
.policy-list li:last-child {
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .content-grid {
    gap: 55px;
  }
  .page-header .site-nav {
    gap: 14px;
  }
}
@media (max-width: 680px) {
  .page-header {
    padding: 17px 0;
  }
  .page-header .site-nav {
    top: 64px;
  }
  .page-hero {
    padding: 72px 0 65px;
  }
  .page-hero .shell {
    margin: auto;
  }
  .page-hero h1 {
    font-size: 2.55rem;
  }
  .page-content {
    padding: 70px 0;
  }
  .content-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .side-card {
    order: -1;
  }
  .reading-copy h2 {
    margin-top: 39px;
  }
  .page-footer-links {
    margin-top: 35px;
  }
}

/* Lisa Bentz logo: transparent version with colours echoed throughout the site. */
.brand-logo {
  display: block;
  width: 254px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
}
.footer-brand .brand-logo {
  max-height: 72px;
}
.brand:not(:has(.brand-logo)) {
  width: 254px;
  height: 100px;
  background: url("assets/lisa-bentz-logo-clean.webp") left center/contain
    no-repeat;
}
.brand:not(:has(.brand-logo)) .brand-mark,
.brand:not(:has(.brand-logo)) > span {
  display: none;
}
.footer-brand:not(:has(.brand-logo)) {
  width: 215px;
  height: 72px;
}
@media (max-width: 680px) {
  .brand-logo {
    width: 190px;
    max-height: 75px;
  }
  .brand:not(:has(.brand-logo)) {
    width: 190px;
    height: 75px;
  }
  .footer-brand:not(:has(.brand-logo)) {
    width: 178px;
    height: 59px;
  }
}

/* Palette drawn from the logo's forest green, muted river blue, and warm gold. */
:root {
  --ink: #183c1d;
  --ink-soft: #38553a;
  --cream: #f7f5ed;
  --paper: #fffef9;
  --sage: #dbe6dc;
  --moss: #769c91;
  --clay: #c99a2f;
  --sand: #f4e8c3;
  --line: rgba(24, 60, 29, 0.15);
}

/* Homepage hero: keep the long tagline visually balanced with Lisa's portrait. */
.hero {
  min-height: 760px;
  padding: 160px 0 72px;
}
.hero-grid {
  grid-template-columns: 1.12fr 0.88fr;
  gap: 60px;
}
.hero-copy {
  padding-bottom: 0;
}
.hero h1 {
  max-width: 630px;
  margin-bottom: 21px;
  font-size: clamp(2.8rem, 4.45vw, 4.35rem);
}
.hero-intro {
  max-width: 540px;
  font-size: 1.05rem;
}
.hero-actions {
  margin: 29px 0;
}
.hero-image-wrap {
  width: min(100%, 438px);
  padding: 18px 0 0 18px;
}
.hero-image-frame {
  height: 520px;
}
@media (max-width: 680px) {
  .hero {
    padding: 126px 0 55px;
  }
  .hero h1 {
    font-size: 2.45rem;
    line-height: 1.17;
  }
}
.site-footer {
  background: #eef3eb;
  color: var(--ink);
}
.footer-brand .brand-mark {
  border-color: var(--ink);
}
.footer-meta {
  color: var(--ink-soft);
}
.booking-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.button-outline-light {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.button-outline-light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.life-gallery-section {
  background: var(--paper);
}
.life-gallery-heading {
  max-width: 760px;
}
.life-gallery-heading h2 {
  margin-bottom: 18px;
}
.life-gallery-intro {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.7;
}
.life-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.life-gallery figure {
  margin: 0;
  background: var(--cream);
}
.life-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: contain;
  background: #edf1eb;
}
.life-gallery figcaption {
  padding: 15px 18px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}
.life-gallery-single {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}
@media (max-width: 680px) {
  .life-gallery {
    grid-template-columns: 1fr;
  }
  .life-gallery img {
    aspect-ratio: 4/5;
  }
}

/* Give the adjacent appointment and FAQ sections their own clear identity. */
.session-section {
  background: #e3edf0;
}
.faq-section {
  background: #f4e5e0;
}

/* Inner pages use alternating, quiet tones rather than repeating sage green. */
body:has(.feature-list):not(:has(.policy-list)) .page-hero {
  background: #e3edf0;
}
body:has(.feature-list):not(:has(.policy-list)) .side-card {
  background: #dce9ed;
}
body:has(.policy-list) .page-hero {
  background: #f1e8da;
}
body:has(.policy-list) .side-card {
  background: #f2dfda;
}
body:has(.faq-page) .page-hero,
body:has(.brand-logo) .page-hero {
  background: #f4e5e0;
}
body:has(.faq-page) .page-content {
  background: #f4f8f8;
}
body:has(.brand-logo) .side-card {
  background: #f2dfda;
}
body:has(.page-hero.clay-hero) .side-card {
  background: #eee5d5;
}
body:has(.page-hero):has(.side-card.clay-side):not(:has(.feature-list))
  .page-hero {
  background: #f1e8da;
}
body:has(.page-hero):has(.side-card.clay-side):not(:has(.feature-list))
  .side-card {
  background: #dce9ed;
}
body:has(.page-hero):has(.callout):not(:has(.page-hero.clay-hero)) .side-card {
  background: #eee5d5;
}
.contact-options {
  padding: 92px 0;
  background: #e3edf0;
}
.contact-options-intro {
  max-width: 690px;
  margin-bottom: 44px;
}
.contact-options-intro h2 {
  margin-bottom: 17px;
}
.contact-options-intro > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
}
.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.contact-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 350px;
  padding: 36px 34px;
  background: var(--paper);
  border: 1px solid rgba(24, 60, 59, 0.1);
}
.contact-option.primary-option {
  background: var(--ink);
  color: #fff;
}
.contact-option .eyebrow {
  margin-bottom: 35px;
}
.contact-option.primary-option .eyebrow {
  color: #d9ae82;
}
.contact-option h3 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
}
.contact-option p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 27px;
  color: var(--ink-soft);
}
.contact-option.primary-option p:not(.eyebrow) {
  color: #d8e4dd;
}
.contact-option .button {
  margin-top: auto;
}
.contact-option.primary-option .button {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.contact-option .text-link {
  margin-top: 21px;
}
.contact-option .text-link span {
  color: var(--clay);
}
.contact-details-section {
  background: var(--paper);
}
.clinic-address {
  margin: 26px 0;
  padding: 22px 25px;
  border-left: 3px solid var(--clay);
  background: #f7f1e8;
  color: var(--ink);
  font-style: normal;
  line-height: 1.75;
}
.inline-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--clay);
  text-underline-offset: 4px;
}
.contact-side-card {
  background: #f2dfda !important;
}
.contact-side-card .button {
  margin-top: 18px;
}
@media (max-width: 680px) {
  .contact-options {
    padding: 68px 0;
  }
  .contact-options-grid {
    grid-template-columns: 1fr;
  }
  .contact-option {
    min-height: 0;
    padding: 29px 25px;
  }
  .contact-option .eyebrow {
    margin-bottom: 23px;
  }
  .contact-option .button {
    margin-top: 4px;
  }
  .contact-option .text-link {
    margin-top: 20px;
  }
}

/* Full site navigation in the footer gives visitors a second, clear way to
   move between pages without making the header crowded. */
.site-footer {
  padding: 42px 0;
}
.footer-wrap {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(260px, 1.2fr) minmax(
      220px,
      0.8fr
    );
  align-items: start;
  gap: 30px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 22px;
  font-size: 0.78rem;
  font-weight: 600;
}
.footer-links a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration-color: var(--clay);
}
.footer-details {
  display: grid;
  gap: 8px;
}
.footer-details > br {
  display: none;
}
.footer-meta br {
  display: block;
  content: "";
  margin-top: 7px;
}
.footer-details p {
  margin: 0;
  font-size: 0.78rem;
}
.footer-details .footer-meta {
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-links {
    max-width: 420px;
  }
  .footer-details {
    gap: 7px;
  }
}

/* Trust information and specialist paths. */
.last-updated {
  margin-top: 44px !important;
  color: var(--ink-soft) !important;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Specialist paths fit as a four-card grid on desktop and stack cleanly on smaller screens. */
.specialty-grid {
  grid-template-columns: repeat(4, 1fr);
}
.blue-card {
  background: #e3edf0;
}
.specialty-grid .support-card {
  padding: 28px 25px;
}
.specialty-grid .card-number {
  margin-bottom: 32px;
}
.specialty-grid .support-card h3 {
  font-size: 1.3rem;
}
@media (max-width: 1050px) {
  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .specialty-grid {
    grid-template-columns: 1fr;
  }
}

/* Make the footer's secondary booking link easy to find without competing with the page content. */
.footer-details .text-link {
  font-size: 0.68rem;
  color: var(--ink);
}

/* Mobile comfort pass: the desktop compositions remain intact while small
   screens get more breathing room, reliable wrapping, and touch-friendly
   controls. */
@media (max-width: 680px) {
  body {
    line-height: 1.7;
  }

  .shell {
    width: min(100% - 40px, 1170px);
  }

  .site-header {
    padding: 14px 0;
  }

  .nav-wrap {
    gap: 12px;
  }

  .brand-logo,
  .brand:not(:has(.brand-logo)) {
    width: 168px;
  }

  .brand-logo {
    max-height: 66px;
  }

  .brand:not(:has(.brand-logo)) {
    height: 66px;
  }

  .menu-button {
    flex: 0 0 43px;
    min-height: 43px;
    padding: 6px;
  }

  .site-nav,
  .page-header .site-nav {
    top: 70px;
    right: 20px;
    left: 20px;
    gap: 3px;
    padding: 13px;
  }

  .site-nav a:not(.button) {
    padding: 10px 8px;
  }

  .button {
    min-height: 48px;
    padding: 13px 17px;
    line-height: 1.25;
    text-align: center;
  }

  .hero {
    padding: 116px 0 62px;
  }

  .hero:after,
  .orb-one {
    display: none;
  }

  .hero-grid,
  .split-heading,
  .approach-grid,
  .about-grid,
  .session-grid,
  .faq-grid,
  .inquiry-wrap,
  .content-grid {
    gap: 32px;
  }

  /* The desktop homepage rule is declared later in this file, so repeat the
     one-column layout here to keep the hero from being squeezed into two
     columns on phones. */
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .hero-image-wrap {
    min-width: 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.1rem, 10vw, 2.45rem);
    line-height: 1.16;
    letter-spacing: -0.03em;
  }

  .hero-intro,
  .page-intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
    margin: 26px 0;
  }

  .hero-actions .text-link {
    align-self: flex-start;
    padding: 7px 0;
  }

  .assurance {
    gap: 10px;
    font-size: 0.86rem;
  }

  .hero-image-wrap {
    width: min(100%, 390px);
    padding: 12px 0 0 12px;
  }

  .hero-image-frame {
    height: min(112vw, 420px);
    min-height: 330px;
    border-radius: 150px 150px 10px 10px;
  }

  .credential-card {
    right: 10px;
    left: auto;
    bottom: 12px;
    min-width: 0;
    max-width: calc(100% - 20px);
    padding: 12px 14px;
  }

  .section-pad,
  .intro-section,
  .page-content {
    padding: 64px 0;
  }

  .inquiry-section,
  .contact-page .inquiry-section,
  .contact-options {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .support-grid,
  .life-gallery,
  .contact-options-grid {
    gap: 16px;
  }

  .support-card,
  .specialty-grid .support-card {
    min-height: 0;
    padding: 27px 23px;
  }

  .support-card .card-number,
  .specialty-grid .card-number {
    margin-bottom: 22px;
  }

  .support-card h3,
  .specialty-grid .support-card h3 {
    font-size: 1.34rem;
  }

  .portrait-block {
    height: min(116vw, 405px);
    min-height: 315px;
    border-radius: 12px 12px 120px 12px;
  }

  .history-card {
    box-shadow: 9px 11px 0 #d6c4ae;
    transform: rotate(1deg);
  }

  .history-card figcaption,
  .life-gallery figcaption {
    padding: 15px 16px;
  }

  .session-list article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 19px 0;
  }

  .accordion summary,
  .faq-page summary {
    padding: 19px 0;
    font-size: 1.02rem;
    line-height: 1.45;
  }

  .contact-form {
    gap: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    min-height: 44px;
    padding: 12px 0;
  }

  .booking-actions {
    width: 100%;
    align-items: stretch;
  }

  .booking-actions .button,
  .page-footer-links .button {
    width: 100%;
  }

  .side-card,
  .callout,
  .feature-list article,
  .clinic-address {
    padding: 23px 21px;
  }

  .page-footer-links {
    gap: 12px;
  }

  .footer-wrap {
    gap: 25px;
  }

  .footer-brand .brand-logo {
    width: 178px;
    max-height: 59px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
  }

  .footer-links a {
    padding: 3px 0;
  }

  .footer-details {
    gap: 10px;
  }

  .footer-details p,
  .footer-details .text-link {
    font-size: 0.8rem;
    line-height: 1.6;
    letter-spacing: 0.025em;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .shell {
    width: min(100% - 32px, 1170px);
  }

  .brand-logo,
  .brand:not(:has(.brand-logo)) {
    width: 150px;
  }

  .hero {
    padding-top: 108px;
  }

  .support-card,
  .specialty-grid .support-card,
  .contact-option {
    padding: 24px 20px;
  }
}
