/* =====================================================================
   Popes Creek — Production Site Stylesheet
   Design system derived from /09-deco-teal-deep/.
   Palette: deep petrol #0E4150, brushed gold #C19A4E / pale #E0BF7C,
   warm off-white #F4EFE6. Type: Cinzel (display) + Jost (body).
   ===================================================================== */

:root {
  --bg: #0E4150;
  --bg-deep: #082F3B;
  --bg-soft: #155564;
  --bg-highlight: #1A6378;
  --gold: #C19A4E;
  --gold-pale: #E0BF7C;
  --gold-bright: #ECCC8E;
  --ivory: #F4EFE6;
  --ivory-dim: rgba(244, 239, 230, 0.78);
  --ivory-mute: rgba(244, 239, 230, 0.62);
  --ivory-faint: rgba(244, 239, 230, 0.42);
  --rule: rgba(224, 191, 124, 0.55);
  --rule-soft: rgba(224, 191, 124, 0.22);
  --rule-faint: rgba(224, 191, 124, 0.12);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Keep anchor jumps clear of the sticky nav. */
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: radial-gradient(ellipse at top, #185F75 0%, var(--bg) 45%, var(--bg-deep) 100%);
  background-attachment: fixed;
  color: var(--ivory);
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--bg-deep); }

/* Skip link for keyboard users */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--bg-deep);
  padding: 12px 20px;
  font-family: "Cinzel", serif; font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* =================== Nav =================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(8, 47, 59, 0.55);
  border-bottom: 1px solid var(--rule-soft);
  transition: padding .35s ease, background .35s ease;
  padding: 14px 0;
}
.nav.is-condensed { padding: 8px 0; background: rgba(8, 47, 59, 0.94); }
.nav__inner {
  position: relative;
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  min-height: 64px;
}
.nav.is-condensed .nav__inner { min-height: 52px; }
.nav__brand {
  display: flex; align-items: center;
  color: var(--gold-pale);
  height: 100%;
}
.nav__mark {
  height: 60px; width: auto;
  transition: height .35s ease;
}
.nav.is-condensed .nav__mark { height: 46px; }
.nav__wordmark { display: none; }
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  position: relative;
  font-family: "Cinzel", serif; font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory); opacity: 0.82;
  padding: 4px 0;
  transition: color .25s, opacity .25s;
}
.nav__links a:hover,
.nav__links a:focus-visible { color: var(--gold-bright); opacity: 1; outline: none; }
.nav__links a[aria-current="page"] { color: var(--gold-pale); opacity: 1; }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 1px; background: var(--gold-pale);
}
.nav__toggle {
  display: none; background: none; border: 0; width: 32px; height: 24px;
  flex-direction: column; justify-content: space-between; cursor: pointer; padding: 4px 0;
}
.nav__toggle span {
  display: block; height: 1px; background: var(--gold-pale); width: 100%;
  transition: transform .3s, opacity .3s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile dropdown: discreet panel anchored beneath the hamburger on the
   far right. Not a fullscreen modal; does not obscure the page. */
.nav__overlay {
  position: absolute;
  top: calc(100% + 1px); right: 24px;
  min-width: 220px;
  max-width: calc(100vw - 48px);
  background: rgba(8, 47, 59, 0.98);
  border: 1px solid var(--rule-soft);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: none;
  flex-direction: column;
  padding: 14px 0;
  z-index: 40;
}
.nav__overlay:not([hidden]) { display: flex; }
.nav__overlay a {
  font-family: "Cinzel", serif; font-size: 12px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.88;
  padding: 12px 28px;
  transition: color .25s, opacity .25s;
}
.nav__overlay a:hover,
.nav__overlay a:focus-visible {
  color: var(--gold-bright); opacity: 1; outline: none;
}
.nav__overlay a[aria-current="page"] { color: var(--gold-pale); opacity: 1; }

/* =================== Page header (subpages) =================== */
.page-header {
  position: relative;
  padding: 140px 40px 100px;
  text-align: center;
  border-bottom: 1px solid var(--rule-soft);
}
.page-header__eyebrow {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: 11px; letter-spacing: 0.42em;
  color: var(--gold-pale); text-transform: uppercase;
  margin: 0 0 28px;
}
.page-header__title {
  font-family: "Cinzel", serif; font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.18; letter-spacing: 0.02em;
  color: var(--ivory);
  margin: 0 auto 28px;
  max-width: 18ch;
}
.page-header__rule {
  width: 220px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-pale) 35%, var(--gold-pale) 65%, transparent);
  margin: 0 auto 28px;
}
.page-header__intro {
  max-width: 640px; margin: 0 auto;
  font-size: clamp(15px, 1.1vw, 17px); line-height: 1.75;
  color: var(--ivory-dim);
}

/* =================== Hero (home) — shorter landscape banner =================== */
.hero {
  position: relative;
  min-height: 38vh;
  display: flex; align-items: center; justify-content: center;
  padding: 56px 40px 44px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 24px;
  border: 1px solid var(--gold-pale); opacity: 0.65;
  pointer-events: none;
  z-index: 2;
}
.hero__corners { position: absolute; inset: 24px; pointer-events: none; z-index: 3; }
.hero__corners span {
  position: absolute; width: 18px; height: 18px;
  border: 1px solid var(--gold-pale); opacity: 0.9;
}
.hero__corners span:nth-child(1) { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.hero__corners span:nth-child(2) { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.hero__corners span:nth-child(3) { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.hero__corners span:nth-child(4) { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* Rotating photography — sits inside the gold-bordered frame only. */
.hero__slides {
  position: absolute;
  inset: 24px;
  overflow: hidden;
  z-index: 0;
}
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(0.55) contrast(0.85) brightness(0.92);
  opacity: 0;
  animation: hero-fade 36s ease-in-out infinite;
}
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 9s; }
.hero__slide:nth-child(3) { animation-delay: 18s; }
.hero__slide:nth-child(4) { animation-delay: 27s; }
@keyframes hero-fade {
  0%   { opacity: 0; }
  6%   { opacity: 1; }
  25%  { opacity: 1; }
  31%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero__veil {
  position: absolute; inset: 0;
  background: rgba(8, 47, 59, 0.78);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; opacity: 1; }
  .hero__slide:not(:first-child) { display: none; }
}

.hero__frame {
  position: relative;
  z-index: 4;
  max-width: 920px; width: 100%;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-top: 6px;
}
.hero__lockup {
  /* Existing notagline lockup at ~75% of prior scale, positioned slightly higher. */
  width: clamp(140px, 16vw, 200px);
  height: auto;
  margin: 0;
  opacity: 0;
  animation: fade-up 1.4s ease forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__lockup { animation: none; opacity: 1; }
}

/* Tagline section — sits BELOW the hero banner, outside the gold border. */
.home-tagline {
  padding: 64px 40px 32px;
  text-align: center;
}
.home-tagline p {
  font-family: "Cinzel", serif; font-weight: 400;
  font-size: clamp(18px, 1.7vw, 24px);
  letter-spacing: 0.18em;
  color: var(--gold-pale);
  margin: 0;
  line-height: 1.5;
}
/* Allow the line to wrap only after the comma on narrow screens. */
.home-tagline__line {
  display: inline-block;
  white-space: nowrap;
}

/* =================== Buttons =================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  font-family: "Cinzel", serif; font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.btn--gold { background: var(--gold); color: var(--bg-deep); }
.btn--gold:hover,
.btn--gold:focus-visible { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--bg-deep); outline: none; }
.btn--ghost { background: transparent; color: var(--gold-pale); border-color: var(--gold-pale); }
.btn--ghost:hover,
.btn--ghost:focus-visible { background: rgba(224, 191, 124, 0.1); color: var(--gold-bright); outline: none; }
.btn--lg { padding: 20px 44px; font-size: 12px; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* =================== Generic section structure =================== */
.section {
  max-width: 1240px; margin: 0 auto;
  padding: 120px 40px;
}
.section--narrow { max-width: 880px; }
.section--center { text-align: center; }
.section__eyebrow {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: 12px; letter-spacing: 0.4em;
  color: var(--gold-pale); text-transform: uppercase;
  display: flex; align-items: center; gap: 18px;
  margin: 0 0 56px;
}
.section__eyebrow span { color: var(--gold-bright); opacity: 0.9; }
.section__eyebrow::after {
  content: ""; flex: 1; height: 1px; background: var(--rule-soft);
}
.section__eyebrow--center {
  justify-content: center; margin-bottom: 40px;
}
.section__eyebrow--center::after,
.section__eyebrow--center::before {
  content: ""; flex: 0 0 80px; height: 1px; background: var(--rule-soft);
}
.section__title {
  font-family: "Cinzel", serif; font-weight: 400;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.28; letter-spacing: 0.02em;
  color: var(--ivory);
  margin: 0 0 28px;
}
.section__lede {
  max-width: 680px;
  font-size: clamp(15px, 1.1vw, 17px); line-height: 1.75;
  color: var(--ivory-dim);
  margin: 0 0 28px;
}
.section__lede--center { margin-left: auto; margin-right: auto; }
.section__body p {
  font-size: clamp(15px, 1.05vw, 16px); line-height: 1.85;
  color: var(--ivory-dim);
  margin: 0 0 22px;
  max-width: 64ch;
}
.section__body--center p { margin-left: auto; margin-right: auto; }

/* Ornamental rule */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin: 0 auto 40px; color: var(--gold-pale);
}
.ornament span { width: 80px; height: 1px; background: var(--gold-pale); opacity: 0.75; }
.ornament i { font-style: normal; font-size: 12px; opacity: 0.9; }

/* =================== Home — intro panels =================== */
.intro {
  max-width: 820px; margin: 0 auto;
  padding: 80px 40px 100px;
  text-align: center;
}
.intro p {
  /* Locked stewardship copy — set as a quiet editorial paragraph, +1pt vs prior. */
  font-family: "Jost", system-ui, sans-serif; font-weight: 300;
  font-size: clamp(17px, 1.25vw, 19px); line-height: 1.85;
  letter-spacing: 0.01em; color: var(--ivory);
  margin: 0;
}
.intro p + p { margin-top: 26px; }

.panels {
  max-width: 1180px; margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.panel__title {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.06em; line-height: 1.4;
  color: var(--ivory);
  margin: 0 0 22px;
  padding-left: 32px;
  position: relative;
}
.panel__title::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 20px; height: 1px; background: var(--gold-pale);
}
.panel p {
  margin: 0 0 18px;
  font-size: 15px; line-height: 1.8;
  color: var(--ivory-dim);
}
.panel p:last-child { margin-bottom: 0; }

/* =================== Services preview grid (photo-led) =================== */
.services-preview { padding: 100px 40px 80px; max-width: 1320px; margin: 0 auto; }
.services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.service { display: flex; flex-direction: column; gap: 22px; }
.service__link { display: contents; }
.service__frame {
  position: relative;
  padding: 10px;
  border: 1px solid var(--rule);
  background: var(--bg-deep);
  transition: border-color .3s;
}
.service__frame::before,
.service__frame::after {
  content: "";
  position: absolute; width: 12px; height: 12px;
  border: 1px solid var(--gold-pale);
  pointer-events: none;
}
.service__frame::before { top: -3px; left: -3px; border-right: 0; border-bottom: 0; }
.service__frame::after { bottom: -3px; right: -3px; border-left: 0; border-top: 0; }
.service:hover .service__frame,
.service__link:focus-visible .service__frame { border-color: var(--gold-bright); outline: none; }
.service__art {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  filter: saturate(0.75) contrast(0.92) sepia(0.08);
  transition: filter .8s ease, transform .8s ease;
}
.service:hover .service__art { filter: saturate(0.95) contrast(0.96); transform: scale(1.02); }
.service__num {
  position: absolute; top: 12px; right: 12px;
  background: var(--bg-deep);
  color: var(--gold-pale);
  font-family: "Cinzel", serif; font-size: 11px; letter-spacing: 0.28em;
  padding: 6px 10px;
  border: 1px solid var(--gold-pale);
}
.service h3 {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: clamp(15px, 1.2vw, 17px);
  letter-spacing: 0.06em; line-height: 1.4;
  color: var(--ivory); margin: 0;
}
.service p {
  margin: 0;
  /* Service tile body — bumped +1pt. */
  font-size: 15px; line-height: 1.7;
  color: var(--ivory-mute);
}

/* =================== Services — detail (services page) =================== */
.services-detail {
  max-width: 1180px; margin: 0 auto;
  padding: 60px 40px 100px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding: 84px 0;
  border-top: 1px solid var(--rule-soft);
  align-items: start;
}
.service-block:last-child { border-bottom: 1px solid var(--rule-soft); }
.service-block__head { position: sticky; top: 120px; }
.service-block__num {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: 12px; letter-spacing: 0.42em;
  color: var(--gold-bright); margin: 0 0 18px;
}
.service-block__title {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: clamp(22px, 2.1vw, 28px);
  letter-spacing: 0.04em; line-height: 1.3;
  color: var(--ivory); margin: 0;
}
.service-block__body { display: flex; flex-direction: column; gap: 28px; }
.service-block__intro {
  /* Body text bumped approximately +1pt per spec. */
  font-size: clamp(16px, 1.1vw, 18px); line-height: 1.85;
  color: var(--ivory-dim);
  margin: 0;
  max-width: 56ch;
}
.service-block__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.service-block__list li {
  position: relative;
  padding: 14px 0 14px 32px;
  font-size: clamp(15px, 1.05vw, 17px); line-height: 1.65;
  color: var(--ivory-dim);
  border-bottom: 1px solid var(--rule-faint);
}
.service-block__list li:last-child { border-bottom: 0; }
.service-block__list li::before {
  content: ""; position: absolute;
  left: 0; top: 26px;
  width: 18px; height: 1px;
  background: var(--gold-pale);
}
.service-block__quote {
  margin: 4px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--rule-soft);
  font-family: "Cinzel", serif; font-weight: 400;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65; letter-spacing: 0.02em;
  color: var(--ivory);
  max-width: 60ch;
  font-style: italic;
}

/* Restrained interstitial images between Services sections. */
.section-image {
  max-width: 1180px; margin: 0 auto;
  padding: 12px 40px;
}
.section-image__frame {
  position: relative;
  padding: 8px;
  border: 1px solid var(--rule-soft);
  background: var(--bg-deep);
}
.section-image__art {
  width: 100%;
  aspect-ratio: 21/9;
  background-size: cover; background-position: center;
  filter: saturate(0.55) contrast(0.88) brightness(0.92);
}

/* =================== Atmospheric subpage banner =================== */
.site-banner {
  position: relative;
  min-height: 18vh;
  display: flex; align-items: center; justify-content: center;
  padding: 56px 40px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule-soft);
}
.site-banner__image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(0.5) contrast(0.85) brightness(0.85);
}
.site-banner__veil {
  position: absolute; inset: 0;
  background: rgba(8, 47, 59, 0.78);
}
.site-banner__title {
  position: relative;
  margin: 0;
  font-family: "Cinzel", serif; font-weight: 400;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.18; letter-spacing: 0.08em;
  text-align: center;
  color: var(--ivory);
}

/* =================== Approach — framework =================== */
.framework {
  max-width: 1180px; margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.framework::before {
  content: "";
  position: absolute; left: 40px; right: 40px;
  top: 90px; height: 1px;
  background: var(--rule-soft);
  pointer-events: none;
}
.step {
  position: relative;
  padding: 0 28px;
  text-align: center;
}
.step + .step { border-left: 1px solid var(--rule-soft); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border: 1px solid var(--gold-pale);
  background: var(--bg-deep);
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: 13px; letter-spacing: 0.28em;
  color: var(--gold-pale);
  margin: 0 auto 28px;
  position: relative;
}
.step__num::before,
.step__num::after {
  content: ""; position: absolute;
  width: 6px; height: 6px;
  border: 1px solid var(--gold-pale);
}
.step__num::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.step__num::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.step__title {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: 14px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
  margin: 0 0 16px;
}
.step__body {
  margin: 0;
  font-size: 14px; line-height: 1.7;
  color: var(--ivory-dim);
  max-width: 22ch;
  margin-inline: auto;
}

/* Approach — operational model list */
.operational {
  max-width: 920px; margin: 0 auto;
  padding: 80px 40px 120px;
}
.operational__list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px;
}
.operational__list li {
  position: relative;
  padding: 14px 0 14px 32px;
  font-size: 15px; line-height: 1.6;
  color: var(--ivory-dim);
  border-bottom: 1px solid var(--rule-faint);
}
.operational__list li::before {
  content: ""; position: absolute;
  left: 0; top: 26px;
  width: 18px; height: 1px;
  background: var(--gold-pale);
}

/* =================== Approach (Founder / Philosophy of Place / Operating Method) =================== */
.approach {
  max-width: 1080px; margin: 0 auto;
  padding: 60px 40px 100px;
}
.approach__section {
  padding: 80px 0;
  border-top: 1px solid var(--rule-soft);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.approach__section:first-of-type { border-top: 0; padding-top: 60px; }
.approach__section:last-of-type { border-bottom: 1px solid var(--rule-soft); }
.approach__media {
  position: relative;
  padding: 8px;
  border: 1px solid var(--rule-soft);
  background: var(--bg-deep);
}
.approach__art {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  filter: saturate(0.55) contrast(0.88) brightness(0.92);
}
.approach__body { display: flex; flex-direction: column; gap: 22px; }
.approach__title {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: clamp(22px, 2.1vw, 28px);
  letter-spacing: 0.04em; line-height: 1.3;
  color: var(--ivory); margin: 0 0 8px;
}
.approach__body p {
  margin: 0;
  /* +1pt body throughout. */
  font-size: clamp(16px, 1.1vw, 18px); line-height: 1.85;
  color: var(--ivory-dim);
  max-width: 64ch;
}

/* =================== Stewardships (case-study archive) =================== */
.stewardships {
  max-width: 1080px; margin: 0 auto;
  padding: 60px 40px 100px;
}
.stewardship {
  padding: 80px 0;
  border-top: 1px solid var(--rule-soft);
}
.stewardship:first-of-type { border-top: 0; padding-top: 60px; }
.stewardship:last-of-type { border-bottom: 1px solid var(--rule-soft); }
.stewardship__header { margin: 0 0 36px; }
.stewardship__title {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0.04em; line-height: 1.3;
  color: var(--ivory);
  margin: 0 0 10px;
}
.stewardship__subtitle {
  font-family: "Cinzel", serif; font-weight: 400;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.16em;
  color: var(--gold-pale);
  margin: 0 0 8px;
}
.stewardship__meta {
  font-family: "Cinzel", serif; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ivory-mute);
  margin: 0;
}
.stewardship__media {
  position: relative;
  padding: 8px;
  border: 1px solid var(--rule-soft);
  background: var(--bg-deep);
  margin: 0 0 36px;
}
.stewardship__art {
  width: 100%; aspect-ratio: 16/9;
  background-size: cover; background-position: center;
  filter: saturate(0.55) contrast(0.88) brightness(0.92);
}
.stewardship__summary {
  margin: 0;
  font-size: clamp(16px, 1.1vw, 18px); line-height: 1.85;
  color: var(--ivory-dim);
  max-width: 64ch;
}
/* Native <details> styled as a calm, inline expansion. No accordion chrome. */
.stewardship__details {
  margin: 32px 0 0;
  border-top: 1px solid var(--rule-faint);
}
.stewardship__details summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0 0;
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0.88;
  transition: opacity .25s, color .25s;
  display: inline-flex; align-items: center; gap: 14px;
}
.stewardship__details summary::-webkit-details-marker { display: none; }
.stewardship__details summary::after {
  content: "+";
  font-family: "Jost", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: var(--gold-pale);
  transition: transform .25s;
}
.stewardship__details[open] summary::after { content: "—"; }
.stewardship__details summary:hover,
.stewardship__details summary:focus-visible {
  opacity: 1; color: var(--gold-bright); outline: none;
}
.stewardship__expanded { padding: 24px 0 0; }
.stewardship__expanded p {
  margin: 0 0 22px;
  font-size: clamp(16px, 1.05vw, 17px); line-height: 1.85;
  color: var(--ivory-dim);
  max-width: 64ch;
}
.stewardship__expanded p:last-child { margin-bottom: 0; }
.stewardship__expanded ul {
  list-style: none; padding: 0; margin: 0 0 22px;
}
.stewardship__expanded ul li {
  position: relative;
  padding: 12px 0 12px 32px;
  font-size: clamp(16px, 1.05vw, 17px); line-height: 1.7;
  color: var(--ivory-dim);
  border-bottom: 1px solid var(--rule-faint);
  max-width: 64ch;
}
.stewardship__expanded ul li:last-child { border-bottom: 0; }
.stewardship__expanded ul li::before {
  content: ""; position: absolute;
  left: 0; top: 22px;
  width: 18px; height: 1px;
  background: var(--gold-pale);
}

/* =================== Philosophy =================== */
.philosophy {
  max-width: 880px; margin: 0 auto;
  padding: 100px 40px 80px;
}
.philosophy__quote {
  margin: 0 0 80px;
}
.philosophy__quote p {
  font-family: "Cinzel", serif; font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.5;
  letter-spacing: 0.02em; color: var(--ivory);
  position: relative; padding-left: 40px;
  margin: 0;
}
.philosophy__quote p::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 22px; height: 1px; background: var(--gold-pale);
}
.philosophy__body p {
  font-size: clamp(15px, 1.05vw, 16px); line-height: 1.95;
  color: var(--ivory-dim);
  margin: 0 0 26px;
  max-width: 62ch;
}
.philosophy__body p:last-child { margin-bottom: 0; }

/* =================== Engagements =================== */
.engagement {
  max-width: 1180px; margin: 0 auto;
  padding: 80px 40px 100px;
}
.engagement__frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.engagement__media {
  position: relative;
  padding: 10px;
  border: 1px solid var(--rule);
  background: var(--bg-deep);
}
.engagement__media::before,
.engagement__media::after {
  content: "";
  position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--gold-pale);
  pointer-events: none;
}
.engagement__media::before { top: -3px; left: -3px; border-right: 0; border-bottom: 0; }
.engagement__media::after { bottom: -3px; right: -3px; border-left: 0; border-top: 0; }
.engagement__img {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  filter: saturate(0.78) contrast(0.94) sepia(0.06);
}
.engagement__num {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: 12px; letter-spacing: 0.42em;
  color: var(--gold-bright); margin: 0 0 16px;
}
.engagement__title {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: 0.04em; line-height: 1.3;
  color: var(--ivory);
  margin: 0 0 8px;
}
.engagement__meta {
  font-family: "Cinzel", serif; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-pale); opacity: 0.85;
  margin: 0 0 32px;
}
.engagement__section {
  border-top: 1px solid var(--rule-soft);
  padding: 22px 0;
}
.engagement__section:last-child { border-bottom: 1px solid var(--rule-soft); }
.engagement__label {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: 11px; letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin: 0 0 12px;
}
.engagement__text {
  margin: 0;
  font-size: 15px; line-height: 1.8;
  color: var(--ivory-dim);
}
.engagement__note {
  margin: 60px auto 0;
  max-width: 540px;
  text-align: center;
  font-family: "Cinzel", serif; font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-pale); opacity: 0.78;
}

/* =================== Contact / form =================== */
.contact {
  max-width: 760px; margin: 0 auto;
  padding: 80px 40px 120px;
}
.contact__frame {
  position: relative;
}
.contact__corners { position: absolute; inset: -1px; pointer-events: none; }
.contact__corners span {
  position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--gold-pale);
}
.contact__corners span:nth-child(1) { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.contact__corners span:nth-child(2) { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.contact__corners span:nth-child(3) { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.contact__corners span:nth-child(4) { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.form {
  border: 1px solid var(--rule-soft);
  background: rgba(8, 47, 59, 0.45);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}
.form__row { display: flex; flex-direction: column; gap: 8px; }
.form__row--full { grid-column: 1 / -1; }
.form__label {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: 10px; letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
.form__label .req { color: var(--gold-bright); margin-left: 4px; }
.form__input,
.form__select,
.form__textarea {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ivory);
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  /* Body text +1pt. */
  font-size: 16px;
  line-height: 1.6;
  padding: 12px 0;
  letter-spacing: 0.01em;
  transition: border-color .25s;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-bright);
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--ivory-faint); }
.form__select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-pale) 50%),
                    linear-gradient(135deg, var(--gold-pale) 50%, transparent 50%);
  background-position: calc(100% - 14px) calc(50% + 2px), calc(100% - 8px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.form__select option { background: var(--bg-deep); color: var(--ivory); }
.form__textarea {
  min-height: 140px;
  resize: vertical;
  border: 1px solid var(--rule);
  padding: 14px 16px;
}
.form__textarea:focus { border-color: var(--gold-bright); }
.form__submit {
  grid-column: 1 / -1;
  display: flex; justify-content: flex-end; gap: 16px; align-items: center;
  margin-top: 8px;
}
.form__status {
  font-family: "Cinzel", serif; font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0; transition: opacity .35s;
}
.form__status.is-visible { opacity: 0.9; }
.form__status.is-error { color: #E8A0A0; }

.form__success {
  display: none;
  padding: 80px 56px;
  text-align: center;
  border: 1px solid var(--rule-soft);
  background: rgba(8, 47, 59, 0.45);
}
.form__success.is-visible { display: block; }
.form__success .ornament { margin-bottom: 28px; }
.form__success h3 {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: clamp(20px, 2vw, 26px); letter-spacing: 0.04em;
  color: var(--ivory); margin: 0 0 16px;
}
.form__success p {
  margin: 0 auto; max-width: 44ch;
  color: var(--ivory-dim); font-size: 15px; line-height: 1.7;
}

/* =================== CTA band =================== */
.cta-band {
  padding: 130px 40px;
  background:
    linear-gradient(to bottom, transparent, rgba(224, 191, 124, 0.05), transparent),
    linear-gradient(to bottom, var(--bg-deep), var(--bg));
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.cta-band__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cta-band__ornament { width: 60px; height: 1px; background: var(--gold-pale); margin: 0 auto 40px; }
.cta-band__ornament:last-child { margin: 40px auto 0; }
.cta-band h2 {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: clamp(26px, 3.2vw, 40px); letter-spacing: 0.04em;
  margin: 0 0 18px; color: var(--ivory);
}
.cta-band p {
  color: var(--ivory-dim); margin: 0 0 40px;
  font-size: 15px; line-height: 1.7;
}

/* =================== Footer =================== */
.footer {
  border-top: 1px solid var(--rule-soft);
  padding: 60px 40px 44px;
  margin-top: 40px;
}
.footer__inner { max-width: 1240px; margin: 0 auto; text-align: center; }
.footer__mark {
  width: 42px; height: auto;
  margin: 0 auto 22px; opacity: 0.85;
}
.footer__wordmark {
  height: 12px; width: auto; margin: 0 auto 10px;
  opacity: 0.9;
}
.footer__tagline {
  font-family: "Cinzel", serif; font-size: 11px;
  letter-spacing: 0.42em; color: var(--gold-pale); text-transform: uppercase;
  margin: 0 0 18px;
}
.footer__nav {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 26px; margin: 0 0 22px;
}
.footer__nav a {
  font-family: "Cinzel", serif; font-size: 10px;
  letter-spacing: 0.32em; color: var(--ivory); opacity: 0.7;
  text-transform: uppercase;
  transition: opacity .25s, color .25s;
}
.footer__nav a:hover,
.footer__nav a:focus-visible { color: var(--gold-bright); opacity: 1; outline: none; }
.footer__meta {
  font-size: 12px; color: var(--ivory-mute); margin: 0;
  letter-spacing: 0.06em;
}

/* =================== Reveal =================== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 1s ease, transform 1s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =================== 404 =================== */
.notfound {
  min-height: 78vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 40px;
  text-align: center;
}
.notfound__inner { max-width: 560px; }
.notfound__code {
  font-family: "Cinzel", serif; font-weight: 500;
  font-size: clamp(64px, 12vw, 120px); letter-spacing: 0.16em;
  color: var(--gold-pale);
  margin: 0 0 18px;
  line-height: 1;
}
.notfound__title {
  font-family: "Cinzel", serif; font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.04em; line-height: 1.35;
  color: var(--ivory);
  margin: 0 0 22px;
}
.notfound__body {
  font-size: 15px; line-height: 1.75;
  color: var(--ivory-dim);
  margin: 0 auto 36px;
  max-width: 44ch;
}

/* =================== Responsive =================== */
/* Defensive: at desktop widths, the mobile menu must never display, even if
   its `hidden` attribute is removed in flight. */
@media (min-width: 901px) {
  .nav__toggle { display: none !important; }
  .nav__overlay { display: none !important; }
}

@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .framework { grid-template-columns: repeat(2, 1fr); row-gap: 60px; }
  .framework::before { display: none; }
  .step + .step { border-left: 0; }
  .step:nth-child(odd) { border-right: 1px solid var(--rule-soft); }
  .panels { gap: 60px; }
}
@media (max-width: 900px) {
  .nav__inner { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__overlay { right: 16px; }
  .hero { padding: 36px 24px 28px; min-height: 28vh; }
  .hero::before, .hero__corners, .hero__slides { inset: 14px; }
  .home-tagline { padding: 48px 24px 24px; }
  .intro, .philosophy { padding: 60px 24px 80px; }
  .services-preview, .services-detail, .engagement, .framework, .operational, .contact, .approach, .stewardships, .section-image { padding-left: 24px; padding-right: 24px; }
  .page-header { padding: 110px 24px 80px; }
  .site-banner { padding: 40px 24px; min-height: 16vh; }
  .cta-band { padding: 90px 24px; }
  .footer { padding: 50px 24px 36px; }
  .panels { grid-template-columns: 1fr; padding: 60px 24px; gap: 50px; }
  .service-block { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .service-block__head { position: static; }
  .approach__section { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .engagement__frame { grid-template-columns: 1fr; gap: 48px; }
  .form { padding: 40px 28px; grid-template-columns: 1fr; gap: 22px; }
  .form__submit { justify-content: stretch; flex-direction: column-reverse; align-items: stretch; }
  .form__submit .btn { width: 100%; }
}
@media (max-width: 700px) {
  .framework { grid-template-columns: 1fr; }
  .step:nth-child(odd) { border-right: 0; }
  .step + .step { border-top: 1px solid var(--rule-soft); padding-top: 48px; margin-top: 12px; }
  .service-block__list { grid-template-columns: 1fr; gap: 10px; }
  .operational__list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__lockup { width: 200px; }
  .hero__headline { font-size: 28px; }
  .page-header__title { font-size: 32px; }
  .footer__nav { gap: 18px; }
}
@media (max-width: 480px) {
  .nav__inner { padding: 0 18px; }
  .nav__wordmark { height: 12px; }
  .form { padding: 32px 20px; }
}
