
:root {
  --green: #56751b;
  --green-dark: #31480f;
  --green-soft: #ecf2e2;
  --cream: #f8f5ec;
  --paper: #fffdf7;
  --ink: #26321f;
  --muted: #66705e;
  --gold: #b88a16;
  --blue: #426a78;
  --blue-dark: #284f5e;
  --line: rgba(49, 72, 15, 0.16);
  --shadow: 0 24px 70px rgba(31, 46, 17, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.page {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  overflow: hidden;
}
.topbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 0 7.8vw;
  background: rgba(255, 253, 247, 0.97);
  border-bottom: 1px solid rgba(49, 72, 15, 0.13);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: 18px; }
.brand img { width: 151px; height: auto; }
.brand-mark {
  max-width: 184px;
  border-left: 1px solid var(--line);
  padding-left: 18px;
  color: #596651;
  font-size: 12px;
  line-height: 1.4;
}
.mobile-menu-toggle,
.mobile-menu-intro,
nav em,
.mobile-menu-actions { display: none; }
.mobile-menu-toggle {
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(49, 72, 15, 0.2);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}
.mobile-menu-toggle:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 18px 34px rgba(49, 72, 15, 0.24); }
.mobile-menu-icon {
  width: 24px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}
.mobile-menu-icon::before,
.mobile-menu-icon::after,
.mobile-menu-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 140ms ease, top 180ms ease;
}
.mobile-menu-icon::before { top: 0; }
.mobile-menu-icon span { top: 7.5px; }
.mobile-menu-icon::after { top: 15px; }
html.mobile-menu-open .mobile-menu-icon::before { top: 7.5px; transform: rotate(45deg); }
html.mobile-menu-open .mobile-menu-icon span { opacity: 0; }
html.mobile-menu-open .mobile-menu-icon::after { top: 7.5px; transform: rotate(-45deg); }
nav { display: flex; align-items: center; gap: 30px; color: #47533e; font-size: 15px; font-weight: 700; }
nav a,
.locations-trigger { transition: color 180ms ease, transform 180ms ease; }
nav a:hover,
.locations-trigger:hover,
nav a[aria-current="page"],
.locations-trigger.is-active { color: var(--green); }
nav a:focus-visible,
.locations-trigger:focus-visible,
.mobile-menu-toggle:focus-visible,
.button:focus-visible,
.care-card:focus-visible,
.location-card:focus-visible {
  outline: 3px solid rgba(184, 138, 22, 0.72);
  outline-offset: 4px;
}
.nav-item { position: relative; }
.locations-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.locations-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}
.locations-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: 232px;
  padding: 10px;
  background: rgba(255, 253, 247, 0.98);
  border: 1px solid rgba(49, 72, 15, 0.14);
  border-radius: 6px;
  box-shadow: 0 22px 46px rgba(31, 46, 17, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
  z-index: 30;
}
.locations-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}
.nav-item:hover .locations-menu,
.nav-item:focus-within .locations-menu,
.nav-item.is-open .locations-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}
.nav-item:hover .locations-trigger::after,
.nav-item:focus-within .locations-trigger::after,
.nav-item.is-open .locations-trigger::after {
  transform: translateY(2px) rotate(225deg);
}
.locations-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 4px;
  color: #47533e;
  font-size: 14px;
}
.locations-menu a:hover,
.locations-menu a[aria-current="page"] {
  background: var(--green-soft);
  color: var(--green-dark);
}
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(86, 117, 27, 0.18);
  cursor: pointer;
  transition: transform 190ms ease, box-shadow 190ms ease, background-color 190ms ease, color 190ms ease, border-color 190ms ease;
}
.nav-cta { min-height: 42px; padding: 0 20px; }
.button.secondary { background: #fff; color: var(--green-dark); border: 1px solid rgba(49, 72, 15, 0.26); box-shadow: none; }
.button.dark { background: var(--green-dark); }
.nav-cta:hover,
.button:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 30px rgba(49, 72, 15, 0.24);
  transform: translateY(-2px);
}
.button.secondary:hover {
  background: var(--green-soft);
  border-color: rgba(49, 72, 15, 0.38);
  box-shadow: 0 12px 24px rgba(49, 72, 15, 0.1);
}
h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  text-transform: none;
  letter-spacing: 0;
  line-height: 0.98;
}
p { margin: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #fff5c9;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 38px; height: 2px; background: var(--gold); }
.eyebrow.dark { color: var(--green); }
.hero,
.location-hero {
  min-height: 710px;
  position: relative;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: flex-end;
}
.hero::before,
.location-hero::before,
.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 48, 18, 0.88) 0%, rgba(34, 48, 18, 0.67) 35%, rgba(34, 48, 18, 0.18) 65%, rgba(34, 48, 18, 0.04) 100%);
}
.hero-copy {
  width: min(655px, 72vw);
  margin: 0 0 104px 7.8vw;
  color: #fff;
  position: relative;
  z-index: 2;
}
.hero-copy h1 { max-width: 680px; font-size: clamp(58px, 6.2vw, 92px); font-weight: 700; text-shadow: 0 12px 32px rgba(0, 0, 0, 0.18); }
.hero-copy p { max-width: 590px; margin-top: 24px; color: rgba(255, 255, 255, 0.94); font-size: 21px; line-height: 1.58; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 34px; }
.hero.with-review {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.54fr);
  align-items: end;
  gap: clamp(28px, 4.8vw, 72px);
  padding: 0 7.8vw 92px;
}
.hero.with-review .hero-copy {
  width: auto;
  max-width: 670px;
  margin: 0;
}
.hero-review-card {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  width: min(410px, 100%);
  margin-bottom: 12px;
  padding: 30px 30px 28px;
  overflow: hidden;
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 80px rgba(23, 34, 16, 0.28);
  color: var(--ink);
  backdrop-filter: blur(10px);
  transition: transform 170ms ease-out, box-shadow 170ms ease-out, border-color 170ms ease-out;
}
.hero-review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(184, 138, 22, 0.18));
}
.hero-review-card:hover,
.hero-review-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(184, 138, 22, 0.42);
  box-shadow: 0 34px 92px rgba(23, 34, 16, 0.34);
}
.hero-review-card:focus-visible {
  outline: 3px solid rgba(184, 138, 22, 0.38);
  outline-offset: 4px;
}
.review-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--green-dark);
}
.review-rating span:first-child {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.review-stars {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  white-space: nowrap;
}
.review-kicker {
  margin: 7px 0 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-review-track {
  min-height: 214px;
  transition: opacity 220ms ease, transform 220ms ease;
}
.hero-review-slide { display: none; }
.hero-review-slide.is-active { display: block; }
.hero-quote {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
}
.hero-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.review-initials {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 22%, rgba(255, 253, 247, 0.28), transparent 34%), linear-gradient(135deg, var(--green), var(--blue));
  color: #fffdf7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-reviewer strong {
  display: block;
  color: var(--green-dark);
  font-size: 15px;
  line-height: 1.2;
}
.hero-reviewer small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-source {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-review-card.is-changing-next .hero-review-track {
  opacity: 0;
  transform: translateX(-14px);
}
.hero-review-card.is-changing-prev .hero-review-track {
  opacity: 0;
  transform: translateX(14px);
}
.hero-review-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-review-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 92px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 253, 247, 0.9) 0%, rgba(255, 253, 247, 0.08) 72%);
  color: rgba(49, 72, 15, 0.58);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 22px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.92);
  transition: opacity 160ms ease, transform 160ms ease, color 160ms ease, background 160ms ease;
  z-index: 3;
}
.hero-review-arrow:hover,
.hero-review-arrow:focus-visible {
  color: var(--green-dark);
  background: radial-gradient(ellipse at center, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.24) 72%);
  transform: translateY(-50%) scale(1.08);
}
.hero-review-arrow:focus-visible {
  outline: 2px solid rgba(184, 138, 22, 0.35);
  outline-offset: 2px;
}
.hero-review-arrow:active { transform: translateY(-50%) scale(0.98); }
.hero-review-arrow-prev { left: 0; }
.hero-review-arrow-next { right: 0; }
.hero-review-hint {
  position: absolute;
  right: 20px;
  bottom: 17px;
  color: rgba(49, 72, 15, 0.52);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(5px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .hero-review-card:hover .hero-review-arrow,
  .hero-review-card:focus-within .hero-review-arrow {
    opacity: 0.62;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
  }
}
.quick-info {
  width: calc(100% - 15.6vw);
  max-width: 1216px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 0.85fr;
  background: #fff;
  border: 1px solid rgba(49, 72, 15, 0.12);
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: absolute;
  left: 7.8vw;
  right: 7.8vw;
  bottom: -64px;
  z-index: 4;
}
.fact { min-height: 126px; padding: 28px 30px; border-left: 1px solid rgba(49, 72, 15, 0.11); display: flex; flex-direction: column; justify-content: center; gap: 7px; }
.fact:first-child { background: var(--green); color: #fff; border-left: 0; }
.fact span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.fact:first-child span { color: rgba(255, 255, 255, 0.74); }
.fact strong { color: var(--green-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 31px; font-weight: 700; line-height: 1.02; }
.fact:first-child strong { color: #fff; font-size: 36px; }
.fact em { color: var(--muted); font-size: 14px; font-style: normal; line-height: 1.4; }
.section { padding: 116px 7.8vw 0; position: relative; }
.section.after-rail { padding-top: 156px; }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 80px; margin-bottom: 38px; }
.section-header h2 { color: var(--green-dark); font-size: clamp(44px, 4.4vw, 64px); font-weight: 700; }
.section-header p { max-width: 530px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.cream { background: linear-gradient(180deg, var(--cream) 0%, #fffdf7 58%); }
.intro-grid { display: grid; grid-template-columns: 0.94fr 1.06fr; gap: 62px; align-items: center; }
.intro-copy h2 { max-width: 600px; color: var(--green-dark); font-size: clamp(48px, 4.8vw, 68px); font-weight: 700; }
.service-line { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.service-line span { padding: 10px 14px; border: 1px solid rgba(49, 72, 15, 0.18); border-radius: 4px; background: #fff; color: var(--green-dark); font-size: 13px; font-weight: 800; }
.intro-copy p { max-width: 580px; margin-bottom: 18px; color: var(--muted); font-size: 17px; line-height: 1.72; }
.intro-media { display: grid; grid-template-columns: 1fr 0.78fr; gap: 18px; align-items: end; }
.intro-media img { width: 100%; object-fit: cover; border-radius: 6px; box-shadow: 0 20px 56px rgba(31, 46, 17, 0.16); }
.intro-media img:first-child { height: 486px; }
.intro-media img:last-child { height: 342px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.care-card,
.location-card,
.resource-card,
.simple-card {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(49, 72, 15, 0.12);
  border-radius: 6px;
  color: inherit;
  box-shadow: 0 18px 46px rgba(31, 46, 17, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.care-card:hover,
.location-card:hover,
.resource-card:hover,
.simple-card:hover {
  border-color: rgba(86, 117, 27, 0.28);
  box-shadow: 0 24px 58px rgba(31, 46, 17, 0.16);
  transform: translateY(-6px);
}
.care-card img,
.location-card img,
.gallery img,
.team-photo img,
.intro-media img,
.motion-media img,
.split img {
  transition: transform 420ms ease, filter 220ms ease;
}
.care-card:hover img,
.location-card:hover img,
.gallery figure:hover img,
.team-photo:hover img,
.intro-media img:hover,
.motion-media img:hover,
.split img:hover {
  transform: scale(1.025);
}
.care-card img { width: 100%; height: 228px; object-fit: cover; }
.care-body { min-height: 290px; padding: 28px 30px 32px; display: flex; flex-direction: column; }
.care-body h3 { margin-bottom: 14px; color: var(--green-dark); font-size: 38px; font-weight: 700; }
.care-body p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.text-link { margin-top: auto; color: var(--green); font-size: 15px; font-weight: 800; transition: color 180ms ease; }
.text-link:hover { color: var(--green-dark); }
.experience { padding: 98px 7.8vw; background: linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(248, 245, 236, 0.96)), repeating-linear-gradient(135deg, rgba(86, 117, 27, 0.07) 0 1px, transparent 1px 10px); }
.experience-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: center; }
.experience-copy h2 { color: var(--green-dark); font-size: clamp(44px, 4.5vw, 64px); font-weight: 700; }
.experience-copy p { max-width: 460px; margin: 22px 0 30px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 472px; }
.mini-stat { min-height: 126px; padding: 22px; background: #fff; border: 1px solid rgba(49, 72, 15, 0.12); border-radius: 6px; box-shadow: 0 14px 38px rgba(31, 46, 17, 0.08); }
.mini-stat strong { display: block; color: var(--blue-dark); font-family: "Cormorant Garamond", Georgia, serif; font-size: 42px; line-height: 1; }
.mini-stat span { display: block; margin-top: 10px; color: var(--muted); font-size: 13px; font-weight: 800; line-height: 1.45; }
.gallery { display: grid; grid-template-columns: 1.06fr 0.78fr 0.86fr; grid-template-rows: 246px 246px; gap: 18px; }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 6px; background: var(--green-dark); box-shadow: 0 16px 42px rgba(31, 46, 17, 0.12); transition: transform 220ms ease, box-shadow 220ms ease; }
.gallery figure:hover { box-shadow: 0 24px 58px rgba(31, 46, 17, 0.16); transform: translateY(-5px); }
.gallery figure:first-child { grid-row: 1 / span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.gallery figcaption { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 1; color: #fff; font-size: 13px; font-weight: 800; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35); }
.team { padding: 102px 7.8vw; background: #fffdf7; display: grid; grid-template-columns: 1fr 0.9fr; gap: 58px; align-items: center; }
.team-photo { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); }
.team-photo img { width: 100%; height: 520px; object-fit: cover; }
.team-card { background: var(--green-dark); color: #fff; border-radius: 6px; padding: 48px; min-height: 474px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.team-card::after { content: attr(data-mark); position: absolute; right: 24px; bottom: -42px; color: rgba(255, 255, 255, 0.06); font-family: "Cormorant Garamond", Georgia, serif; font-size: 188px; font-weight: 700; line-height: 1; }
.team-card h2, .team-card p, .team-card .director { position: relative; z-index: 1; }
.team-card h2 { max-width: 438px; color: #fff; font-size: clamp(44px, 4.5vw, 64px); font-weight: 700; }
.team-card p { margin: 22px 0 26px; color: rgba(255, 255, 255, 0.84); font-size: 17px; line-height: 1.7; }
.director { padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.18); display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.director span { display: block; color: rgba(255, 255, 255, 0.58); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.director strong { display: block; margin-top: 6px; color: #fff; font-family: "Cormorant Garamond", Georgia, serif; font-size: 30px; line-height: 1.05; }
.motion { padding: 100px 7.8vw; background: var(--green); color: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; }
.motion::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 12px); opacity: 0.72; }
.motion-copy, .motion-media { position: relative; z-index: 1; }
.motion h2 { max-width: 520px; color: #fff; font-size: clamp(46px, 4.8vw, 68px); font-weight: 700; }
.motion p { max-width: 560px; margin-top: 24px; color: rgba(255, 255, 255, 0.88); font-size: 18px; line-height: 1.7; }
.motion-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 570px; margin-top: 30px; }
.motion-list span {
  position: relative;
  overflow: hidden;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 120ms ease-out, background-color 120ms ease-out, border-color 120ms ease-out, box-shadow 120ms ease-out;
}
.motion-list span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.18) 45%, transparent 70%);
  opacity: 0;
  transform: translateX(-105%);
  transition: opacity 120ms ease-out, transform 260ms ease-out;
}
.motion-list span:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 22px rgba(20, 32, 12, 0.16);
  transform: translateY(-2px);
}
.motion-list span:hover::after {
  opacity: 1;
  transform: translateX(105%);
}
.motion-media { display: grid; grid-template-columns: 1fr 0.82fr; gap: 18px; align-items: end; }
.motion-media img { width: 100%; object-fit: cover; border-radius: 6px; box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22); }
.motion-media img:first-child { height: 382px; }
.motion-media img:last-child { height: 292px; }
.resources { padding: 104px 7.8vw; background: #fffdf7; display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 58px; align-items: start; }
.resources h2 { color: var(--green-dark); font-size: clamp(44px, 4.5vw, 64px); font-weight: 700; }
.resources p { max-width: 430px; margin-top: 22px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.resource-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.resource-link { min-height: 86px; padding: 22px 24px; border: 1px solid rgba(49, 72, 15, 0.13); border-radius: 6px; background: #fff; box-shadow: 0 14px 34px rgba(31, 46, 17, 0.08); display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--green-dark); font-size: 16px; font-weight: 800; transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease; }
.resource-link:hover { border-color: rgba(86, 117, 27, 0.28); box-shadow: 0 20px 44px rgba(31, 46, 17, 0.13); transform: translateY(-4px); }
.resource-link span { width: 34px; height: 34px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.floor-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.floor-grid img { width: 100%; height: 260px; object-fit: contain; background: #fff; border: 1px solid rgba(49, 72, 15, 0.12); border-radius: 6px; padding: 14px; box-shadow: 0 14px 34px rgba(31, 46, 17, 0.08); }
.contact-form-section {
  padding: 78px 7.8vw 46px;
  background:
    linear-gradient(180deg, rgba(248, 245, 236, 0.82), rgba(255, 253, 247, 1));
  display: grid;
  grid-template-columns: minmax(310px, 0.74fr) minmax(520px, 1fr);
  gap: 30px;
  align-items: stretch;
}
.contact-form-copy {
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(49, 72, 15, 0.98), rgba(38, 50, 31, 0.98)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 11px);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 64px rgba(31, 46, 17, 0.18);
}
.contact-form-copy .eyebrow.dark { color: #fff5c9; }
.contact-form-copy h2 { max-width: 430px; color: #fff; font-size: clamp(42px, 4.1vw, 60px); font-weight: 700; }
.contact-form-copy p { max-width: 470px; margin-top: 22px; color: rgba(255, 255, 255, 0.78); font-size: 17px; line-height: 1.72; }
.contact-steps {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}
.contact-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}
.contact-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.contact-step strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
}
.contact-form-panel {
  padding: 30px;
  border: 1px solid rgba(49, 72, 15, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(31, 46, 17, 0.12);
}
.contact-form-panel .contact-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.contact-form-panel .contact-card:hover {
  box-shadow: none;
  transform: none;
}
.contact-band {
  min-height: 660px;
  padding: 104px 7.8vw;
  background-size: cover;
  background-position: center center;
  color: #fff;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 62px;
  align-items: center;
  position: relative;
}
.contact-band > * { position: relative; z-index: 1; }
.contact-band h2 { max-width: 480px; color: #fff; font-size: clamp(46px, 4.6vw, 66px); font-weight: 700; }
.contact-band p { max-width: 500px; margin: 22px 0 32px; color: rgba(255, 255, 255, 0.86); font-size: 18px; line-height: 1.65; }
.contact-card { padding: 32px; background: rgba(255, 253, 247, 0.96); border-radius: 6px; color: var(--ink); box-shadow: 0 22px 62px rgba(0, 0, 0, 0.28); transition: transform 220ms ease, box-shadow 220ms ease; }
.contact-card:hover { box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32); transform: translateY(-4px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; color: #596651; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(49, 72, 15, 0.18);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}
.field textarea { min-height: 126px; resize: vertical; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: rgba(86, 117, 27, 0.45);
  box-shadow: 0 0 0 4px rgba(86, 117, 27, 0.11);
}
.field:hover input,
.field:hover select,
.field:hover textarea { background: #fffdf7; border-color: rgba(86, 117, 27, 0.32); }
.field.wide, .contact-card .button.wide { grid-column: 1 / -1; width: 100%; }
.form-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: 13px; font-weight: 700; line-height: 1.5; }
.contact-directory {
  padding-top: 54px;
  padding-bottom: 112px;
  background:
    linear-gradient(180deg, #fffdf7 0%, var(--cream) 100%);
}
.contact-directory .section-header {
  margin-bottom: 34px;
}
.contact-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.location-contact-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 28px;
  border: 1px solid rgba(49, 72, 15, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(31, 46, 17, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.location-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(86, 117, 27, 0.26));
}
.location-contact-card:hover {
  border-color: rgba(86, 117, 27, 0.3);
  box-shadow: 0 24px 58px rgba(31, 46, 17, 0.14);
  transform: translateY(-5px);
}
.location-contact-card h3 {
  color: var(--green-dark);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
.location-contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}
.location-contact-card .director-name {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}
.location-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.location-contact-actions a {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}
.location-contact-actions a:hover { color: var(--green-dark); }
.corporate-card {
  background: linear-gradient(145deg, #fff, var(--green-soft));
}
.corporate-card::before {
  background: linear-gradient(90deg, var(--green-dark), var(--gold));
}
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.location-card img { width: 100%; height: 260px; object-fit: cover; }
.location-card .body, .simple-card { padding: 28px; }
.location-card h3, .simple-card h3 { color: var(--green-dark); font-size: 38px; font-weight: 700; margin-bottom: 12px; }
.location-card p, .simple-card p { color: var(--muted); font-size: 15px; line-height: 1.65; margin-bottom: 18px; }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.split img { width: 100%; height: 460px; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow); }
.simple-hero { padding: 110px 7.8vw 88px; background: var(--cream); }
.simple-hero h1 { color: var(--green-dark); font-size: clamp(56px, 6vw, 86px); font-weight: 700; max-width: 820px; }
.simple-hero p { max-width: 740px; margin-top: 24px; color: var(--muted); font-size: 20px; line-height: 1.65; }
.footer { padding: 58px 7.8vw 28px; background: var(--green-dark); color: rgba(255, 255, 255, 0.84); }
.footer-grid { display: grid; grid-template-columns: 1.1fr 0.8fr 0.8fr 0.9fr; gap: 48px; align-items: start; margin-bottom: 46px; }
.footer h3 { margin-bottom: 18px; color: #fff; font-size: 28px; }
.footer p, .footer li { margin: 0; font-size: 14px; line-height: 1.7; }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer a { color: rgba(255, 255, 255, 0.84); }
.footer-logo { width: 166px; margin-top: 18px; filter: brightness(1.08); }
.socket { padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.14); display: flex; justify-content: space-between; gap: 20px; color: rgba(255, 255, 255, 0.58); font-size: 12px; }
@media (prefers-reduced-motion: no-preference) {
  .is-enhanced .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, border-color 220ms ease, background-color 180ms ease, color 180ms ease;
    transition-delay: calc(var(--reveal-index, 0) * 70ms);
    will-change: opacity, transform;
  }
  .is-enhanced .hero-copy.reveal,
  .is-enhanced .quick-info.reveal {
    transform: translateY(16px);
  }
  .is-enhanced .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .is-enhanced .reveal.is-visible.has-revealed {
    transition-delay: 0ms;
    transition-duration: 160ms;
    transition-timing-function: ease-out;
    will-change: auto;
  }
  .is-enhanced .motion-list span.reveal.is-visible.has-revealed {
    transition: transform 120ms ease-out, background-color 120ms ease-out, border-color 120ms ease-out, box-shadow 120ms ease-out;
  }
  .is-enhanced .care-card.reveal.is-visible.has-revealed:hover,
  .is-enhanced .hero-review-card.reveal.is-visible.has-revealed:hover,
  .is-enhanced .location-card.reveal.is-visible.has-revealed:hover,
  .is-enhanced .resource-card.reveal.is-visible.has-revealed:hover,
  .is-enhanced .simple-card.reveal.is-visible.has-revealed:hover {
    transform: translateY(-6px);
  }
  .is-enhanced .gallery figure.reveal.is-visible.has-revealed:hover {
    transform: translateY(-5px);
  }
  .is-enhanced .resource-link.reveal.is-visible.has-revealed:hover,
  .is-enhanced .contact-card.reveal.is-visible.has-revealed:hover {
    transform: translateY(-4px);
  }
  .is-enhanced .motion-list span.reveal.is-visible.has-revealed:hover {
    transform: translateY(-2px);
  }
  .is-enhanced .intro-media img.reveal.is-visible.has-revealed:hover,
  .is-enhanced .motion-media img.reveal.is-visible.has-revealed:hover,
  .is-enhanced .split img.reveal.is-visible.has-revealed:hover {
    transform: scale(1.025);
  }
}
@media (max-width: 980px) {
  html.mobile-menu-open,
  html.mobile-menu-open body { overflow: hidden; }
  .topbar {
    min-height: 88px;
    padding: 14px 24px;
    align-items: center;
    flex-direction: row;
    gap: 16px;
    z-index: 80;
  }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand img { width: 154px; }
  .brand-mark { display: none; }
  .mobile-menu-toggle { display: inline-flex; flex: 0 0 auto; }
  nav {
    position: fixed;
    top: 88px;
    left: 50%;
    width: min(100vw, 1440px);
    height: calc(100dvh - 88px);
    padding: 22px 24px 30px;
    background:
      linear-gradient(180deg, rgba(255, 253, 247, 0.985), rgba(248, 245, 236, 0.985)),
      repeating-linear-gradient(135deg, rgba(86, 117, 27, 0.055) 0 1px, transparent 1px 12px);
    border-top: 1px solid rgba(49, 72, 15, 0.12);
    box-shadow: 0 28px 70px rgba(31, 46, 17, 0.22);
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 12px;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
    z-index: 70;
  }
  html.mobile-menu-open nav {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
  }
  .mobile-menu-intro {
    display: block;
    padding: 2px 2px 10px;
    color: var(--green-dark);
  }
  .mobile-menu-intro span {
    display: block;
    margin-bottom: 4px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .mobile-menu-intro strong {
    display: block;
    max-width: 330px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 34px;
    line-height: 1.02;
  }
  nav a,
  .locations-trigger {
    width: 100%;
    min-height: 70px;
    padding: 15px 18px;
    border: 1px solid rgba(49, 72, 15, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 26px rgba(31, 46, 17, 0.08);
    color: var(--green-dark);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 16px;
    row-gap: 5px;
    text-align: left;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 800;
  }
  nav a:hover,
  .locations-trigger:hover,
  nav a[aria-current="page"],
  .locations-trigger.is-active {
    background: #fff;
    border-color: rgba(86, 117, 27, 0.34);
    color: var(--green);
    transform: translateY(-1px);
  }
  nav a span,
  .locations-trigger span {
    display: block;
    grid-column: 1;
  }
  nav em,
  .locations-trigger em {
    display: block;
    grid-column: 1;
    margin-top: 0;
    color: var(--muted);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.35;
  }
  nav a::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    flex: 0 0 auto;
  }
  .nav-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 74px;
    background: var(--green);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 18px 34px rgba(86, 117, 27, 0.22);
    font-size: 21px;
  }
  .nav-cta em { color: rgba(255, 255, 255, 0.82); }
  .nav-cta:hover { background: var(--green-dark); color: #fff; }
  .nav-item {
    width: 100%;
    display: grid;
    gap: 0;
  }
  .locations-trigger {
    justify-content: stretch;
  }
  .locations-trigger::after {
    width: 11px;
    height: 11px;
    border-width: 2px;
    transform: translateY(-3px) rotate(45deg);
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .locations-menu {
    position: static;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    visibility: hidden;
    box-shadow: none;
    border: 0;
    background: transparent;
    display: grid;
    gap: 9px;
    transition: max-height 220ms ease, margin 160ms ease, opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }
  .nav-item.is-open .locations-menu,
  .nav-item:focus-within .locations-menu {
    max-height: 520px;
    margin-top: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }
  .locations-menu::before { display: none; }
  .locations-menu a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 62px;
    padding: 13px 18px 13px 22px;
    background: rgba(236, 242, 226, 0.82);
    border-color: rgba(86, 117, 27, 0.16);
    box-shadow: none;
    font-size: 19px;
  }
  .locations-menu a::after {
    width: 8px;
    height: 8px;
    transform: rotate(-45deg);
  }
  .locations-menu a:hover,
  .locations-menu a[aria-current="page"] {
    background: #fff;
    border-color: rgba(86, 117, 27, 0.36);
    color: var(--green-dark);
  }
  .mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 4px;
  }
  .mobile-menu-actions a {
    min-height: 66px;
    justify-content: flex-start;
  }
  .mobile-menu-actions a::after { margin-left: auto; }
  .mobile-menu-actions .mobile-call {
    background: var(--green-dark);
    color: #fff;
    border-color: transparent;
  }
  .mobile-menu-actions .mobile-call em { color: rgba(255, 255, 255, 0.78); }
  .hero, .location-hero { display: block; min-height: auto; padding: 160px 0 48px; }
  .hero.with-review { display: block; padding: 160px 24px 48px; }
  .hero-copy { margin: 0 24px 36px; width: calc(100% - 48px); }
  .hero.with-review .hero-copy { margin: 0 0 28px; width: 100%; }
  .hero-review-card { width: 100%; margin: 0; padding: 26px 24px 25px; }
  .hero-review-track { min-height: 230px; }
  .hero-review-arrow {
    width: 44px;
    height: 88px;
    opacity: 0.55;
    pointer-events: auto;
  }
  .hero-review-hint {
    opacity: 1;
    transform: translateY(0);
  }
  .quick-info { position: relative; left: auto; right: auto; bottom: auto; width: calc(100% - 48px); margin: 0 24px; transform: none; grid-template-columns: 1fr; }
  .fact { border-left: 0; border-top: 1px solid rgba(49, 72, 15, 0.11); }
  .section, .section.after-rail, .experience, .team, .motion, .resources, .contact-band, .contact-form-section, .footer, .simple-hero { padding-left: 24px; padding-right: 24px; }
  .section.after-rail { padding-top: 76px; }
  .section-header, .intro-grid, .experience-grid, .team, .motion, .resources, .contact-band, .contact-form-section, .split { grid-template-columns: 1fr; }
  .contact-form-section { gap: 32px; padding-top: 72px; }
  .contact-form-copy { padding: 26px; }
  .contact-form-panel { padding: 22px; }
  .contact-directory-grid, .card-grid, .location-grid, .footer-grid, .resource-grid, .floor-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: repeat(5, 230px); }
  .gallery figure:first-child { grid-row: auto; }
  .intro-media, .motion-media { grid-template-columns: 1fr; }
  .intro-media img:first-child, .intro-media img:last-child, .motion-media img:first-child, .motion-media img:last-child, .team-photo img, .split img { height: auto; max-height: 420px; }
  .socket { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero-copy h1 { font-size: 50px; max-width: 100%; }
  .hero-copy p { font-size: 20px; line-height: 1.55; }
  .hero-actions .button { flex: 1 1 150px; padding: 0 16px; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .field.wide, .contact-card .button.wide, .form-note { grid-column: auto; }
}
