:root {
  --forest: #31463c;
  --forest-deep: #1f2d27;
  --clay: #b97a60;
  --clay-strong: #8a4f39;
  --sand: #e5dccd;
  --mist: #e8efe8;
  --paper: #fbfaf6;
  --ink: #1f2623;
  --white: #ffffff;
  --line: rgba(31, 38, 35, 0.12);
  --shadow: 0 26px 70px rgba(17, 24, 21, 0.12);
  --safe-top: env(safe-area-inset-top, 0px);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--forest-deep);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
}

.btn,
.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn:hover,
.nav__cta:hover {
  transform: translateY(-1px);
}

.btn--light,
.nav__cta {
  background: var(--white);
  color: var(--forest-deep);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn--dark {
  background: var(--forest-deep);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  border-color: rgba(31, 38, 35, 0.16);
  color: var(--ink);
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding-top: var(--safe-top);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 92px;
}

.brand {
  color: var(--white);
  flex: 0 1 auto;
  min-width: 0;
  margin-right: auto;
}

.brand svg {
  width: 296px;
  height: auto;
  fill: currentColor;
  display: block;
}

.brand text {
  fill: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* Menu list (top-level) */
.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__menu > li {
  position: relative;
}
.site-nav__menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.005em;
}
.site-nav__menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-nav__menu > li > a:hover::after,
.site-nav__menu > li.current-menu-item > a::after,
.site-nav__menu > li.current-menu-parent > a::after,
.site-nav__menu > li.current-menu-ancestor > a::after { transform: scaleX(1); }

/* Dropdown caret — clean SVG chevron that rotates on hover */
.site-nav__menu > li.menu-item-has-children > a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  order: 2;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'><path d='M1.5 3.5 L5 7 L8.5 3.5' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'><path d='M1.5 3.5 L5 7 L8.5 3.5' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
  opacity: 0.85;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s ease;
}
.site-nav__menu > li.menu-item-has-children:hover > a::before,
.site-nav__menu > li.menu-item-has-children:focus-within > a::before {
  transform: rotate(180deg);
  opacity: 1;
}

/* Sub-menu */
.site-nav .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, -6px);
  min-width: 250px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  box-shadow: 0 24px 48px -18px rgba(15, 28, 22, 0.28),
              0 4px 12px -4px rgba(15, 28, 22, 0.12);
  border: 1px solid rgba(31, 45, 39, 0.06);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.2s;
  z-index: 30;
  font-size: 0.95rem;
}
.site-nav .sub-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
  border-top: 1px solid rgba(31, 45, 39, 0.06);
  border-left: 1px solid rgba(31, 45, 39, 0.06);
  border-radius: 3px 0 0 0;
}
/* Hover bridge so the dropdown doesn't close when crossing the gap */
.site-nav__menu > li.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}
.site-nav__menu > li.menu-item-has-children:hover > .sub-menu,
.site-nav__menu > li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-nav .sub-menu li { list-style: none; }
.site-nav .sub-menu a {
  display: block;
  padding: 11px 16px;
  border-radius: 10px;
  color: var(--forest-deep);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.18s ease;
}
.site-nav .sub-menu a:hover,
.site-nav .sub-menu li.current-menu-item > a {
  background: var(--sand);
  color: var(--forest-deep);
  padding-left: 20px;
}

.nav__cta {
  margin-left: 12px;
  min-height: 0;
  padding: 11px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}

/* Hide the JS-injected mobile toggle on desktop */
.submenu-toggle { display: none; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-close {
  display: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(840px, 88svh);
  overflow: hidden;
  background: var(--forest-deep);
}

.hero__image,
.hero__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
}

.hero__scrim {
  background:
    linear-gradient(90deg, rgba(15, 24, 21, 0.78) 0%, rgba(15, 24, 21, 0.48) 42%, rgba(15, 24, 21, 0.2) 100%),
    linear-gradient(180deg, rgba(15, 24, 21, 0.08) 0%, rgba(15, 24, 21, 0.52) 100%);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: 32px;
  align-items: end;
  min-height: min(840px, 88svh);
  padding: 132px 0 54px;
}

.hero__copy {
  max-width: 720px;
  color: var(--white);
}

.hero__copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero__copy h1 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.hero__lede {
  max-width: 34rem;
  margin-top: 18px;
  font-size: 1.16rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero__panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.hero__panel-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero__panel-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero__panel-list li {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1rem;
}

.welcome,
.contact {
  padding: 100px 0;
}

.services,
.quote-band {
  padding: 110px 0;
}

.experience {
  padding: 110px 0;
  background: var(--forest-deep);
}

.welcome {
  background: var(--white);
}

.welcome__grid,
.experience__grid,
.quote-band__grid,
.contact__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.section-tag {
  color: var(--clay-strong);
}

.section-tag--light {
  color: rgba(255, 255, 255, 0.65);
}

.services .section-tag--light {
  color: var(--clay-strong);
}

.welcome__copy h2,
.section-head h2,
.experience__intro h2,
.contact__copy h2 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.welcome__copy > p:not(.section-tag),
.section-head > p:not(.section-tag),
.experience__intro > p:not(.section-tag),
.contact__copy > p:not(.section-tag) {
  margin-top: 18px;
  font-size: 1.05rem;
  color: rgba(31, 38, 35, 0.74);
}

.welcome__points {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.welcome__points article {
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}

.welcome__points h3,
.service-card__body h3,
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.welcome__points p,
.service-card__body p,
.step-card p,
.contact__details p {
  margin-top: 8px;
  color: rgba(31, 38, 35, 0.72);
}

.welcome__media {
  position: relative;
  min-height: 620px;
}

.welcome__primary,
.welcome__secondary {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.welcome__primary {
  inset: 0 68px 120px 0;
}

.welcome__secondary {
  inset: auto 0 0 110px;
  height: 240px;
}

.welcome__primary img,
.welcome__secondary img,
.service-card img,
.experience__photo img,
.quote-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services {
  background: var(--mist);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.service-card {
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card img {
  height: 280px;
}

.service-card__body {
  padding: 28px;
}

.service-card__body span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--clay-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.step-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-card--featured {
  transform: none;
}

.experience__intro {
  color: var(--white);
}

.experience__intro .section-tag {
  color: rgba(255, 255, 255, 0.68);
}

.experience__intro > p:not(.section-tag) {
  color: rgba(255, 255, 255, 0.72);
}

.experience__photo {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 28px;
}

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

.step-card {
  min-height: 220px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.step-card p {
  color: rgba(255, 255, 255, 0.72);
}

.quote-band {
  background: linear-gradient(180deg, var(--paper) 0%, var(--sand) 100%);
}

.quote-band__copy blockquote {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.quote-band__author {
  margin-top: 18px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(31, 38, 35, 0.6);
}

.quote-band__media {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  min-height: 560px;
}

.quote-band__media img {
  position: absolute;
  inset: 0;
}

.contact {
  background: var(--white);
}

.contact__shell {
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(49, 70, 60, 0.06) 0%, rgba(185, 122, 96, 0.08) 100%);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact__details {
  display: grid;
  gap: 20px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.contact__details span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}

.site-footer {
  padding: 72px 0 28px;
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.76);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 3.65fr);
  gap: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}

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

.footer__column h3 a:hover {
  color: var(--sand);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 360px;
}

.footer__connect {
  margin-top: 22px;
}

.site-footer .brand {
  display: inline-flex;
}

.site-footer .brand svg {
  width: 300px;
}

.footer__tag {
  margin-top: 16px;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.82);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.footer__social a:hover {
  transform: translateY(-1px);
  background: var(--sand);
  color: var(--forest-deep);
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__column h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__column a,
.footer__column span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
}

.footer__column a:hover,
.footer__bottom a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer__bottom a {
  color: inherit;
}

@media (max-width: 1130px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 25;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 88px 36px 48px;
    background: rgba(31, 45, 39, 0.97);
    backdrop-filter: blur(14px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  }

  .menu-close {
    position: absolute;
    top: calc(var(--safe-top) + 22px);
    right: 24px;
    display: block;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
  }

  .menu-close::before,
  .menu-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: currentColor;
    transform-origin: center;
  }

  .menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .menu-close:hover {
    background: rgba(255, 255, 255, 0.14);
  }

  body.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.2s ease;
  }

  .site-nav__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .site-nav__menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-nav__menu > li > a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 18px 12px;
    color: var(--paper);
  }
  .site-nav__menu > li > a::after { display: none; }
  .site-nav__menu > li.menu-item-has-children > a::before { display: none; }

  /* Mobile: parent <li> becomes a row with the link + the toggle button beside it */
  .site-nav__menu > li.menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  /* Toggle button (injected by JS) */
  .submenu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--paper);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
  }
  .submenu-toggle:hover { background: rgba(255, 255, 255, 0.1); }
  .submenu-toggle__icon {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    transform-origin: center;
    transition: transform 0.2s ease;
  }
  .menu-item-has-children.is-open > .submenu-toggle .submenu-toggle__icon {
    transform: rotate(-135deg) translate(-2px, -2px);
  }

  /* Mobile dropdown: accordion */
  .site-nav .sub-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 4px 0 12px 20px;
    margin: 0 0 0 12px;
    border-left: 2px solid rgba(229, 220, 205, 0.25);
    border-radius: 0;
    min-width: 0;
    width: calc(100% - 12px);
    flex-basis: 100%;
  }
  .site-nav .sub-menu::before { display: none; }
  .site-nav__menu > li.menu-item-has-children.is-open > .sub-menu { display: block; }
  .site-nav .sub-menu a {
    color: rgba(251, 250, 246, 0.78);
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 0;
  }
  .site-nav .sub-menu a:hover,
  .site-nav .sub-menu li.current-menu-item a {
    background: transparent;
    color: var(--sand);
  }
  /* Desktop chevron isn't needed on mobile — toggle button replaces it */
  .site-nav__menu > li.menu-item-has-children > a::after { display: none !important; }

  .nav__cta {
    align-self: flex-start;
    margin: 28px 0 0 12px;
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .hero__layout,
  .welcome__grid,
  .experience__grid,
  .quote-band__grid,
  .contact__shell {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    max-width: 420px;
  }

  .page-hero__layout {
    grid-template-columns: 1fr;
  }

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

  .service-card--featured {
    transform: none;
  }

  .contact__details {
    padding-left: 0;
    border-left: 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__sitemap {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 32px);
  }

  .header__inner {
    min-height: 78px;
  }

  .brand svg {
    width: 248px;
  }

  .hero {
    min-height: auto;
  }

  .hero__layout {
    min-height: auto;
    padding: 104px 0 28px;
    gap: 20px;
  }

  .hero__copy h1 {
    font-size: 2.7rem;
    max-width: 11ch;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero__layout {
    min-height: auto;
    padding: 104px 0 28px;
  }

  .hero__lede {
    font-size: 1.02rem;
  }

  .hero__actions,
  .contact__actions {
    flex-direction: column;
  }

  .hero__actions .btn,
  .contact__actions .btn,
  .nav__cta {
    width: 100%;
  }

  .hero__panel {
    max-width: none;
  }

  .welcome,
  .services,
  .experience,
  .quote-band,
  .contact {
    padding: 72px 0;
  }

  .welcome__media {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .page-enhance__media {
    min-height: auto;
  }

  .welcome__primary,
  .welcome__secondary {
    position: static;
    inset: auto;
    height: auto;
  }

  .welcome__primary img,
  .welcome__secondary img {
    aspect-ratio: 4 / 3;
  }

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

  .quote-band__media {
    min-height: 340px;
  }

  .contact__shell {
    padding: 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__sitemap {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .site-footer .brand svg {
    width: 252px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ==========================================================================
   Interior page templates (page.php / index.php)
   ========================================================================== */
.page-header--slim {
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--paper);
  padding: clamp(96px, 14vw, 140px) 0 clamp(36px, 5vw, 56px);
  position: relative;
  isolation: isolate;
}
.page-header--slim .container { display: flex; flex-direction: column; gap: 14px; }
.page-header--slim .eyebrow { color: var(--sand); }
.page-header--slim .eyebrow::before { background: var(--sand); }
.page-header--slim h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--paper);
  max-width: 880px;
}
.page-header__lede {
  max-width: 42rem;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(251, 250, 246, 0.82);
}
.page-content {
  background: var(--paper);
  padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 9vw, 110px);
}

.page-content__shell { max-width: 820px; position: relative; }
.page-content__shell::before {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: var(--clay);
  margin: 0 0 28px;
}
.page-article { font-size: 1.05rem; line-height: 1.75; color: var(--ink); }
.page-article > * + * { margin-top: 1.1em; }
.page-article h2, .page-article h3, .page-article h4 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em;
  color: var(--forest-deep); margin-top: 1.6em;
}
.page-article h2 { font-size: 1.75rem; }
.page-article h3 { font-size: 1.35rem; }
.page-article h4 { font-size: 1.15rem; }
.page-article a { color: var(--clay); text-decoration: underline; text-underline-offset: 3px; }
.page-article ul, .page-article ol { padding-left: 1.4em; }
.page-article blockquote {
  border-left: 3px solid var(--clay); padding: 0.25em 0 0.25em 1.2em;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--forest-deep);
}
.page-article img { border-radius: 14px; }

.post-list { display: grid; gap: 48px; }
.post-list__item { border-bottom: 1px solid var(--line); padding-bottom: 32px; }
.post-list__item h2 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--forest-deep); margin-bottom: 6px;
}
.post-list__meta {
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(31, 38, 35, 0.6); margin-bottom: 14px;
}

/* Contact Form 7 light reset */
.contact__form .wpcf7-form p { margin: 0 0 14px; }
.contact__form .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]) {
  width: 100%; border: 1px solid var(--line); background: var(--white);
  border-radius: 10px; padding: 12px 14px; font: inherit; color: var(--ink);
}
.contact__form .wpcf7-form-control[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px; border: 0;
  background: var(--forest-deep); color: var(--paper);
  font: 600 0.95rem/1 var(--font-display); letter-spacing: 0.04em; cursor: pointer;
}
.contact__form--placeholder {
  border: 1px dashed var(--line); border-radius: 12px;
  padding: 18px 20px; background: rgba(255, 255, 255, 0.6);
  color: rgba(31, 38, 35, 0.7); font-size: 0.95rem;
}

/* WordPress nav menu list reset (header + footer share these patterns) */
.site-nav li,
.footer__column li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav,
.footer__column ul {
  padding-left: 0;
}

/* ── Contact Page ─────────────────────────────────────────────────────────── */
.page-header__lede {
  color: rgba(251, 250, 246, 0.78);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  max-width: 640px;
  margin: 8px 0 0;
}

.contact-page {
  background: var(--paper);
  padding: clamp(56px, 9vw, 110px) 0 clamp(72px, 12vw, 140px);
}
.contact-page__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-page__shell { grid-template-columns: 1fr; gap: 56px; }
}

/* Form column */
.contact-page__form {
  background: #fff;
  border: 1px solid rgba(31,38,35,0.07);
  border-radius: 18px;
  padding: clamp(32px, 4vw, 48px);
  box-shadow: 0 24px 48px -28px rgba(31,46,60,0.18);
}
.contact-page__form-head { margin-bottom: 28px; }
.contact-page__form-head .section-tag { margin-bottom: 10px; }
.contact-page__form-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.05rem);
  font-weight: 700;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
}

/* Info column */
.contact-page__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-page__card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(31,38,35,0.07);
  border-radius: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.contact-page__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -20px rgba(31,46,60,0.25);
}
.contact-page__card-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sand);
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-page__card > div:last-child { min-width: 0; }
.contact-page__card h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 2px 0 6px;
}
.contact-page__card p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
}
.contact-page__card a {
  color: var(--forest-deep);
  text-decoration: none;
  font-weight: 500;
}
.contact-page__card a:hover { color: var(--clay); }
.contact-page__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--clay) !important;
  letter-spacing: 0.02em;
}
.contact-page__cta {
  align-self: stretch;
  text-align: center;
  margin-top: 8px;
}

/* CF7 form styling on contact page */
.contact-page__form .wpcf7 { margin: 0; }
.contact-page__form .wpcf7-form > p { margin: 0 0 18px; }
.contact-page__form .wpcf7-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(31,38,35,0.65);
  margin-bottom: 8px;
}
.contact-page__form .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]) {
  width: 100%;
  border: 1px solid rgba(31,38,35,0.12);
  background: var(--paper);
  border-radius: 10px;
  padding: 13px 15px;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.contact-page__form textarea.wpcf7-form-control { min-height: 140px; resize: vertical; }
.contact-page__form .wpcf7-form-control:focus {
  outline: none;
  background: #fff;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(49,70,60,0.12);
}
.contact-page__form .wpcf7-form-control[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: 999px;
  border: 0;
  background: var(--forest-deep);
  color: var(--paper);
  font: 600 0.95rem/1 var(--font-display);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.contact-page__form .wpcf7-form-control[type="submit"]:hover { background: var(--forest); }
.contact-page__form .wpcf7-spinner { margin-left: 12px; }
.contact-page__form .wpcf7-response-output {
  border: 1px solid rgba(31,38,35,0.15) !important;
  border-radius: 10px;
  padding: 12px 16px !important;
  margin: 16px 0 0 !important;
  font-size: 0.92rem;
}

/* ──────────────────────────────────────────────────────────────────────────
   PAGE HERO LEDE (interior pages)
   ────────────────────────────────────────────────────────────────────────── */
.page-header__lede {
  color: rgba(251, 250, 246, 0.78);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  max-width: 660px;
  margin: 8px 0 0;
}

/* ──────────────────────────────────────────────────────────────────────────
   PAGE ARTICLE PROSE (long-form content from the_content())
   ────────────────────────────────────────────────────────────────────────── */
.page-article {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
}
.page-article > * + * { margin-top: 1.1em; }
.page-article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin-top: 2em;
  margin-bottom: 0.4em;
  line-height: 1.2;
}
.page-article h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--forest);
  margin-top: 1.6em;
  margin-bottom: 0.3em;
  line-height: 1.3;
}
.page-article ul, .page-article ol {
  padding-left: 22px;
  margin: 1em 0;
}
.page-article li { margin: 0.4em 0; }
.page-article a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(49,70,60,0.3);
  transition: color 0.15s, text-decoration-color 0.15s;
}
.page-article a:hover { color: var(--clay); text-decoration-color: currentColor; }
.page-article blockquote {
  border-left: 3px solid var(--clay);
  padding: 4px 0 4px 22px;
  margin: 1.4em 0;
  color: var(--forest-deep);
  font-style: italic;
}

.page-hero {
  min-height: min(620px, 72svh);
}

.page-hero__layout {
  min-height: min(620px, 72svh);
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 122px 0 46px;
  align-items: end;
}

.page-hero__copy {
  max-width: 740px;
}

.page-hero__copy h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.page-enhance {
  padding-top: clamp(40px, 6vw, 72px);
}

.page-enhance__media {
  min-height: 580px;
}

.page-enhance--single-image .welcome__primary {
  inset: 0;
}

.page-enhance--single-image .welcome__secondary {
  display: none;
}

.page-faq-block {
  background: var(--paper);
  border-top: 1px solid rgba(31, 38, 35, 0.06);
}

.page-faq-block__shell {
  max-width: 920px;
  margin: 0 auto;
}

.page-faq-block__head {
  margin-bottom: 36px;
}

/* ──────────────────────────────────────────────────────────────────────────
   SERVICES OVERVIEW GRID
   ────────────────────────────────────────────────────────────────────────── */
.services-grid {
  background: var(--paper);
  padding: clamp(56px, 9vw, 110px) 0;
}
.services-grid__intro { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.services-grid__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin: 12px 0 14px;
  line-height: 1.18;
}
.services-grid__intro p {
  color: rgba(31,38,35,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}
.services-grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(31,38,35,0.07);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 44px -28px rgba(15,28,22,0.3);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--sand);
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 28px 0;
}
.service-card__body { padding: 20px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 10px;
  line-height: 1.25;
}
.service-card__body p {
  color: rgba(31,38,35,0.72);
  line-height: 1.6;
  font-size: 0.97rem;
  margin: 0 0 18px;
  flex: 1;
}
.service-card__more {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clay-strong);
  letter-spacing: 0.02em;
}

/* ──────────────────────────────────────────────────────────────────────────
   CONDITIONS GRID
   ────────────────────────────────────────────────────────────────────────── */
.conditions-grid {
  background: var(--paper);
  padding: clamp(56px, 9vw, 110px) 0;
}
.conditions-grid__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 820px) {
  .conditions-grid__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .conditions-grid__list {
    grid-template-columns: 1fr;
  }
}
.condition-card {
  display: block;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid rgba(31,38,35,0.07);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.condition-card:hover {
  transform: translateY(-2px);
  border-color: rgba(185,122,96,0.4);
  box-shadow: 0 16px 30px -22px rgba(15,28,22,0.25);
}
.condition-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.condition-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 10px;
  line-height: 1.3;
}
.condition-card p {
  margin: 0 0 14px;
  color: rgba(31,38,35,0.7);
  font-size: 0.93rem;
  line-height: 1.55;
}
.condition-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.condition-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: rgba(31,38,35,0.75);
  margin: 4px 0;
  line-height: 1.45;
}
.condition-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}
.condition-card__more {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clay);
  letter-spacing: 0.02em;
}

/* ──────────────────────────────────────────────────────────────────────────
   CTA BAND (reusable across pages)
   ────────────────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--paper);
  padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px);
  position: relative;
}
.cta-band .container {
  position: relative;
  background: linear-gradient(135deg, var(--sand) 0%, #efe6d3 100%);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 56px);
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(31, 45, 39, 0.3);
}
.cta-band .container::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 122, 96, 0.18) 0%, rgba(185, 122, 96, 0) 70%);
  pointer-events: none;
}
.cta-band .container::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 70, 60, 0.12) 0%, rgba(49, 70, 60, 0) 70%);
  pointer-events: none;
}
.cta-band__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 820px) {
  .cta-band__shell { grid-template-columns: 1fr; gap: 28px; }
}
.cta-band__copy .section-tag { color: var(--clay); margin-bottom: 12px; }
.cta-band__copy .section-tag::before { background: var(--clay); }
.cta-band__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin: 0 0 12px;
  line-height: 1.2;
  max-width: 680px;
}
.cta-band__copy p {
  color: rgba(31, 38, 35, 0.78);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
  max-width: 620px;
}
.cta-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-band__actions .btn--dark {
  background: var(--forest-deep);
  color: var(--paper);
  border: 1px solid var(--forest-deep);
}
.cta-band__actions .btn--dark:hover {
  background: var(--forest);
  border-color: var(--forest);
}
.cta-band__actions .btn--outline {
  background: transparent;
  border-color: var(--forest-deep);
  color: var(--forest-deep);
}
.cta-band__actions .btn--outline:hover {
  background: var(--forest-deep);
  color: var(--paper);
}

/* ──────────────────────────────────────────────────────────────────────────
   HOMEPAGE: WHY US + CONDITIONS TEASER (new sections)
   ────────────────────────────────────────────────────────────────────────── */
.why-us {
  background: var(--paper);
  padding: clamp(56px, 8vw, 100px) 0;
  border-top: 1px solid rgba(31,38,35,0.06);
}
.why-us__shell { max-width: 1100px; margin: 0 auto; }
.why-us__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.why-us__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin: 12px 0 14px;
  line-height: 1.2;
}
.why-us__head p {
  color: rgba(31,38,35,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-us__item {
  text-align: center;
  padding: 8px;
}
.why-us__item-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--forest-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-us__item h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 8px;
}
.why-us__item p {
  color: rgba(31,38,35,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.conditions-teaser {
  background: var(--sand);
  padding: clamp(56px, 8vw, 100px) 0;
}
.conditions-teaser__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .conditions-teaser__head { grid-template-columns: 1fr; }
}
.conditions-teaser__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin: 12px 0 0;
  line-height: 1.2;
  max-width: 600px;
}
.conditions-teaser__head .btn { white-space: nowrap; }
.conditions-teaser__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.conditions-teaser__chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: #fff;
  border-radius: 999px;
  color: var(--forest-deep);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color 0.15s, transform 0.15s, color 0.15s;
}
.conditions-teaser__chip:hover {
  border-color: var(--clay);
  color: var(--clay);
  transform: translateY(-1px);
}

/* ---------- Blog: post grid (index) + single + related ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 36px;
  margin-top: 8px;
}
.post-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 24px rgba(31, 45, 39, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(31, 45, 39, 0.12);
}
.post-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}
.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.post-card:hover .post-card__media img {
  transform: scale(1.04);
}
.post-card__media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sand), #d4c8b1);
}
.post-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.post-card__meta {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  margin: 0;
}
.post-card__title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--forest-deep);
}
.post-card__title a {
  color: inherit;
  text-decoration: none;
}
.post-card__title a:hover {
  color: var(--clay);
}
.post-card__excerpt {
  font-size: 0.95rem;
  color: rgba(31, 45, 39, 0.75);
  line-height: 1.55;
}
.post-card__more {
  margin-top: auto;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  font-size: 0.92rem;
  align-self: flex-start;
}
.post-card__more:hover {
  color: var(--clay);
}

.post-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.post-pagination .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.post-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--forest-deep);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(31, 45, 39, 0.08);
}
.post-pagination .page-numbers.current,
.post-pagination .page-numbers:hover {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
}

.patient-stories-index__intro {
  margin-bottom: clamp(42px, 6vw, 72px);
}

.patient-stories-index__intro .page-article h2:first-child {
  margin-top: 0;
}

.patient-stories-index__grid {
  margin-top: 0;
}

.patient-stories-index__empty {
  color: rgba(31, 45, 39, 0.72);
}

/* Single post hero image — sits cleanly in the paper area below the green hero,
   no overlap/clipping, with a subtle lift via shadow only. */
.post-hero-image {
  background: var(--paper);
  padding: clamp(28px, 4vw, 44px) 0 clamp(8px, 1.5vw, 16px);
}
.post-hero-image__frame {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--sand);
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(31, 45, 39, 0.06);
}
.post-hero-image__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* On single posts, tighten the page-content bottom and the related-posts top
   so the transition between the article and the related grid is cohesive. */
.single .page-content {
  padding-bottom: clamp(28px, 4vw, 48px);
}
.single .page-content__shell::before { display: none; }

/* Single article typography tweaks */
.post-article { font-size: 1.05rem; line-height: 1.75; color: var(--ink); }
.post-article p { margin: 0 0 1.4em; }
.post-article p:last-child { margin-bottom: 0; }
.post-article p:empty { display: none; }
.post-article ul,
.post-article ol { margin: 0 0 1.4em; padding-left: 1.4em; }
.post-article li + li { margin-top: 0.5em; }
.post-article li > p { margin: 0; }
.post-article img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 28px auto;
  display: block;
}
.post-article figure {
  margin: 28px 0;
}
.post-article figcaption {
  font-size: 0.85rem;
  color: rgba(31, 45, 39, 0.6);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}
.post-article h2,
.post-article h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
  margin-top: 1.8em;
  margin-bottom: 0.4em;
}
.post-article h2 { font-size: 1.6rem; }
.post-article h3 { font-size: 1.25rem; }
.post-article a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.post-article a:hover { color: var(--clay); }
.post-meta {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
}

/* Related posts section — tighter top spacing, soft divider above */
.related-posts {
  background: var(--paper);
  padding: clamp(40px, 5vw, 64px) 0 clamp(48px, 6vw, 72px);
  position: relative;
}
.related-posts::before {
  content: "";
  display: block;
  width: clamp(220px, 36%, 360px);
  height: 1px;
  background: rgba(31, 45, 39, 0.12);
  margin: 0 auto clamp(32px, 4vw, 48px);
}
.related-posts__head {
  text-align: center;
  margin-bottom: clamp(28px, 3.5vw, 40px);
}
.related-posts__head h2 {
  margin: 6px 0 0;
  color: var(--forest-deep);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}
.post-grid--related {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

@media (max-width: 720px) {
  .post-grid { gap: 24px; }
  .post-hero-image__frame { aspect-ratio: 4 / 3; border-radius: 16px; }
  .post-hero-image { padding: 24px 0 8px; }
}

/* ==========================================================================
   Condition detail template
   ========================================================================== */
.condition-hero {
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--paper);
  padding: clamp(120px, 16vw, 168px) 0 clamp(56px, 7vw, 88px);
  border-bottom: none;
  position: relative;
  isolation: isolate;
}
.condition-hero .eyebrow { color: var(--sand); }
.condition-hero .eyebrow::before { background: var(--sand); }
.condition-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.condition-hero__copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  margin: 12px 0 18px;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.condition-hero__lede {
  font-size: 1.125rem;
  color: rgba(251, 250, 246, 0.88);
  max-width: 52ch;
}
.condition-hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.condition-hero__media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--forest) 0%, var(--clay) 100%);
  position: relative;
  box-shadow: 0 20px 50px rgba(31, 45, 39, 0.18);
}
.condition-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.condition-hero__media--placeholder {
  background:
    radial-gradient(at 25% 30%, rgba(229, 220, 205, 0.45) 0%, transparent 55%),
    radial-gradient(at 75% 75%, rgba(185, 122, 96, 0.45) 0%, transparent 55%),
    linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
}
.condition-hero__placeholder-shape {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(251, 250, 246, 0.45), rgba(251, 250, 246, 0) 60%);
  filter: blur(2px);
}

.condition-section {
  padding: 80px 0;
}
.condition-section--intro { background: var(--paper); }
.condition-section--symptoms { background: var(--sand); }
.condition-section--help { background: var(--paper); }
.condition-section--steps { background: var(--forest-deep); color: var(--paper); }
.condition-section--faq { background: var(--paper); }

.condition-section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--forest-deep);
  margin: 0 0 24px;
  max-width: 24ch;
}
.condition-section__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: start;
}
.condition-section__prose p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 0 16px;
  color: var(--forest-deep);
}
.condition-section__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.condition-section__intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 8px 0 14px;
  color: inherit;
}
.condition-section--steps .condition-section__intro h2,
.condition-section--steps .section-tag { color: var(--paper); }

.symptom-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.symptom-grid__item {
  background: var(--paper);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(31, 45, 39, 0.08);
  box-shadow: 0 4px 14px rgba(31, 45, 39, 0.04);
}
.symptom-grid__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
}
.symptom-grid__label {
  font-weight: 600;
  color: var(--forest-deep);
}

.condition-help__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.condition-help__copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--forest-deep);
  margin: 8px 0 14px;
}
.condition-help__lede {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--forest-deep);
  opacity: 0.9;
}
.condition-help__points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.condition-help__points li {
  position: relative;
  padding-left: 30px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--forest-deep);
}
.condition-help__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 4px rgba(185, 122, 96, 0.2);
}
.condition-help__goal {
  background: var(--forest);
  color: var(--paper);
  border-radius: 18px;
  padding: 32px;
  position: sticky;
  top: 96px;
}
.condition-help__goal .section-tag { color: var(--sand); }
.condition-help__goal-text {
  font-size: 1.25rem;
  line-height: 1.5;
  font-style: italic;
  margin: 12px 0 0;
}

.step-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step-grid__item {
  background: rgba(251, 250, 246, 0.06);
  border: 1px solid rgba(251, 250, 246, 0.12);
  border-radius: 18px;
  padding: 28px 24px;
}
.step-grid__num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--paper);
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.step-grid__item h3 {
  color: var(--paper);
  margin: 0 0 8px;
  font-size: 1.125rem;
}
.step-grid__item p {
  color: rgba(251, 250, 246, 0.85);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.condition-faq__shell { max-width: 880px; margin: 0 auto; }
.faq-list { display: grid; gap: 14px; }
.faq-list__item {
  background: var(--sand);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 45, 39, 0.08);
}
.faq-list__q {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--forest-deep);
  list-style: none;
  position: relative;
  padding-right: 56px;
}
.faq-list__q::-webkit-details-marker { display: none; }
.faq-list__q::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--clay);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-list__item[open] .faq-list__q::after { content: "−"; }
.faq-list__a {
  padding: 0 24px 22px;
  color: var(--forest-deep);
  line-height: 1.7;
}

.condition-final {
  background: var(--sand);
  color: var(--forest-deep);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid rgba(31, 45, 39, 0.08);
}
.condition-final__shell { max-width: 720px; margin: 0 auto; }
.condition-final h2 {
  color: var(--forest-deep);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 16px;
}
.condition-final p {
  color: var(--forest-deep);
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}
.condition-final__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .symptom-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .condition-section__shell,
  .condition-help__shell,
  .condition-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .condition-help__goal { position: static; }
}
@media (max-width: 640px) {
  .condition-hero { padding: 64px 0 48px; }
  .condition-section { padding: 60px 0; }
  .symptom-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step-grid { grid-template-columns: 1fr; }
  .condition-final { padding: 60px 0; }
}

/* ==========================================================================
   Condition detail refresh
   ========================================================================== */
.condition-hero {
  min-height: min(560px, 62svh);
}

.condition-hero.hero--no-image {
  background:
    radial-gradient(circle at top right, rgba(229, 220, 205, 0.18) 0%, rgba(229, 220, 205, 0) 34%),
    linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
}

.condition-hero.hero--no-image .hero__scrim {
  background: transparent;
}

.condition-hero .hero__layout {
  min-height: min(560px, 62svh);
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.62fr);
  gap: 28px;
  padding: 102px 0 30px;
}

.condition-hero .hero__copy h1 {
  max-width: 8ch;
  font-size: clamp(2.45rem, 4.5vw, 3.95rem);
}

.condition-hero .hero__lede {
  max-width: 32rem;
}

.condition-hero__panel {
  align-self: end;
  padding: 24px;
}

.condition-hero__panel .hero__panel-list {
  margin-top: 14px;
}

.condition-hero__panel .hero__panel-list li {
  padding: 12px 0;
}

.condition-story .welcome__copy {
  max-width: 680px;
}

.condition-story .welcome__copy > p:not(.section-tag) {
  max-width: 62ch;
}

.condition-story__media {
  min-height: 600px;
}

.condition-story__goal {
  padding: 28px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.condition-story__goal .section-tag {
  color: rgba(251, 250, 246, 0.68);
}

.condition-story__goal .section-tag::before {
  background: rgba(251, 250, 246, 0.68);
}

.condition-story__goal p:not(.section-tag) {
  margin: 12px 0 0;
  color: rgba(251, 250, 246, 0.9);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.condition-story__placeholder {
  background:
    radial-gradient(circle at 28% 25%, rgba(185, 122, 96, 0.18) 0%, rgba(185, 122, 96, 0) 42%),
    linear-gradient(135deg, rgba(49, 70, 60, 0.16) 0%, rgba(31, 45, 39, 0.08) 100%);
}

.condition-signs {
  border-top: 1px solid rgba(31, 38, 35, 0.06);
}

.condition-signs__head {
  display: block;
  margin-bottom: 30px;
}

.condition-signs__head h2 {
  max-width: 620px;
}

.condition-signs__sub {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(31, 38, 35, 0.72);
  font-size: 1.02rem;
  line-height: 1.65;
}

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

.condition-signs__item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 38, 35, 0.08);
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 16px 36px -30px rgba(31, 45, 39, 0.28);
  text-align: center;
}

.condition-signs__icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  margin-bottom: 16px;
}

.condition-signs__item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
}

.condition-help__shell {
  align-items: start;
}

.condition-help__content {
  display: grid;
  gap: 18px;
}

.condition-help__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.condition-help__list li {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 38, 35, 0.08);
  box-shadow: 0 20px 40px -34px rgba(31, 45, 39, 0.25);
  color: rgba(31, 38, 35, 0.8);
  line-height: 1.65;
}

.condition-help__goal {
  padding: 26px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(49, 70, 60, 0.96) 0%, rgba(31, 45, 39, 1) 100%);
  color: var(--paper);
}

.condition-help__goal-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 250, 246, 0.68);
}

.condition-help__goal p {
  margin: 12px 0 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.condition-process .experience__intro h2 {
  max-width: 10ch;
}

.condition-process .experience__intro > p:not(.section-tag) {
  max-width: 32rem;
}

.condition-faq__shell {
  max-width: 920px;
}

.condition-faq__head {
  margin-bottom: 34px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list__item {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(31, 38, 35, 0.08);
  box-shadow: 0 20px 36px -32px rgba(31, 45, 39, 0.22);
  overflow: hidden;
}

.faq-list__q {
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
}

.faq-list__a {
  padding: 0 26px 24px;
}

.faq-list__a p {
  margin: 0;
  color: rgba(31, 38, 35, 0.78);
  line-height: 1.7;
}

.condition-related {
  background: var(--paper);
  padding: clamp(40px, 5vw, 60px) 0 28px;
  border-top: 1px solid rgba(31, 38, 35, 0.06);
}

.condition-related .conditions-teaser__head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.condition-related .conditions-teaser__head h2 {
  max-width: none;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
}

.condition-related__lede {
  margin: 12px 0 0;
  max-width: 46rem;
  color: rgba(31, 38, 35, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.condition-related .conditions-teaser__chips {
  gap: 12px;
}

.condition-related .conditions-teaser__chip {
  background: #fff;
  border-color: rgba(31, 38, 35, 0.08);
}

.condition-related .btn--outline {
  background: transparent;
  border-color: rgba(31, 45, 39, 0.18);
  color: var(--forest-deep);
}

.condition-related .btn--outline:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--paper);
}

.condition-cta-band {
  background: var(--paper);
  padding: 8px 0 clamp(56px, 8vw, 96px);
}

.condition-cta-band .container {
  background: linear-gradient(135deg, #f3eadb 0%, #ead8c4 52%, #f2e6d4 100%);
  border: 1px solid rgba(185, 122, 96, 0.18);
  box-shadow: 0 28px 54px -42px rgba(31, 45, 39, 0.32);
}

.condition-cta-band .cta-band__copy h2 {
  max-width: 12ch;
}

.condition-cta-band .cta-band__actions {
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  .condition-signs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .condition-story__media {
    min-height: 520px;
  }

  .condition-related .conditions-teaser__head {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .condition-hero {
    min-height: auto;
  }

  .condition-hero .hero__layout {
    min-height: auto;
    padding: 102px 0 24px;
  }

  .condition-signs__grid {
    grid-template-columns: 1fr;
  }

  .condition-story__media {
    min-height: auto;
  }

  .condition-story__goal,
  .condition-help__list li,
  .condition-help__goal {
    padding: 22px;
  }

  .condition-related {
    padding-bottom: 18px;
  }

  .condition-cta-band {
    padding-bottom: 72px;
  }
}
