:root {
  --clay: #8f3a22;
  --clay-deep: #732c18;
  --ochre: #d4a574;
  --olive: #5c5344;
  --olive-deep: #2f291f;
  --umber: #3c3228;
  --sand: #e8d4bc;
  --parchment: #f3eadf;
  --ivory: #faf4ec;
  --ink: #2c241c;
  --muted: #74685a;
  --line: rgba(47, 41, 31, 0.12);
  --white: #fffdf8;
  --shadow: 0 28px 60px rgba(47, 41, 31, 0.16);
  --display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 480px at 8% -8%, rgba(232, 212, 188, 0.7), transparent 58%),
    radial-gradient(900px 420px at 100% 12%, rgba(212, 165, 116, 0.16), transparent 50%),
    var(--ivory);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, select, input, textarea { font: inherit; color: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--olive-deep);
  color: var(--ivory);
  padding: 0.6rem 1rem;
  z-index: 80;
}
.skip:focus { top: 1rem; }

.wrap {
  width: min(1180px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--ochre); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0;
}
h1 { font-size: clamp(2.5rem, 4.2vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); }
h1 em, h2 em { font-style: normal; color: var(--ochre); font-weight: 600; }

.lead, .hero-lead, .section-lead {
  color: var(--muted);
  max-width: 38rem;
}
.section-lead {
  margin: 0.9rem 0 0;
  font-size: 1.02rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #6d6557 0%, var(--olive) 100%);
  color: var(--ivory);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.22) 50%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 28px rgba(47, 41, 31, 0.16); }
.btn:hover::after { transform: translateX(130%); }
.btn-clay { background: linear-gradient(180deg, #a54a2d 0%, var(--clay) 100%); }
.btn-clay:hover { background: linear-gradient(180deg, #b35233 0%, var(--clay-deep) 100%); }
.btn-ghost-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250, 244, 236, 0.32);
}
.btn-ghost-light:hover { background: rgba(250, 244, 236, 0.1); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 244, 236, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled {
  background: rgba(250, 244, 236, 0.98);
  border-bottom-color: rgba(47, 41, 31, 0.18);
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
}
.brand img {
  height: 58px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand b {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--olive-deep);
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 0.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.62rem;
  color: var(--clay);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  color: var(--olive);
  white-space: nowrap;
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.25s ease;
}
.nav-links a:not(.phone-link)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--clay), var(--ochre));
  transition: width 0.35s var(--ease);
}
.nav-links a[aria-current="page"], .nav-links a:hover { color: var(--clay); }
.nav-links a[aria-current="page"]::after,
.nav-links a:not(.phone-link):hover::after { width: 100%; }

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.phone-link {
  color: var(--olive);
  font-weight: 500;
  font-size: 0.92rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-link:hover { color: var(--clay); }
.nav-menu-phone,
.nav-menu-cta { display: none; }

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 14px;
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--olive-deep);
  transition: transform 0.25s var(--ease), opacity 0.2s ease, top 0.25s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 26px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - 84px);
  background:
    radial-gradient(ellipse at 80% 18%, rgba(212, 165, 116, 0.22), transparent 46%),
    radial-gradient(ellipse at 20% 90%, rgba(143, 58, 34, 0.2), transparent 42%),
    linear-gradient(160deg, #221b15 0%, var(--olive-deep) 55%, #3a3126 100%);
  overflow: hidden;
}
.hero-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
  animation: photoDrift 18s ease-in-out infinite alternate;
}
.hero-visual figcaption {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  color: var(--ivory);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  background: rgba(47, 41, 31, 0.42);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem clamp(1.4rem, 4vw, 4rem);
  color: var(--ivory);
}
.hero-panel h1 { color: var(--ivory); font-size: clamp(2.4rem, 3.4vw, 4.6rem); }
.hero-lead {
  color: #e4d3bf;
  font-size: 1.12rem;
  margin: 1.3rem 0 1.8rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.welcome { padding: 5.5rem 0; }
.welcome-spread {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  align-items: center;
}
.welcome-shot {
  margin: 0;
  border-radius: 28px 0 0 28px;
  overflow: hidden;
  min-height: 520px;
}
.welcome-shot img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.welcome-spread:hover .welcome-shot img { transform: scale(1.05); }
.welcome-card {
  background: var(--white);
  padding: 3rem 2.4rem;
  margin-left: -3.5rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.welcome-card p { color: var(--muted); }
.welcome-card .btn { margin-top: 0.4rem; }

.services {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(212, 165, 116, 0.18), transparent 48%),
    var(--parchment);
}
.section-intro { max-width: 40rem; margin-bottom: 2.6rem; }
.section-intro a { color: var(--clay); font-weight: 500; }
.service-stage {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 2.2rem;
  align-items: stretch;
}
.service-index {
  display: grid;
  align-content: start;
}
.service-index button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0.4rem;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--olive);
  display: flex;
  gap: 0.8rem;
  transition: color 0.3s ease, padding-left 0.35s var(--ease);
}
.service-index button.is-on,
.service-index button:hover {
  color: var(--clay);
  padding-left: 0.55rem;
}
.service-feature {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 560px;
  background: var(--sand);
}
.service-feature img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.9s var(--ease);
}
.service-copy {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  background: rgba(250, 244, 236, 0.94);
  padding: 1.4rem 1.5rem;
  border-radius: 22px;
  backdrop-filter: blur(12px);
}
.service-copy h3 { font-size: 2rem; margin-bottom: 0.4rem; }
.service-copy p { margin: 0 0 1rem; color: var(--muted); }

.why { padding: 5.5rem 0; }
.why-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.why-tiles article {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
}
.why-tiles img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.why-tiles article:hover img { transform: scale(1.07); }
.why-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 3.2rem 1.1rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(47, 41, 31, 0.88));
  color: var(--ivory);
}
.why-copy h3 {
  font-size: 1.4rem;
  color: var(--ivory);
}
.why-copy p {
  margin: 0.35rem 0 0;
  color: #e4d3bf;
  font-size: 0.9rem;
  line-height: 1.45;
}

.values {
  background:
    radial-gradient(ellipse at 12% 0%, rgba(212, 165, 116, 0.18), transparent 42%),
    radial-gradient(ellipse at 90% 80%, rgba(143, 58, 34, 0.16), transparent 46%),
    linear-gradient(165deg, #261f18 0%, var(--olive-deep) 52%, #3c3228 100%);
  color: var(--ivory);
  padding: 5.2rem 0;
}
.values-intro {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2.6rem;
}
.values h2 { color: var(--ivory); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.value-card {
  background: linear-gradient(180deg, rgba(250, 244, 236, 0.1), rgba(250, 244, 236, 0.04));
  border: 1px solid rgba(250, 244, 236, 0.1);
  border-radius: 22px;
  padding: 1.6rem 1.45rem 1.5rem;
  text-align: left;
  transition: transform 0.4s var(--ease), background 0.4s ease, border-color 0.4s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(250, 244, 236, 0.16), rgba(250, 244, 236, 0.06));
  border-color: rgba(212, 165, 116, 0.35);
}
.value-ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.14);
  margin-bottom: 1rem;
}
.value-ico svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ochre);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h3 {
  font-size: 1.7rem;
  color: var(--ivory);
  margin-bottom: 0.45rem;
}
.value-card p {
  margin: 0;
  color: #e4d3bf;
  font-size: 0.95rem;
}

.who { padding: 5.5rem 0; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.who-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(47, 41, 31, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.who-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(47, 41, 31, 0.14);
}
.who-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.8s var(--ease);
}
.who-card img.pos-pair { object-position: 42% 12%; }
.who-card img.pos-family { object-position: 38% 42%; }
.who-card img.pos-hands { object-position: 40% 28%; }
.who-card img.pos-mid { object-position: center 32%; }
.who-card:hover img { transform: scale(1.05); }
.who-card-body {
  padding: 1.15rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.who-card h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--olive-deep);
}
.who-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.communities { background: var(--parchment); }
.community-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 560px;
}
.community-copy {
  padding: 5rem 8% 5rem calc((100vw - 1180px) / 2 + 1.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.community-copy p { color: var(--muted); max-width: 32rem; }
.community-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.4rem;
  margin: 1.6rem 0 0;
  padding: 0;
}
.community-copy li {
  list-style: none;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
}
.community-split figure { margin: 0; overflow: hidden; }
.community-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
}

.contact { padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-panel.flat {
  margin-top: 1.4rem;
  box-shadow: none;
}
.contact-panel a {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  color: var(--clay);
  margin-bottom: 0.35rem;
  overflow-wrap: anywhere;
}
.contact-panel p { margin: 0.7rem 0 0; color: var(--muted); }
.contact-panel strong { color: var(--olive-deep); font-weight: 600; }
.contact-cta { margin-top: 1.2rem; }

.finale {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 560px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(212, 165, 116, 0.2), transparent 48%),
    linear-gradient(160deg, #221b15 0%, var(--olive-deep) 58%, #3a3126 100%);
  color: var(--ivory);
}
.finale figure { margin: 0; overflow: hidden; }
.finale img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
  transition: transform 1.1s var(--ease);
}
.finale:hover img { transform: scale(1.05); }
.finale-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(1.4rem, 4vw, 3.4rem);
}
.finale h2 { color: var(--ivory); font-size: clamp(2rem, 3.2vw, 3.2rem); }
.finale-panel p { color: #e4d3bf; max-width: 34rem; }

.site-footer {
  background:
    radial-gradient(ellipse at 8% 0%, rgba(212, 165, 116, 0.12), transparent 42%),
    linear-gradient(180deg, #2a221b 0%, #1d1712 100%);
  color: #e4d4c2;
  padding: 3.6rem 0 1.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.2fr;
  gap: 2rem;
}
.site-footer h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--ivory);
}
.site-footer a, .site-footer button, .site-footer .nav-locked, .site-footer .socials span {
  display: block;
  color: #d8c6b2;
  margin: 0.35rem 0;
}
.site-footer button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.site-footer a:hover, .site-footer button:hover { color: var(--ochre); }
.footer-brand img {
  height: 88px;
  width: auto;
  margin-bottom: 0.8rem;
  background: var(--white);
  border-radius: 14px;
  padding: 0.4rem 0.55rem;
}
.privacy-note {
  margin: 2rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: #cbb9a6;
}
.footer-bottom { font-size: 0.82rem; color: #cbb9a6; }
.socials { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.socials span { margin: 0; opacity: 0.55; }

label { display: block; font-size: 0.82rem; margin: 0 0 0.35rem; color: var(--olive-deep); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ivory);
  padding: 0.85rem 0.95rem;
  margin-bottom: 0.9rem;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(196, 91, 56, 0.14);
}
textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.form-note { font-size: 0.82rem; color: var(--muted); }

dialog {
  width: min(640px, calc(100% - 2rem));
  border: 0;
  border-radius: 22px;
  padding: 0;
  background: var(--ivory);
  box-shadow: var(--shadow);
}
dialog::backdrop { background: rgba(36, 29, 22, 0.55); }
.dialog-head, .dialog-body { padding: 1.4rem 1.5rem; }
.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.close-x {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}
.toast {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  max-width: calc(100vw - 2.4rem);
  background: var(--olive-deep);
  color: var(--ivory);
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  transform: translateY(120%);
  opacity: 0;
  transition: 0.4s var(--ease);
  z-index: 80;
}
.toast.show { transform: none; opacity: 1; }

.coming {
  padding: 6.5rem 0 7rem;
  min-height: 52vh;
}
.coming h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); }
.coming p { color: var(--muted); max-width: 36rem; }
.coming .btn { margin-top: 0.6rem; }

.btn-outline {
  background: transparent;
  color: var(--olive-deep);
  border-color: rgba(47, 41, 31, 0.22);
}
.btn-outline:hover {
  background: var(--parchment);
  color: var(--olive-deep);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 88% 12%, rgba(212, 165, 116, 0.24), transparent 46%),
    radial-gradient(ellipse at 8% 92%, rgba(143, 58, 34, 0.22), transparent 44%),
    linear-gradient(145deg, #221b15 0%, var(--olive-deep) 52%, #3c3228 100%);
  color: var(--ivory);
  padding: 4.2rem 0 4rem;
}
.page-hero h1 { color: var(--ivory); max-width: 18ch; }
.page-hero .lead {
  color: #e4d3bf;
  max-width: 38rem;
  margin: 1.1rem 0 0;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}
.page-hero-grid figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
}
.page-hero-grid img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 8s var(--ease);
}
.page-hero-grid figure:hover img { transform: scale(1.06); }
.page-hero .hero-actions { margin-top: 1.4rem; }

.band { padding: 4.6rem 0; }
.band-parchment {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(212, 165, 116, 0.16), transparent 46%),
    var(--parchment);
}
.band-dark {
  background: var(--olive-deep);
  color: var(--ivory);
}
.band-dark h2 { color: var(--ivory); }
.band-dark p { color: #e4d3bf; }

.prose p {
  color: var(--muted);
  max-width: 44rem;
  margin: 0 0 1rem;
}
.prose h2 { margin: 0 0 1rem; }

.mission-grid,
.phil-grid,
.tier-grid,
.resource-grid,
.step-grid {
  display: grid;
  gap: 1.1rem;
}
.mission-grid { grid-template-columns: 1fr 1fr; }
.phil-grid { grid-template-columns: repeat(2, 1fr); }
.tier-grid { grid-template-columns: repeat(3, 1fr); }
.resource-grid { grid-template-columns: repeat(3, 1fr); }
.step-grid { grid-template-columns: repeat(4, 1fr); }

.plain-card,
.phil-card,
.tier-card,
.resource-card,
.step-card {
  background: linear-gradient(180deg, var(--white) 0%, #fff8ef 100%);
  border-radius: 22px;
  padding: 1.5rem 1.4rem 1.45rem;
  border: 1px solid rgba(47, 41, 31, 0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}
.plain-card:hover,
.phil-card:hover,
.tier-card:hover,
.resource-card:hover,
.step-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 40px rgba(47, 41, 31, 0.12);
  border-color: rgba(143, 58, 34, 0.16);
}
.phil-card h3,
.tier-card h3,
.resource-card h3,
.step-card h3,
.plain-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.45rem;
  color: var(--olive-deep);
}
.plain-card h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  margin: 0 0 0.85rem;
  color: var(--olive-deep);
}
.phil-card p,
.tier-card p,
.resource-card p,
.step-card p,
.plain-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.plain-card p + p { margin-top: 0.85rem; }
.pricing-note { margin-top: 2.6rem; margin-bottom: 0; }
.resource-card .btn,
.tier-card .btn { margin-top: 1rem; }

.about-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.6rem;
  align-items: center;
}
.about-intro .prose p { max-width: none; }
.about-intro figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
}
.about-intro img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1.1s var(--ease);
}
.about-intro:hover img { transform: scale(1.05); }

.rate-highlights {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.rate-feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.7rem 1.6rem 1.5rem;
  box-shadow: 0 18px 40px rgba(47, 41, 31, 0.08);
}
.rate-feature h3,
.rate-group > h3,
.rate-premiums h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  color: var(--olive-deep);
}
.rate-feature p:last-child {
  margin: 0.35rem 0 0;
  max-width: 28rem;
  color: var(--muted);
}
.rate-feature-deep {
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(212, 165, 116, 0.28), transparent 60%),
    var(--olive-deep);
  border-color: transparent;
  color: var(--ivory);
}
.rate-feature-deep h3 { color: var(--ivory); }
.rate-feature-deep p:last-child { color: #e6d7c6; }
.rate-feature-deep .rate-figure b { color: var(--ochre); }
.rate-group { margin-top: 2.1rem; }
.rate-group > h3 { margin-bottom: 0.85rem; }
.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.85rem;
}
.rate-grid-pair { grid-template-columns: 1fr 1fr; }
.rate-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid rgba(47, 41, 31, 0.08);
  border-radius: 20px;
  padding: 1.15rem 1.15rem 1.05rem;
  box-shadow: 0 10px 24px rgba(47, 41, 31, 0.05);
}
.rate-card h4 {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  color: var(--olive-deep);
}
.rate-figure {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0.7rem 0 0;
}
.rate-figure b {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1;
  color: var(--clay);
}
.rate-figure span,
.rate-meta {
  color: var(--muted);
  font-size: 0.88rem;
}
.rate-meta {
  margin: auto 0 0;
  padding-top: 0.75rem;
}
.rate-premiums {
  margin-top: 2.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.3rem 1.3rem 1.15rem;
}
.rate-premiums h3 { margin-bottom: 0.9rem; }
.rate-premiums ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rate-premiums li {
  padding: 0.85rem 0.75rem;
  border-radius: 16px;
  background: var(--parchment);
}
.rate-premiums b {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  color: var(--olive-deep);
}
.rate-premiums span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}
.note-box a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.packages-head {
  max-width: 42rem;
  margin: 0 auto 1.8rem;
  text-align: center;
}
.packages-head h2 { margin-bottom: 0.7rem; }
.packages-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}
.package-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 1.8rem;
}
.package-tabs button {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  cursor: pointer;
  color: var(--olive);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}
.package-tabs button:hover {
  transform: translateY(-2px);
  border-color: var(--clay);
  color: var(--clay);
}
.package-tabs button:hover,
.package-tabs button[aria-selected="true"] {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
  color: var(--ivory);
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}
.package-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--white) 0%, #fff8ef 100%);
  border: 1px solid rgba(47, 41, 31, 0.08);
  border-radius: 24px;
  padding: 1.7rem 1.45rem 1.5rem;
  box-shadow: 0 18px 40px rgba(47, 41, 31, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px rgba(47, 41, 31, 0.16);
}
.package-card.is-featured {
  border-color: var(--clay);
  box-shadow: 0 24px 50px rgba(143, 58, 34, 0.16);
}
.package-card h3 {
  font-size: 1.45rem;
  margin: 0 0 0.3rem;
  color: var(--olive-deep);
}
.package-tag {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.package-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin: 1.1rem 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.package-amount {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--clay);
  line-height: 1;
}
.package-price small {
  color: var(--muted);
  font-size: 0.88rem;
}
.package-card ul {
  margin: 0 0 1.3rem;
  padding: 0;
  list-style: none;
  flex: 1;
}
.package-card li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  color: var(--olive);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
}
.package-card li:last-child { border-bottom: 0; }
.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.55rem;
  height: 0.32rem;
  border-left: 2px solid var(--clay);
  border-bottom: 2px solid var(--clay);
  transform: rotate(-45deg);
}
.package-card .btn { width: 100%; margin-top: auto; }

.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.6rem 0 0;
}
.jump-nav a {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
  color: var(--olive);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.3s var(--ease), background 0.25s ease;
}
.jump-nav a:hover {
  color: var(--ivory);
  background: var(--olive-deep);
  border-color: var(--olive-deep);
  transform: translateY(-2px);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
  padding: 3.4rem 0;
  border-top: 1px solid var(--line);
}
.service-block:first-of-type { border-top: 0; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}
.service-block img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1s var(--ease);
}
.service-block:hover img { transform: scale(1.05); }
.service-block h2 { margin-bottom: 0.8rem; }
.service-block p { color: var(--muted); margin: 0 0 0.9rem; }
.service-block ul {
  margin: 0 0 1.2rem;
  padding: 0 0 0 1.1rem;
  color: var(--muted);
}
.service-block li { margin: 0.25rem 0; }

.faq-list { max-width: 52rem; }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--olive-deep);
  list-style: none;
  transition: color 0.25s ease;
}
.faq-list summary:hover { color: var(--clay); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--clay);
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 500;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list p {
  margin: 0.7rem 0 0.2rem;
  color: var(--muted);
}

.hours-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}
.hours-list li {
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.hours-list strong { color: var(--olive-deep); }

.legal-copy {
  max-width: 46rem;
  padding: 4.2rem 0 5rem;
}
.legal-copy h1 { margin-bottom: 1rem; }
.legal-copy h2 {
  font-size: 1.7rem;
  margin: 1.8rem 0 0.6rem;
}
.legal-copy p, .legal-copy li { color: var(--muted); }
.legal-copy a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.legal-copy ul { padding-left: 1.15rem; }
.policy-list a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--olive-deep);
  transition: color 0.25s ease, padding-left 0.35s var(--ease);
}
.policy-list a:hover { color: var(--clay); padding-left: 0.45rem; }

.footer-grid {
  grid-template-columns: 1.35fr 0.85fr 1fr 1.05fr;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.05rem;
  margin: 0.4rem 0 0;
}
.footer-legal a {
  display: inline;
  margin: 0;
  font-size: 0.82rem;
  color: #cbb9a6;
}
.footer-legal a:hover { color: var(--ochre); }

.note-box {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: var(--parchment);
  color: var(--muted);
  font-size: 0.92rem;
}

.dialog-head h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  padding-right: 0.6rem;
}

@media (max-width: 1200px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-end { margin-left: auto; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    top: calc(100% + 8px);
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.1rem 1.2rem;
    box-shadow: var(--shadow);
    z-index: 50;
  }
  .nav-links.open a {
    padding: 0.55rem 0;
    white-space: normal;
  }
  .nav-links.open .nav-menu-phone { display: inline; }
  .nav-links.open .nav-menu-cta {
    display: inline-flex;
    margin-top: 0.55rem;
    width: 100%;
  }
}

@media (max-width: 1120px) {
  .hero, .welcome-spread, .service-stage, .community-split, .contact-grid, .finale, .footer-grid,
  .page-hero-grid, .mission-grid, .service-block, .service-block.reverse, .tier-grid,
  .about-intro {
    grid-template-columns: 1fr;
  }
  .service-block.reverse { direction: ltr; }
  .value-grid, .who-grid, .why-tiles, .phil-grid, .resource-grid { grid-template-columns: 1fr 1fr; }
  .welcome-shot, .welcome-card { border-radius: 22px; margin: 0; }
  .welcome-card { margin-top: -3rem; }
  .community-copy { padding: 3.2rem 1.2rem; }
  .hero-panel, .finale-panel { padding: 3rem 1.4rem; }
  .hero-panel h1, .finale h2 { font-size: clamp(2.2rem, 7vw, 3.2rem); }
  .hero-visual, .hero-visual img, .welcome-shot img, .service-feature, .service-feature img, .finale img, .community-split img, .about-intro img, .about-intro figure {
    min-height: 360px;
  }
  .hours-list li { grid-template-columns: 1fr; gap: 0.2rem; }
}

@media (max-width: 900px) {
  .package-grid, .rate-highlights, .rate-grid-pair { grid-template-columns: 1fr; }
  .rate-premiums ul { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .brand b { font-size: 1.18rem; }
}

@keyframes photoDrift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

.motion-on .hero-panel > *,
.motion-on .page-hero-grid > div > * {
  animation: riseIn 0.85s var(--ease) both;
}
.motion-on .hero-panel > *:nth-child(2),
.motion-on .page-hero-grid > div > *:nth-child(2) { animation-delay: 0.1s; }
.motion-on .hero-panel > *:nth-child(3),
.motion-on .page-hero-grid > div > *:nth-child(3) { animation-delay: 0.18s; }
.motion-on .hero-panel > *:nth-child(4),
.motion-on .page-hero-grid > div > *:nth-child(4) { animation-delay: 0.26s; }

.motion-on .welcome-card,
.motion-on .value-card,
.motion-on .who-card,
.motion-on .why-tiles article,
.motion-on .phil-card,
.motion-on .resource-card,
.motion-on .plain-card,
.motion-on .package-card,
.motion-on .service-block,
.motion-on .step-card,
.motion-on .contact-panel,
.motion-on .faq-list details,
.motion-on .finale-panel,
.motion-on .about-intro {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.motion-on .welcome-card.is-in,
.motion-on .value-card.is-in,
.motion-on .who-card.is-in,
.motion-on .why-tiles article.is-in,
.motion-on .phil-card.is-in,
.motion-on .resource-card.is-in,
.motion-on .plain-card.is-in,
.motion-on .package-card.is-in,
.motion-on .service-block.is-in,
.motion-on .step-card.is-in,
.motion-on .contact-panel.is-in,
.motion-on .faq-list details.is-in,
.motion-on .finale-panel.is-in,
.motion-on .about-intro.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .motion-on .welcome-card,
  .motion-on .value-card,
  .motion-on .who-card,
  .motion-on .why-tiles article,
  .motion-on .phil-card,
  .motion-on .resource-card,
  .motion-on .plain-card,
  .motion-on .package-card,
  .motion-on .service-block,
  .motion-on .step-card,
  .motion-on .contact-panel,
  .motion-on .faq-list details,
  .motion-on .finale-panel,
  .motion-on .about-intro {
    opacity: 1;
    transform: none;
  }
}

.form-doc {
  width: min(860px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 3.2rem 0 4.5rem;
}
.form-doc .eyebrow { margin-bottom: 0.4rem; }
.form-kicker {
  margin: 0 0 1rem;
  color: var(--muted);
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 1.2rem;
}
.form-sheet {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.2rem 1.8rem 2.4rem;
  box-shadow: var(--shadow);
}
.form-letterhead { text-align: center; margin-bottom: 1.4rem; }
.form-letterhead h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.form-letterhead address {
  font-style: normal;
  color: var(--muted);
  margin-top: 0.7rem;
}
.form-letterhead address a { color: var(--clay); text-decoration: underline; text-underline-offset: 0.16em; }
.form-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.2rem;
  text-align: left;
}
.form-section {
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}
.form-section h2 { font-size: 1.45rem; margin-bottom: 0.55rem; }
.form-section h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 1.1rem 0 0.45rem;
}
.form-section p, .form-section li { color: var(--muted); }
.form-section p { margin: 0.55rem 0; }
.form-section ul { margin: 0.4rem 0 0.6rem; padding-left: 1.15rem; }
.form-section li { margin: 0.28rem 0; }
.field { margin: 0.75rem 0; }
.field label, .check { color: var(--ink); }
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  margin: 0.4rem 0 0.2rem;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--ink);
}
.check input {
  width: 1.05rem;
  min-width: 1.05rem;
  height: 1.05rem;
  margin: 0.2rem 0 0;
  padding: 0;
  border-radius: 4px;
  flex: none;
  accent-color: var(--clay);
}
.days { grid-template-columns: repeat(4, 1fr); }
.sig-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 0.8rem;
}
.staff-block {
  background: var(--parchment);
  border-radius: 16px;
  padding: 0.2rem 1rem 1rem;
}
.form-sheet .form-note { margin-top: 1rem; }
.form-section a, .form-note a, .faq-list a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

@media print {
  .site-header, .site-footer, .skip, .no-print, dialog, .toast, .menu-toggle { display: none !important; }
  body { background: #fff; }
  .form-doc { width: auto; margin: 0; padding: 0; }
  .form-sheet { box-shadow: none; border: 0; border-radius: 0; padding: 0; }
  .form-section, .check { break-inside: avoid; }
}

@media (max-width: 640px) {
  .form-row, .why-tiles, .community-copy ul, .value-grid, .who-grid, .phil-grid, .resource-grid, .step-grid, .form-meta, .check-grid, .days, .sig-grid, .rate-premiums ul { grid-template-columns: 1fr; }
  .brand span { display: none; }
  .brand img { height: 50px; }
  .phone-link { font-size: 0.84rem; }
  .contact-panel, .finale-panel { padding: 1.4rem 1.2rem; }
  .hero-visual, .hero-visual img, .welcome-shot img, .service-feature, .service-feature img, .finale img, .community-split img, .about-intro img, .about-intro figure {
    min-height: 240px;
    width: 100%;
  }
}
