:root {
  --ink: #11110f;
  --charcoal: #151513;
  --paper: #f4efe7;
  --white: #ffffff;
  --gold: #c5a26e;
  --gold-light: #e1c694;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--white); font-family: "DM Sans", Arial, sans-serif; }
body.theme-light { background: var(--paper); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  min-height: 118px;
  padding: 18px clamp(22px, 5vw, 72px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(180deg, rgba(8, 8, 7, 0.56), rgba(8, 8, 7, 0));
  transition:
    background 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    min-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-header.is-scrolled {
  top: 14px;
  left: 50%;
  right: auto;
  width: min(1120px, calc(100% - 48px));
  min-height: 58px;
  padding: 7px 22px;
  background: rgba(12, 12, 10, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.site-header.is-scrolled .brand__text span,
.site-header.is-scrolled .nav-main a,
.site-header.is-scrolled .btn-pill {
  color: rgba(255, 255, 255, 0.92);
}

.site-header.is-scrolled .brand__text small {
  color: var(--gold-light);
}

.site-header.is-scrolled .btn-pill {
  border-color: rgba(255, 255, 255, 0.38);
}

.site-header.is-scrolled .btn-pill:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.site-header.is-scrolled .brand {
  min-width: 206px;
}

.site-header.is-scrolled .brand__icon {
  width: 68px;
  height: 68px;
  transform: translate(10px, 4px);
}

.site-header.is-scrolled .brand__text span {
  font-size: 1.18rem;
}

.site-header.is-scrolled .brand__text small {
  font-size: 0.5rem;
}

.brand {
  min-width: 260px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.brand__icon {
  width: 135px;
  height: 135px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
  transform: translate(22px, 18px);
}

.brand__text {
  display: grid;
  gap: 3px;
  font-family: "Cormorant Garamond", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1;
  transform: translateY(2px);
}

.brand__text span { font-size: 1.48rem; }
.brand__text small { color: var(--gold-light); font-size: 0.62rem; letter-spacing: 0.42em; }

.nav-main {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.nav-main a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
}

.nav-main a:hover { color: var(--gold-light); }
.nav-main__with-caret::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.78;
}

.btn-pill, .btn-dark {
  min-height: 44px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-pill:hover { transform: translateY(-1px); background: var(--white); color: var(--ink); }
.btn-pill--gold { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.btn-dark { color: var(--ink); border-color: rgba(17, 17, 15, 0.28); }
.btn-dark:hover { background: var(--ink); color: var(--white); }

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.theme-toggle {
  position: fixed;
  right: clamp(18px, 3vw, 28px);
  bottom: clamp(18px, 3vw, 28px);
  z-index: 90;
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(12, 12, 10, 0.78);
  backdrop-filter: blur(10px);
  color: var(--white);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover { transform: translateY(-2px); background: var(--white); color: var(--ink); }
.theme-toggle__icon { width: 18px; height: 18px; }
.theme-toggle__icon--moon { display: none; }
body.theme-light .theme-toggle__icon--sun { display: none; }
body.theme-light .theme-toggle__icon--moon { display: block; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 0;
}

.nav-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: currentColor; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 120px clamp(22px, 5vw, 72px) 72px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 80% 44%, rgba(197, 162, 110, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(9, 10, 10, 0.78), rgba(9, 10, 10, 0.2) 48%, rgba(9, 10, 10, 0.7)),
    linear-gradient(180deg, rgba(9, 10, 10, 0.3), rgba(9, 10, 10, 0.62) 68%, var(--ink)),
    url("../images/hero-mountains.png") center / cover no-repeat;
}

.hero__slides {
  width: min(780px, 100%);
  position: relative;
  z-index: 1;
}

.hero__slide {
  display: none;
  animation: heroReveal 900ms ease-out both;
}

.hero__slide.is-active { display: block; }

.hero__content { width: 100%; margin-top: 20px; }

.hero-scroll {
  position: absolute;
  top: 50%;
  right: clamp(22px, 4vw, 48px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  user-select: none;
}

.hero-scroll__current,
.hero-scroll__total {
  min-width: 1.6em;
  text-align: center;
}

.hero-scroll__total {
  color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: color 0.25s ease;
}

.hero-scroll__total:hover { color: rgba(255, 255, 255, 0.72); }
.hero-scroll.is-on-last .hero-scroll__total { color: rgba(255, 255, 255, 0.92); }

.hero-scroll__track {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 132px;
  padding: 2px 0;
}

.hero-scroll__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-scroll__dot {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-scroll__dot:hover { border-color: rgba(255, 255, 255, 0.95); }

.hero-scroll__dot.is-active {
  width: 9px;
  height: 9px;
  border-color: var(--white);
  background: var(--white);
}

body.theme-light .hero-scroll { color: rgba(17, 17, 15, 0.78); }
body.theme-light .hero-scroll__total { color: rgba(17, 17, 15, 0.34); }
body.theme-light .hero-scroll.is-on-last .hero-scroll__total { color: rgba(17, 17, 15, 0.82); }
body.theme-light .hero-scroll__line { background: rgba(17, 17, 15, 0.22); }
body.theme-light .hero-scroll__dot { border-color: rgba(17, 17, 15, 0.48); }
body.theme-light .hero-scroll__dot.is-active { border-color: var(--ink); background: var(--ink); }
.eyebrow { margin: 0 0 18px; color: var(--gold-light); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.42em; text-transform: uppercase; }

.hero h1, .section-heading h2, .philosophy h2, .promise h2, .journeys h2, .journal-preview h2, .footer-cta h2, .simple-page h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  line-height: 0.98;
}

.hero h1 { font-size: clamp(3.8rem, 8vw, 7.1rem); text-wrap: balance; }
.hero h1 em { color: var(--gold-light); font-weight: 400; }
.hero__intro { width: min(560px, 100%); margin: 28px auto 30px; color: rgba(255,255,255,0.88); font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.65; }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 9px; border-bottom: 1px solid var(--gold); color: var(--gold-light); text-decoration: none; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem; font-weight: 700; }

.section-narrow { width: min(640px, calc(100% - 44px)); margin: 0 auto; text-align: center; }
.philosophy { padding: 104px 0 76px; }
.philosophy h2 { font-size: clamp(2.7rem, 6vw, 4.4rem); }
.philosophy p:last-child { margin: 22px auto 0; color: rgba(255,255,255,0.76); font-size: 1.02rem; line-height: 1.7; }

.pillars { padding: 28px clamp(18px, 5vw, 72px) 96px; }
.pillars .section-heading { width: min(1200px, 100%); }
.pillars .section-heading h2 { white-space: nowrap; font-size: clamp(2.7rem, 6vw, 4.4rem); }
.section-heading { width: min(760px, 100%); margin: 0 auto 34px; text-align: center; }
.section-heading h2 { font-size: clamp(2.6rem, 5vw, 4.4rem); }
.section-heading--split { width: min(1120px, 100%); display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; text-align: left; }
.section-heading--split > div { flex: 1; min-width: 0; }
.section-heading--split .btn-dark {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 12px 30px;
  border: 1px solid var(--gold);
  background: rgba(197, 162, 110, 0.14);
  color: var(--ink);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  box-shadow: 0 6px 18px rgba(34, 26, 16, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.section-heading--split .btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(156, 111, 58, 0.24);
}

.pillar-grid { width: min(1160px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.pillar-card {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  padding: 24px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(12,12,10,0.05), rgba(12,12,10,0.4) 35%, rgba(12,12,10,0.92)), var(--pillar-image) center / cover no-repeat;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.pillar-card:hover { transform: translateY(-8px); border-color: rgba(225,198,148,0.62); box-shadow: 0 30px 90px rgba(0,0,0,0.48); }
.pillar-card--heritage { --pillar-image: url("../images/pillar-heritage.jpg"); }
.pillar-card--adventure { --pillar-image: url("../images/pillar-adventure.jpg"); }
.pillar-card--stillness { --pillar-image: url("../images/pillar-stillness.jpg"); }
.pillar-card--wonder { --pillar-image: url("../images/pillar-wonder.jpg"); }
.pillar-card--celebration { --pillar-image: url("../images/pillar-celebration.jpg"); }
.pillar-card h3, .promise h3, .journey-card h3 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 400; }
.pillar-card h3 { font-size: 1.45rem; line-height: 1.05; text-transform: uppercase; color: var(--gold-light); }
.pillar-card p { min-height: 112px; margin: 16px 0 18px; color: rgba(255,255,255,0.72); font-size: 0.87rem; line-height: 1.6; }
.pillar-card a { color: var(--gold-light); text-decoration: none; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; font-weight: 700; }

.promise { padding: 78px clamp(22px, 7vw, 108px); display: grid; grid-template-columns: minmax(260px, 390px) 1fr; gap: clamp(34px, 7vw, 96px); align-items: center; background: linear-gradient(90deg, rgba(15,15,13,0.98), rgba(15,15,13,0.76)), url("../images/hero-mountains.png") center 62% / cover no-repeat; }
.promise h2 { font-size: clamp(2.4rem, 4vw, 3.6rem); }
.promise__intro p:not(.eyebrow) { color: rgba(255,255,255,0.76); line-height: 1.65; }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 9px;
}

.promise-grid article {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 9px;
  align-content: start;
}

.promise-grid span { color: var(--gold-light); font-size: 0.78rem; letter-spacing: 0.18em; line-height: 1; }
.promise-grid h3 { font-size: 1.25rem; line-height: 1.25; min-height: calc(1.25rem * 1.25 * 2); }
.promise-grid p { margin: 0; color: rgba(255,255,255,0.68); line-height: 1.5; }

@supports (grid-template-rows: subgrid) {
  .promise-grid h3 { min-height: 0; }
}

.journeys { padding: 82px clamp(22px, 5vw, 72px) 96px; background: var(--paper); color: var(--ink); }
.journeys .eyebrow { color: #9b6f3a; }
.journey-grid { width: min(1120px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.journey-card { overflow: hidden; border-radius: 8px; background: #fffaf3; box-shadow: 0 16px 38px rgba(34,26,16,0.11); transition: transform 0.35s ease, box-shadow 0.35s ease; }
.journey-card:hover { transform: translateY(-6px); box-shadow: 0 24px 58px rgba(34,26,16,0.18); }
.journey-card__image { min-height: 260px; background: linear-gradient(180deg, rgba(12,12,10,0.05), rgba(12,12,10,0.18)), url("../images/hero-mountains.png") center / cover no-repeat; }
.journey-card__image--one { background-position: 50% center; }
.journey-card__image--two { background-position: 28% center; }
.journey-card__image--three { background-position: 78% center; }
.journey-card__body { padding: 22px; }
.journey-card__body p { margin: 0 0 8px; color: #9b6f3a; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; font-weight: 700; }
.journey-card h3 { font-size: 1.7rem; line-height: 1.12; }
.journey-card__body span { display: block; margin-top: 18px; color: rgba(17,17,15,0.58); font-size: 0.82rem; }

.journal-preview { padding: 96px 22px; text-align: center; width: min(720px, 100%); margin: 0 auto; }
.journal-preview h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.journal-preview p:last-child { color: rgba(255,255,255,0.68); line-height: 1.65; }

.footer-cta {
  padding: clamp(48px, 6vw, 68px) 22px;
  text-align: center;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(197, 162, 110, 0.2);
}

.footer-cta__inner {
  width: min(520px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.footer-cta h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
  text-wrap: balance;
  letter-spacing: 0.01em;
}

.footer-cta p {
  margin: 0;
  max-width: 34ch;
  color: rgba(17, 17, 15, 0.52);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-cta__btn {
  margin-top: 8px;
  min-width: 0;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(17, 17, 15, 0.18);
  background: transparent;
  color: var(--ink);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-cta__btn.btn-pill--gold {
  border-color: rgba(17, 17, 15, 0.18);
  background: transparent;
  color: var(--ink);
}

.footer-cta__btn.btn-pill--gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(156, 111, 58, 0.14);
}

.site-footer {
  background: #0b0b0b;
  color: rgba(244, 239, 231, 0.78);
  border-top: 1px solid rgba(197, 162, 110, 0.28);
}

.site-footer__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 104px) clamp(22px, 5vw, 72px) clamp(56px, 7vw, 80px);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: stretch;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col--brand { gap: 28px; }

.footer-identity {
  display: grid;
  gap: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--paper);
  text-decoration: none;
  transition: color 250ms ease;
}

.footer-brand:hover { color: var(--gold-light); }

.footer-brand__icon {
  width: 74px;
  height: 74px;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-brand__text {
  display: grid;
  gap: 5px;
  font-family: "Cormorant Garamond", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1;
}

.footer-brand__name {
  font-size: 1.28rem;
  line-height: 1.05;
}

.footer-brand small {
  color: var(--gold-light);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.34em;
}

.footer-tagline {
  margin: 0;
  padding-left: calc(74px + 12px);
  max-width: 24ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  line-height: 1.55;
  color: rgba(244, 239, 231, 0.82);
}

.footer-copyright {
  margin: auto 0 0;
  padding-left: calc(74px + 12px);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(244, 239, 231, 0.42);
}

.footer-col__title {
  margin: 0;
  min-height: 74px;
  display: flex;
  align-items: center;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-links,
.footer-social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

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

.footer-link {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: rgba(244, 239, 231, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
  color: var(--gold-light);
}

.footer-link:hover::after {
  transform: scaleX(1);
}

.footer-muted {
  font-size: 0.9rem;
  color: rgba(244, 239, 231, 0.52);
  line-height: 1.5;
}

.footer-social { margin-top: 6px; gap: 12px; }

.footer-social__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(244, 239, 231, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1), transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social__link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-social__link:hover {
  color: var(--gold-light);
  transform: translateX(2px);
}

body.theme-light .site-header {
  background: linear-gradient(180deg, rgba(244, 239, 231, 0.72), rgba(244, 239, 231, 0));
}

body.theme-light .site-header.is-scrolled {
  background: rgba(244, 239, 231, 0.48);
  border-bottom-color: rgba(17, 17, 15, 0.1);
  box-shadow: 0 10px 28px rgba(17, 17, 15, 0.08);
}

body.theme-light .site-header.is-scrolled .brand__text span,
body.theme-light .site-header.is-scrolled .nav-main a,
body.theme-light .site-header.is-scrolled .btn-pill {
  color: var(--ink);
}

body.theme-light .site-header.is-scrolled .brand__text small,
body.theme-light .site-header.is-scrolled .nav-main a:hover {
  color: #8c6536;
}

body.theme-light .site-header.is-scrolled .btn-pill {
  border-color: rgba(17, 17, 15, 0.28);
}

body.theme-light .site-header.is-scrolled .btn-pill:hover {
  background: var(--ink);
  color: var(--paper);
}

body.theme-light .hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 44%, rgba(17, 17, 15, 0.13), transparent 31%),
    linear-gradient(90deg, rgba(244, 239, 231, 0.9), rgba(244, 239, 231, 0.62) 48%, rgba(244, 239, 231, 0.86)),
    linear-gradient(180deg, rgba(244, 239, 231, 0.42), rgba(244, 239, 231, 0.8) 72%, var(--paper)),
    url("../images/hero-mountains.png") center / cover no-repeat;
}

body.theme-light .brand__text span,
body.theme-light .nav-main a,
body.theme-light .btn-pill {
  color: var(--ink);
}

body.theme-light .brand__text small,
body.theme-light .eyebrow,
body.theme-light .hero h1 em,
body.theme-light .text-link {
  color: #8c6536;
}

body.theme-light .hero__intro,
body.theme-light .philosophy p:last-child,
body.theme-light .journal-preview p:last-child,
body.theme-light .simple-page p {
  color: rgba(17, 17, 15, 0.76);
}

body.theme-light .btn-pill {
  border-color: rgba(17, 17, 15, 0.44);
}

body.theme-light .btn-pill:hover {
  background: var(--ink);
  color: var(--paper);
}

body.theme-light .theme-toggle {
  border-color: rgba(17, 17, 15, 0.28);
  background: rgba(244, 239, 231, 0.88);
  color: var(--ink);
}

body.theme-light .theme-toggle:hover {
  background: var(--ink);
  color: var(--paper);
}

body.theme-light .philosophy,
body.theme-light .pillars,
body.theme-light .journal-preview,
body.theme-light .simple-page {
  background: var(--paper);
  color: var(--ink);
}

body.theme-light .pillar-card {
  border-color: rgba(17, 17, 15, 0.18);
  background:
    linear-gradient(180deg, rgba(244,239,231,0.18), rgba(244,239,231,0.44) 35%, rgba(244,239,231,0.92)),
    url("../images/hero-mountains.png") center / cover no-repeat;
  color: var(--ink);
}

body.theme-light .pillar-card p {
  color: rgba(17, 17, 15, 0.7);
}

body.theme-light .pillar-card h3 {
  color: #8c6536;
}

body.theme-light .pillar-card a {
  color: #8c6536;
}

body.theme-light .promise {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(244,239,231,0.96), rgba(244,239,231,0.78)),
    url("../images/hero-mountains.png") center 62% / cover no-repeat;
}

body.theme-light .promise__intro p:not(.eyebrow),
body.theme-light .promise-grid p {
  color: rgba(17, 17, 15, 0.72);
}

body.theme-light .promise-grid span {
  color: #8c6536;
}

body.theme-light .journeys {
  background: var(--ink);
  color: var(--paper);
}

body.theme-light .journey-card {
  background: #191815;
  color: var(--paper);
  box-shadow: 0 16px 38px rgba(0,0,0,0.22);
}

body.theme-light .journey-card__body span {
  color: rgba(244,239,231,0.58);
}

body.theme-light .btn-dark {
  color: var(--paper);
  border-color: rgba(244, 239, 231, 0.34);
}

body.theme-light .btn-dark:hover {
  background: var(--paper);
  color: var(--ink);
}

body.theme-light .site-footer {
  background: #0b0b0b;
  color: rgba(244, 239, 231, 0.78);
  border-top-color: rgba(197, 162, 110, 0.28);
}

body.theme-light .footer-brand,
body.theme-light .footer-link,
body.theme-light .footer-social__link {
  color: rgba(244, 239, 231, 0.72);
}

body.theme-light .footer-brand:hover,
body.theme-light .footer-link:hover,
body.theme-light .footer-social__link:hover {
  color: var(--gold-light);
}

.simple-page { width: min(760px, calc(100% - 44px)); min-height: 100svh; margin: 0 auto; padding: 150px 0 80px; }
.simple-page h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
.simple-page p { color: rgba(255,255,255,0.78); line-height: 1.7; }
form { display: grid; gap: 12px; margin-top: 28px; }
input, form button { min-height: 44px; font: inherit; }
input { border: 1px solid rgba(255,255,255,0.22); border-radius: 6px; padding: 0 12px; background: rgba(255,255,255,0.08); color: var(--white); }
form button { border: 0; border-radius: 999px; background: var(--gold); color: var(--ink); font-weight: 700; }
form button:disabled { opacity: 0.7; cursor: not-allowed; }
.form-status { margin: 0; font-size: 0.92rem; color: var(--gold-light); }
.form-status--error { color: #f0a8a8; }
.form-frame { display: none; width: 0; height: 0; border: 0; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .header-actions .btn-pill { display: none; }
  .header-actions { gap: 0; }
  .nav-toggle { display: block; }
  .nav-main { position: absolute; top: calc(100% - 8px); left: 22px; right: 22px; display: none; padding: 20px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; background: rgba(17,17,15,0.96); box-shadow: var(--shadow); }
  .nav-main.is-open { display: grid; gap: 16px; }
  .pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promise, .promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .site-header { min-height: 86px; padding: 14px 18px; }
  .brand { min-width: 0; }
  .brand__icon { width: 94px; height: 94px; transform: translate(12px, 10px); }
  .brand__text span { font-size: 1.05rem; }
  .brand__text small { font-size: 0.5rem; }
  .hero { min-height: 92svh; align-items: end; padding-bottom: 92px; background-position: 58% center; }
  .hero-scroll { display: none; }
  .hero h1 { font-size: clamp(3.5rem, 16vw, 5.6rem); }
  .section-heading--split, .promise, .promise-grid, .journey-grid, .pillar-grid { grid-template-columns: 1fr; }
  .section-heading--split { display: grid; }
  .pillar-card { min-height: 360px; }
  .pillar-card p { min-height: 0; }
  .pillars .section-heading h2 { white-space: normal; }
  .promise { padding: 56px 22px; }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-col { justify-items: center; align-items: center; }
  .footer-brand,
  .footer-link,
  .footer-social__link { margin-inline: auto; }
  .footer-brand { justify-content: center; }
  .footer-tagline,
  .footer-copyright { padding-left: 0; max-width: none; text-align: center; }
  .footer-col__title { min-height: 0; justify-content: center; }
  .footer-social__link:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
