:root {
  --forest: #1B3A2A;
  --deep: #0E2419;
  --cedar: #2C4636;
  --sage: #9AAB90;
  --paper: #ffffff;
  --cream: #ffffff;
  --sand: #ffffff;
  --gold: #B8923A;
  --gold-light: #D4B56A;
  --ink: #1A2C22;
  --muted: #5C6B61;
  --white: #ffffff;
  --line: rgba(27, 58, 42, .12);
  --header: 96px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Figtree, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, .serif {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(3.1rem, 8vw, 6.6rem); font-optical-sizing: auto; }
h2 { font-size: clamp(2.05rem, 4.2vw, 3.35rem); }
h3 { font-size: 1.15rem; }

.skip-link {
  position: absolute; left: 1rem; top: -48px;
  background: var(--gold); color: var(--deep);
  padding: .5rem 1rem; z-index: 80;
}
.skip-link:focus { top: 1rem; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.kicker, .eyebrow, .section-label, .page-hero__crumb {
  margin: 0 0 .85rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.kicker--ink, .section-label { color: var(--gold); }
.lede, .section-lead { color: var(--muted); max-width: 46ch; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.btn--gold, .btn--primary, .btn--accent { background: var(--gold); color: var(--deep); }
.btn--gold:hover, .btn--primary:hover, .btn--accent:hover { background: var(--gold-light); }
.btn--forest { background: var(--forest); color: var(--cream); }
.btn--forest:hover { background: var(--cedar); }
.btn--outline { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn--outline:hover { background: var(--forest); color: var(--cream); }
.btn--ghost { background: transparent; border-color: rgba(247, 242, 232, .45); color: var(--cream); }
.btn--ghost:hover { background: var(--cream); color: var(--forest); }
.btn-group { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.4rem 0 1rem; }
.text-link {
  display: inline-block;
  color: var(--forest);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: .12rem;
}
.text-link:hover { color: var(--gold); }

/* —— Header: photo overlay; green only on the logo tab —— */
.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  pointer-events: none;
  background: transparent;
}
.header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(14, 36, 25, .72) 0%, rgba(14, 36, 25, .28) 55%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.header.is-scrolled::before { opacity: 0; }
.header.is-scrolled {
  position: fixed;
  inset: 0 0 auto;
  background: #fff;
  box-shadow: 0 8px 24px rgba(14, 36, 25, .1);
}
.header__inner {
  pointer-events: auto;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: var(--header);
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 1;
}
.header.is-scrolled .header__inner { padding: 0; }
.logo {
  min-width: 0;
  align-self: start;
  display: flex;
  align-items: flex-start;
  text-decoration: none;
}
.logo__badge {
  display: block;
  background: #1B3A2A;
  border-radius: 0 0 32px 32px;
  padding: .85rem 1.35rem .9rem 1.05rem;
}
.logo__img {
  display: block;
  height: 72px;
  width: auto;
  max-width: min(340px, 58vw);
  object-fit: contain;
  background: transparent;
}
.logo--footer { align-self: auto; }
.logo--footer .logo__img { height: 88px; max-width: 100%; }
.nav { display: flex; justify-content: center; align-items: center; gap: 1.65rem; }
.nav__link {
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream);
  padding: .25rem 0;
  position: relative;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .35);
}
.header.is-scrolled .nav__link { color: var(--forest); text-shadow: none; }
.nav-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; color: var(--cream); }
.header.is-scrolled .nav-toggle { color: var(--forest); }
.nav__link.is-active::after, .nav__link:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
}
.header__cta {
  white-space: nowrap;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 1.25rem;
}
.nav__mobile-cta { display: none; }

.avail {
  display: inline-block;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  font-weight: 600;
}

/* —— Photo banners —— */
.hero, .page-hero {
  position: relative;
  color: var(--cream);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}
.page-hero { min-height: 62vh; }
.page-hero--about, .page-hero--inner { min-height: 78vh; align-items: flex-end; }
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__bg, .page-hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero .hero__bg {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 7s ease;
  z-index: 0;
}
.hero .hero__bg.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero__veil { z-index: 1; }
.hero__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
}
.hero__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(247, 242, 232, .7);
  background: transparent;
  cursor: pointer;
}
.hero__dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
}
@media (prefers-reduced-motion: reduce) {
  .hero .hero__bg { transition: opacity .3s ease; transform: none; }
}
.hero__veil, .page-hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14, 36, 25, .62) 0%, rgba(14, 36, 25, .18) 28%, transparent 42%, rgba(14, 36, 25, .72) 100%),
    linear-gradient(90deg, rgba(14, 36, 25, .55) 0%, rgba(14, 36, 25, .18) 50%, rgba(14, 36, 25, .12) 100%);
}
.page-hero--about .page-hero__bg, .page-hero--inner .page-hero__bg { opacity: .72; }
.page-hero--about::after, .page-hero--inner::after {
  background:
    linear-gradient(180deg, rgba(14, 36, 25, .78) 0%, rgba(14, 36, 25, .52) 42%, rgba(14, 36, 25, .7) 100%);
}
.hero__rail {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 38%;
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: .42em;
  text-transform: uppercase;
  font-size: .68rem;
  color: rgba(247, 242, 232, .62);
}
.hero__stage, .page-hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 8.5rem 0 5.2rem;
  max-width: 760px;
  margin-left: max(20px, calc((100% - 1180px) / 2));
}
.page-hero--about .page-hero__content,
.page-hero--inner .page-hero__content { padding: 9rem 0 5rem; max-width: 720px; }
.page-hero--about .page-hero__content h1,
.page-hero--inner .page-hero__content h1 {
  max-width: 12ch;
  color: #fff;
  text-shadow: 0 2px 28px rgba(14, 36, 25, .55);
}
.page-hero--about .kicker,
.page-hero--inner .kicker {
  color: var(--gold-light);
  text-shadow: 0 1px 12px rgba(14, 36, 25, .45);
}
.hero__stage h1, .page-hero__content h1 { color: #fff; max-width: 11ch; }
.page-hero--about .page-hero__content h1,
.page-hero--inner .page-hero__content h1 { max-width: 12ch; }
.hero__stage h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.hero__lead, .page-hero__sub {
  max-width: 38ch;
  color: rgba(247, 242, 232, .9);
  font-size: 1.08rem;
  margin: 0;
}
.hero__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  color: rgba(247, 242, 232, .78);
  font-size: .92rem;
}

.ribbon {
  background: var(--deep);
  color: var(--cream);
  border-top: 1px solid rgba(184, 146, 58, .35);
  border-bottom: 1px solid rgba(184, 146, 58, .35);
}
.ribbon__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .4rem 1.5rem;
  padding: 1.05rem 0;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.ribbon__inner span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  position: relative;
  padding-right: 1.4rem;
}
.ribbon__inner svg { width: 16px; height: 16px; color: var(--gold-light); flex-shrink: 0; }
.ribbon__inner span:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: .15rem;
  color: var(--gold);
}

.quiet { padding: 5.2rem 0; }
.quiet__intro { max-width: 34rem; margin-bottom: 2.6rem; }
.quiet__intro p { color: var(--muted); }
.quiet__intro--row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  max-width: none;
  margin-bottom: 1.5rem;
}
.quiet__intro--row h2 { margin: 0; }
.quiet__services,
.quiet__why {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem 1.6rem;
}
.quiet__services svg,
.quiet__why svg { width: 20px; height: 20px; color: var(--gold); }
.quiet__services h3,
.quiet__why h3 { margin: .55rem 0 0; font-size: 1.12rem; font-weight: 500; }
.quiet__why h3 { margin-bottom: .35rem; }
.quiet__why p { margin: 0; color: var(--muted); font-size: .92rem; }
.quiet__more { margin: 2.2rem 0 0; }
.quiet__note { font-size: .95rem; }
.quiet__steps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin: 3rem 0 0;
  padding: 1.7rem 0 0;
  border-top: 1px solid var(--line);
}
.quiet__steps li {
  display: flex;
  gap: .55rem;
  align-items: baseline;
  font-size: 1.05rem;
}
.quiet__steps span {
  font-family: Fraunces, serif;
  font-style: italic;
  color: var(--gold);
}
.quiet__photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.quiet__photos .film__shot,
.quiet__photos .gallery__item {
  min-height: 210px;
  height: 230px;
  border-radius: 0;
}
.quiet--end { border-top: 1px solid var(--line); padding-bottom: 5.5rem; }
.quiet__end {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: end;
}
.quiet__contact { display: grid; gap: .35rem; margin: 0; }
.quiet__contact a { text-decoration: none; color: var(--ink); }
.quiet__contact a:hover { color: var(--gold); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: #fff;
  color: var(--ink);
}
.split--dark { background: var(--deep); color: var(--cream); }
.split--flip { direction: rtl; }
.split--flip > * { direction: ltr; }
.split__photo { margin: 0; }
.split__photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 62%;
}
.split__copy {
  padding: clamp(2.2rem, 4.4vw, 3.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__copy > p { max-width: 42ch; }
.split--dark .split__copy > p { color: rgba(247, 242, 232, .8); }

.rows {
  list-style: none;
  margin: 1rem 0 1.35rem;
  padding: 0;
  border-top: 1px solid var(--line);
}
.split--dark .rows { border-top-color: rgba(247, 242, 232, .14); }
.rows li, .rows > a {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: .85rem;
  align-items: start;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}
.split--dark .rows li,
.split--dark .rows > a { border-bottom-color: rgba(247, 242, 232, .14); }
.rows--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.rows--2 li:nth-child(odd) { padding-right: 1.4rem; }
.rows--2 li:nth-child(even) { padding-left: 1.4rem; border-left: 1px solid var(--line); }
.rows__ic {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(184, 146, 58, .42);
  flex-shrink: 0;
}
.rows__ic svg { width: 16px; height: 16px; }
.rows__n {
  display: block;
  font-family: Fraunces, serif;
  font-style: italic;
  color: var(--gold);
  font-size: .92rem;
  margin-bottom: .12rem;
}
.rows h3 { margin: 0; font-size: 1.12rem; }
.rows p { margin: .2rem 0 0; color: var(--muted); font-size: .9rem; max-width: none; }
.split--dark .rows p { color: rgba(247, 242, 232, .7); }
.split--dark .rows__n, .split--dark .rows__ic { color: var(--gold-light); }

.sec .film__track { width: 100%; margin: 0; }

.why-band {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  background: #fff;
  min-height: 640px;
}
.why-band__photo {
  margin: 0;
  position: relative;
}
.why-band__photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 55%;
}
.why-band__photo figcaption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  margin: 0;
  background: var(--gold);
  color: var(--deep);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .55rem .85rem;
}
.why-band__copy {
  padding: clamp(2.2rem, 4.5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-band__lead { color: var(--muted); max-width: 44ch; margin: 0 0 1.4rem; }
.why-points {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.why-points li {
  display: grid;
  grid-template-columns: 4.6rem 1fr;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
.why-points__mark {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  color: var(--gold);
}
.why-points__mark span:first-child {
  font-family: Fraunces, serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1;
}
.why-points__mark svg { width: 20px; height: 20px; }
.why-points h3 { margin: 0 0 .2rem; font-size: 1.28rem; }
.why-points p { margin: 0; color: var(--muted); font-size: .92rem; }

.path {
  background: var(--deep);
  color: var(--cream);
  padding: 5rem 0 4.6rem;
  position: relative;
  overflow: hidden;
}
.path__head { max-width: 40rem; margin-bottom: 2.6rem; }
.path__head p { color: rgba(247, 242, 232, .78); max-width: 42ch; }
.path__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  position: relative;
}
.path__list::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 146, 58, .7), transparent);
}
.path__list li { position: relative; z-index: 1; }
.path__num {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1rem;
  background: var(--gold);
  color: var(--deep);
  font-family: Fraunces, serif;
  font-style: italic;
  font-size: 1.05rem;
}
.path__ic {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: .7rem;
  color: var(--gold-light);
  border: 1px solid rgba(184, 146, 58, .4);
}
.path--calm .path__head { max-width: none; width: 100%; margin-bottom: 2.2rem; }
.path--calm .path__list::before { display: none; }
.path--calm .path__num {
  background: transparent;
  color: var(--gold-light);
  width: auto;
  height: auto;
  display: block;
  margin-bottom: .45rem;
  font-size: 1.35rem;
}
.path--calm .path__ic { display: none; }
.path__list--3 { grid-template-columns: repeat(3, 1fr); }
.path__head.sec__head { align-items: end; }
.path__head.sec__head > p { color: rgba(247, 242, 232, .75); max-width: 36ch; margin: 0; }
.path h3 { font-size: 1.35rem; margin: 0 0 .4rem; }
.path__list p { margin: 0; color: rgba(247, 242, 232, .74); font-size: .92rem; max-width: 28ch; }

.sec, .index-sec, .services, .gallery, .philosophy, .section-pad { padding: 4.6rem 0; }
.page-about .visit, .page-services .visit, .page-gallery .visit, .page-contact .visit { margin-top: 4.6rem; }
.sec__head, .index-sec__head, .film__head, .split-head, .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.sec__head h2 { margin-bottom: 0; }
.sec__aside p, .index-sec__aside p, .section-lead { color: var(--muted); margin: 0 0 .7rem; max-width: 40ch; }

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.tile {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.4rem 1.2rem 1.3rem;
}
.sec--sand .tile { background: var(--paper); }
.tile__ic {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(184, 146, 58, .42);
  color: var(--gold);
  margin-bottom: .9rem;
}
.tile__ic svg, .tile__ic img { width: 20px; height: 20px; }
.tile h3 {
  font-family: Fraunces, serif;
  font-size: 1.16rem;
  margin: 0 0 .35rem;
  line-height: 1.22;
}
.tile p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.tile__num {
  display: block;
  font-family: Fraunces, serif;
  font-style: italic;
  color: var(--gold);
  font-size: .95rem;
  margin-bottom: .5rem;
}

/* —— Services index (inner pages) —— */
.section-header--center { flex-direction: column; align-items: center; text-align: center; }
.section-alt { background: #fff; }
.care-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.care-index li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.35rem 1.2rem 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
.care-index li:nth-child(odd) { padding-right: 2rem; }
.care-index li:nth-child(even) { padding-left: 2rem; border-left: 1px solid var(--line); }
.care-index span {
  font-family: Fraunces, serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
}
.care-index h3 {
  font-family: Figtree, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0;
}

.svc-grid, .services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.svc-item, .service-card {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.4rem 1.35rem 0;
  background: transparent;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.svc-item:nth-child(odd), .service-card:nth-child(odd) { padding-right: 1.6rem; }
.svc-item:nth-child(even), .service-card:nth-child(even) {
  padding-left: 1.6rem;
  border-left: 1px solid var(--line);
}
.svc-item__ic, .service-card__icon, .service-card .ic, .contact__info-icon, .cred-card__icon, .mv-card__icon, .extra-care__icon {
  width: auto; height: auto; margin: 0;
  background: none;
  color: var(--gold);
  display: block;
  border-radius: 0;
}
.svc-item__ic svg, .service-card__icon svg, .contact__info-icon svg { width: 20px; height: 20px; }
.svc-item h3, .service-card h3 {
  font-family: Fraunces, serif;
  font-size: 1.25rem;
  margin: 0 0 .25rem;
}
.service-card p { color: var(--muted); margin: 0; font-size: .95rem; }

/* —— Lodge / quote splits —— */
.lodge {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: var(--deep);
  color: var(--cream);
}
.lodge__photo { margin: 0; position: relative; }
.lodge__photo img, .quote-sec__photo img, .about__image img, .kindness__media img, .home-band__photo img {
  width: 100%; height: 100%; object-fit: cover; min-height: 560px;
  object-position: center 72%;
}
.lodge__copy, .home-band__copy, .kindness__copy, .about__content, .approach__copy {
  padding: clamp(2.4rem, 5vw, 4.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lodge__copy p, .home-band__copy p { color: rgba(247, 242, 232, .8); max-width: 40ch; }
.ticks, .home-band__list {
  list-style: none;
  margin: 1rem 0 1.4rem;
  padding: 0;
  display: grid;
  gap: .7rem;
}
.ticks li, .home-band__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-left: 0;
}
.ticks__ic {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid rgba(184, 146, 58, .42);
  color: var(--gold-light);
  flex-shrink: 0;
}
.ticks__ic svg { width: 16px; height: 16px; }

.quote-sec, .kindness, .about__grid, .approach__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: #fff;
}
.about { padding: 0; }
.about.section-pad { padding: 0; }
.about__grid { align-items: stretch; gap: 0; }
.about__grid--reverse { direction: rtl; }
.about__grid--reverse > * { direction: ltr; }
.quote-sec__copy, .kindness__copy, .about__content {
  padding: clamp(2.4rem, 5vw, 4.4rem);
}
.quote-sec__lead, .kindness__copy p, .about__content p { color: var(--muted); max-width: 44ch; }
.why-list {
  list-style: none;
  margin: 1.2rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.why-list li, .why-list__item {
  padding-left: 1.1rem;
  position: relative;
  font-weight: 500;
}
.why-list li::before, .why-list__item::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 8px; height: 1px;
  background: var(--gold);
}
.why-list__item { display: block; }
.why-list__item svg { display: none; }
.about__image, .about__media { min-height: 420px; }
.about__image { border-radius: 0; box-shadow: none; overflow: hidden; }
.about__deco { display: none; }

.film { padding: 4.6rem 0 5rem; }
.film__track, .gallery-row__track {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-auto-rows: 210px;
  gap: 10px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.film__shot, .gallery-row .gallery__item, .gallery__masonry .gallery__item {
  border: 0; padding: 0; background: none; cursor: pointer;
  overflow: hidden; display: block;
  width: 100%; min-width: 0; height: 100%; min-height: 180px;
}
.film__shot--lead, .gallery__item--wide { grid-row: span 2; }
.film__shot img, .gallery-row .gallery__item img, .gallery__masonry img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.92);
  transition: transform .6s ease, filter .6s ease;
}
.film__shot:hover img, .gallery__item:hover img { transform: scale(1.05); filter: saturate(1.05); }
.gallery-videos { padding-top: 1.2rem; }
.gallery-videos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gallery-videos__grid--one { grid-template-columns: 1fr; max-width: 780px; }
.gallery-videos__item { margin: 0; background: #fff; border: 1px solid var(--line); }
.gallery-videos__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--deep);
  overflow: hidden;
}
.gallery-videos__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.gallery-videos__cap {
  padding: .85rem 1.1rem 1rem;
  font-size: .95rem;
  color: var(--ink);
}
.gallery__masonry .gallery__item { height: 240px; }
.gallery__overlay { display: none; }

.visit, .cta, .cta-band {
  background: var(--deep);
  color: var(--cream);
  padding: 6.5rem 0;
}
.visit__grid, .help__grid, .contact__grid, .credentials-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.visit p, .cta p, .cta-band p { color: rgba(247, 242, 232, .78); max-width: 42ch; }
.visit__meta, .help__meta { display: grid; gap: 0; border-top: 1px solid rgba(247, 242, 232, .14); }
.visit__meta b, .help__meta b {
  display: block;
  margin: 0 0 .35rem;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}
.visit__meta a, .help__meta a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(247, 242, 232, .14);
}
.visit .tile__ic {
  margin: 0;
  color: var(--gold-light);
  border-color: rgba(184, 146, 58, .45);
}
.visit__meta small, .help__meta small { display: block; color: var(--sage); font-size: .88rem; margin-top: .2rem; }
.cta__panel, .cta__content { text-align: left; max-width: 720px; }
.cta .btn--ghost { border-color: rgba(247, 242, 232, .4); color: var(--cream); }

.credentials-band { padding: 5rem 0; background: #fff; }
.credentials-band__cards, .philosophy__grid, .extra-care__grid, .mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.cred-card, .philosophy__card, .philosophy__grid article, .extra-care__card, .mv-card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 1.5rem 1.4rem 1.5rem 0;
}
.cred-card:nth-child(even), .philosophy__card:nth-child(even), .extra-care__card:nth-child(even), .mv-card:nth-child(even) {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}
.philosophy__num, .approach__num {
  font-family: Fraunces, serif;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: .4rem;
}
.role-tag, .cred-pills { color: var(--muted); }
.credentials-note { color: var(--muted); margin-top: 1.4rem; }
.approach { padding: 5rem 0; }
.approach__list { display: grid; gap: 1.2rem; padding: clamp(2rem, 4vw, 3.5rem); }
.approach__item { display: grid; grid-template-columns: 2.4rem 1fr; gap: 1rem; }
.mission { padding: 5rem 0; }

.contact { padding: 5rem 0 0; }
.contact__info-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.contact__info-item {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: .9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact__info-icon { color: var(--gold); }
.contact__info-item strong { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.contact__info-item a { text-decoration: none; display: block; }
.contact__form-wrap {
  background: var(--white);
  padding: 1.8rem 1.8rem 2rem;
  border: 1px solid var(--line);
}
.contact__form-wrap h3 { margin: 0 0 .35rem; font-size: 1.45rem; }
.contact__form-wrap > p { color: var(--muted); margin: 0 0 1.2rem; }
.contact-form { display: grid; gap: .85rem; position: relative; }
.contact-form .btn { width: 100%; }
.contact-map iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.form-group { display: grid; gap: .3rem; }
.form-group label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group textarea, .form-group select {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  padding: .7rem 0;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.hp-field { position: absolute; left: -9999px; }
.contact__map iframe, .contact__map--full iframe { width: 100%; min-height: 380px; border: 0; display: block; margin-top: 3rem; }

.faq { padding: 4.5rem 0; }
.faq-sec { padding-top: 4.2rem; }
.faq__list {
  max-width: 820px;
  margin: 0;
  border-top: 1px solid var(--line);
}
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  font-family: Fraunces, serif;
  font-size: 1.32rem;
  line-height: 1.25;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  flex: none;
  font-family: Figtree, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.02rem;
}

.page-home .container { width: min(1280px, calc(100% - 48px)); }
.page-home h1 { font-size: clamp(3.45rem, 8.4vw, 7.35rem); }
.page-home h2 { font-size: clamp(2.25rem, 4.5vw, 3.7rem); }
.page-home .hero__stage {
  width: min(1280px, calc(100% - 48px));
  max-width: 820px;
  padding: 9.6rem 0 6rem;
}
.page-home .hero__lead { font-size: 1.18rem; max-width: 42ch; }
.page-home .sec { padding: 5.8rem 0; }
.page-home .faq-sec { padding-top: 4.4rem; padding-bottom: 5.8rem; }
.page-home .split,
.page-home .split__photo img { min-height: 620px; }
.page-home .tiles { gap: 16px; }
.page-home .tile { padding: 1.7rem 1.45rem 1.55rem; }
.page-home .tile h3 { font-size: 1.24rem; }
.page-home .film__track {
  grid-auto-rows: 260px;
  gap: 12px;
}

.footer {
  background: var(--deep);
  color: var(--cream);
  border-top: 1px solid rgba(184, 146, 58, .28);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr 1fr .8fr;
  gap: 2rem;
  padding: 3.2rem 0 2rem;
}
.footer__brand p { color: var(--sage); max-width: 28ch; }
.footer h4 {
  margin: 0 0 .8rem;
  font-family: Figtree, sans-serif;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}
.footer__col { display: flex; flex-direction: column; gap: .4rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col a, .footer__col span { text-decoration: none; color: rgba(247, 242, 232, .86); font-size: .95rem; }
.footer__social { display: flex; gap: .5rem; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(184, 146, 58, .45);
  display: grid; place-items: center;
  color: var(--gold-light);
  text-decoration: none;
}
.footer__handle { color: var(--sage); }
.footer__bottom {
  border-top: 1px solid rgba(247, 242, 232, .08);
  text-align: center;
  padding: 1rem 0 1.25rem;
  color: rgba(247, 242, 232, .45);
  font-size: .84rem;
}

.lightbox { position: fixed; inset: 0; background: rgba(14, 36, 25, .92); display: none; place-items: center; z-index: 90; }
.lightbox.is-open { display: grid; }
.lightbox[hidden] { display: none !important; }
.lightbox__img { max-width: min(90vw, 1000px); max-height: 82vh; object-fit: contain; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: var(--gold); border: 0; color: var(--deep);
  width: 44px; height: 44px; cursor: pointer;
}
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.toast {
  position: fixed; bottom: 1.4rem; right: 1.4rem;
  background: var(--forest); color: var(--cream);
  padding: .85rem 1.1rem; display: none; gap: .5rem; align-items: center; z-index: 80;
}
.toast.is-visible { display: flex; }
.reveal { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .quiet__services,
  .quiet__why,
  .quiet__photos { grid-template-columns: 1fr 1fr; }
  .quiet__end { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--flip { direction: ltr; }
  .split__photo img,
  .page-home .split,
  .page-home .split__photo img { min-height: 0; }
  .split__photo {
    min-height: 280px;
    height: min(46vw, 380px);
    overflow: hidden;
  }
  .split__photo img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center 30%;
  }
  .rows--2 { grid-template-columns: 1fr; }
  .rows--2 li:nth-child(even) { padding-left: 0; border-left: 0; }
  .path__list, .path__list--3 { grid-template-columns: 1fr 1fr; }
  .path__list::before { display: none; }
  .sec__head, .index-sec__head, .film__head, .split-head, .section-header { flex-direction: column; align-items: flex-start; }
  .tiles, .tiles--4 { grid-template-columns: 1fr 1fr; }
  .care-index, .svc-grid, .services__grid { grid-template-columns: 1fr; }
  .care-index li:nth-child(even), .svc-item:nth-child(even), .service-card:nth-child(even) {
    padding-left: 0; border-left: 0;
  }
  .film__track, .gallery-row__track { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .page-home .film__track { grid-auto-rows: 220px; }
  .film__shot--lead, .gallery__item--wide { grid-column: 1 / -1; grid-row: auto; min-height: 260px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 92vh; }
  .page-hero { min-height: 54vh; }
  .hero__rail { display: none; }
  .credentials-band__cards, .philosophy__grid, .extra-care__grid, .mission__grid { grid-template-columns: 1fr; }
  .cred-card:nth-child(even), .philosophy__card:nth-child(even), .extra-care__card:nth-child(even), .mv-card:nth-child(even) {
    padding-left: 0; border-left: 0;
  }
}

@media (max-width: 860px) {
  body.nav-open { overflow: hidden; }
  body.nav-open .header,
  body.nav-open .header.is-scrolled {
    position: fixed;
    background: transparent;
    box-shadow: none;
  }
  body.nav-open .header::before { opacity: 0; }
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    background: #0E2419;
    color: #F7F2E8;
    padding: 6.5rem 1.6rem 2rem;
    z-index: 55;
    gap: 0;
    overflow-y: auto;
  }
  .nav.is-open .nav__link,
  .header.is-scrolled .nav.is-open .nav__link {
    color: #F7F2E8;
    text-shadow: none;
    font-size: 1.45rem;
    font-family: Fraunces, Georgia, serif;
    padding: .85rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(247, 242, 232, .12);
  }
  .nav.is-open .nav__link.is-active::after,
  .nav.is-open .nav__link:hover::after {
    bottom: .55rem;
    right: auto;
    width: 2.2rem;
  }
  .nav.is-open .nav__mobile-cta { margin-top: 1.4rem; }
  .nav__mobile-cta { display: inline-flex; width: max-content; }
  .header__cta { display: none; }
  .nav-toggle { display: grid; place-items: center; position: relative; z-index: 60; color: #F7F2E8; }
  .header.is-scrolled .nav-toggle { color: var(--forest); }
  body.nav-open .nav-toggle,
  body.nav-open .header.is-scrolled .nav-toggle { color: #F7F2E8; }
  body.nav-open .logo { position: relative; z-index: 62; }
  .header { background: transparent; }
  .header.is-scrolled { background: #fff; }
  .header__inner { width: min(1180px, calc(100% - 32px)); grid-template-columns: 1fr auto; }
  .form-row, .gallery__masonry { grid-template-columns: 1fr 1fr; }
  .visit__grid, .contact__grid { grid-template-columns: 1fr; }
  .logo__badge { padding: .55rem 1rem .6rem .75rem; border-radius: 0 0 24px 24px; }
  .logo__img { height: 52px; max-width: min(240px, 64vw); }
  .hero__stage, .page-hero__content { padding-top: 7rem; }
  h1, .page-home h1 { font-size: clamp(2.45rem, 12vw, 4.1rem); }
  .split, .split__photo,
  .page-home .split, .page-home .split__photo img { min-height: 0; }
  .split__photo {
    min-height: 240px;
    height: min(52vw, 320px);
    overflow: hidden;
  }
  .split__photo img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center 30%;
  }
  .lodge__photo img, .quote-sec__photo img, .about__image img,
  .kindness__media img, .home-band__photo img {
    min-height: 280px;
    height: min(48vw, 340px);
    object-position: center 30%;
  }
}

@media (max-width: 560px) {
  .quiet__services,
  .quiet__why,
  .quiet__photos { grid-template-columns: 1fr; }
  .path__list, .path__list--3 { grid-template-columns: 1fr; }
  .tiles, .tiles--4 { grid-template-columns: 1fr; }
  .gallery-videos__grid { grid-template-columns: 1fr; }
  .film__track, .gallery-row__track, .gallery__masonry, .form-row,
  .page-home .film__track {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 8px;
  }
  .film__shot, .film__shot--lead, .gallery__item--wide,
  .gallery-row .gallery__item, .gallery__masonry .gallery__item {
    position: relative;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: auto;
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }
  .film__shot--lead { aspect-ratio: 5 / 4; }
  .film__shot img, .gallery-row .gallery__item img, .gallery__masonry img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
  }
  .btn-group .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .ribbon__inner { justify-content: flex-start; overflow-x: auto; }
  .hero, .page-home .hero { min-height: 88vh; }
  .hero .hero__bg, .page-hero__bg { object-position: center 28%; }
  .page-hero--about, .page-hero--inner { min-height: 58vh; }
  .contact-map iframe, .contact__map iframe { min-height: 260px; }
}
