 :root {
  --forest: #0b3d2e;
  --forest-dark: #092f24;
  --sage: #8faf9c;
  --gold: #bfa46a;
  --ivory: #faf8f2;
  --stone: #e8e1d3;
  --charcoal: #1f2522;
  --olive: #626b63;
  --white: #fffdf8;
  --line: rgba(31, 37, 34, 0.14);
  --shadow: 0 24px 60px rgba(31, 37, 34, 0.12);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --chat--color-primary: #0b3d2e;
  --chat--color-primary-shade-50: #092f24;
  --chat--color-secondary: #bfa46a;
  --chat--color-white: #faf8f2;
  --chat--color-light: #faf8f2;
  --chat--color-light-shade-50: #e8e1d3;
  --chat--color-dark: #1f2522;
  --chat--font-family: var(--font-sans);
  --chat--border-radius: 8px;
  --chat--header--background: #0b3d2e;
  --chat--header--color: #faf8f2;
  --chat--message--bot--background: #faf8f2;
  --chat--message--bot--color: #1f2522;
  --chat--message--user--background: #0b3d2e;
  --chat--message--user--color: #faf8f2;
  --chat--toggle--background: #0b3d2e;
  --chat--toggle--hover--background: #092f24;
  --chat--toggle--active--background: #bfa46a;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: radial-gradient(circle at top left, rgba(191, 164, 106, 0.09), transparent 32rem),
              linear-gradient(180deg, var(--ivory), var(--white));
  color: var(--charcoal);
  font-family: var(--font-sans);
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 72px);
  border-bottom: 1px solid rgba(191, 164, 106, 0.36);
  background: rgba(11, 61, 46, 0.98);
  box-shadow: 0 16px 42px rgba(11, 61, 46, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 104px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand-advisory {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding-left: 12px;
  border-left: 1px solid rgba(191, 164, 106, 0.82);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(250, 248, 242, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav a.active {
  color: var(--gold);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(191, 164, 106, 0.52);
  background: rgba(250, 248, 242, 0.08);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 28px;
  color: rgba(250, 248, 242, 0.78);
  font-size: 11px;
  font-weight: 800;
}

.lang-switch a.active {
  background: var(--gold);
  color: var(--forest-dark);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(191, 164, 106, 0.82);
  color: var(--ivory);
  background: rgba(250, 248, 242, 0.08);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.nav-cta:hover,
.nav-cta.is-pressed {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-dark);
  box-shadow: 0 16px 34px rgba(191, 164, 106, 0.28);
}

.nav-cta.is-pressed {
  transform: scale(1.14);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(191, 164, 106, 0.58);
  background: transparent;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ivory);
  transition: background 220ms ease;
}

.nav-toggle.open,
.nav-toggle.is-pressed {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(191, 164, 106, 0.28);
  transform: scale(1.16);
}

.nav-toggle.open span,
.nav-toggle.is-pressed span {
  background: var(--forest-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .96fr);
  gap: clamp(36px, 6vw, 72px);
  max-width: var(--container);
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 132px) 24px clamp(56px, 7vw, 96px);
  align-items: center;
}

.page-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(88px, 10vw, 148px) 24px clamp(62px, 8vw, 104px);
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--olive);
  font-size: 19px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.page-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.page-portrait {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(191, 164, 106, 0.46);
  box-shadow: 0 28px 70px rgba(31, 37, 34, 0.14);
}

.page-portrait img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  filter: saturate(.94) contrast(.99);
}

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

.hero-visual {
  display: grid;
  gap: 16px;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(191, 164, 106, 0.45);
  background: var(--stone);
  box-shadow: 0 28px 70px rgba(31, 37, 34, 0.14);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(11, 61, 46, 0) 50%, rgba(11, 61, 46, 0.14) 100%);
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.98);
  transform: scale(1.01);
}

.hero-proof-panel {
  padding: 22px 24px;
  border: 1px solid rgba(191, 164, 106, 0.45);
  border-top: 2px solid rgba(191, 164, 106, 0.74);
  border-radius: 8px;
  background: rgba(255, 253, 248, .86);
  box-shadow: 0 18px 45px rgba(31, 37, 34, 0.07);
  backdrop-filter: blur(10px);
}

.panel-head {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.panel-head span {
  display: block;
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.panel-head strong {
  display: block;
  margin-top: 6px;
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.05;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-grid article {
  min-height: 124px;
  padding: 16px;
  background: rgba(255, 253, 248, 0.54);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid span,
.method-grid span {
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
}

.proof-grid p {
  color: var(--olive);
  font-size: 13px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: var(--font-serif);
  color: var(--charcoal);
  font-weight: 600;
  line-height: .98;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.8vw, 86px);
  letter-spacing: 0;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(36px, 4.4vw, 62px);
  letter-spacing: 0;
}

h3 {
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.hero-copy {
  max-width: 660px;
  color: var(--olive);
  font-size: 18px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button-primary {
  background: var(--forest);
  color: var(--ivory);
}

.button-primary:hover,
.button-primary.is-pressed {
  background: var(--forest-dark);
  color: var(--ivory);
  box-shadow: 0 16px 34px rgba(11, 61, 46, 0.2);
}

.button-secondary {
  color: var(--forest);
  border-color: rgba(191, 164, 106, 0.7);
  background: rgba(255, 253, 248, 0.6);
}

.button-secondary:hover,
.button-secondary.is-pressed {
  background: rgba(191, 164, 106, 0.14);
  border-color: var(--gold);
}

.button.is-pressed {
  transform: scale(1.07);
}

.microcopy {
  max-width: 520px;
  margin-top: 14px;
  color: var(--olive);
  font-size: 14px;
  text-align: justify;
}

main p,
main li,
.founder-card p,
.organize-list p,
.section-heading p,
.contact p,
.resources p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.value-card p,
.method-grid p,
.paths-grid p,
.organize-list p,
.founder-card p {
  color: var(--olive);
  font-size: 14px;
}

.section {
  padding: clamp(70px, 8vw, 118px) 24px;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.two-column,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.human-section,
.advantage,
.resources {
  background: var(--stone);
}

.statement-list {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.18;
}

.statement-list p {
  margin-bottom: 12px;
  text-align: left;
}

.statement-list strong {
  display: block;
  margin-top: 28px;
  color: var(--forest);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.5;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered p {
  text-align: center;
}

.gains .section-heading,
.method .section-heading,
.paths .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.gains .section-heading h2,
.method .section-heading h2,
.paths .section-heading h2,
.esg-reveal h2 {
  position: relative;
  padding-bottom: 22px;
}

.gains .section-heading h2::after,
.method .section-heading h2::after,
.paths .section-heading h2::after,
.esg-reveal h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 76px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.gains .section-heading p,
.method .section-heading p,
.paths .section-heading p,
.esg-reveal p {
  text-align: center;
}

.section-heading p,
.organize-section p,
.esg-reveal p,
.contact p,
.resources p {
  color: var(--olive);
  font-size: 17px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card,
.method-grid article,
.paths-grid article,
.founder-card,
.lead-form,
.contact-form {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: 0 14px 38px rgba(31, 37, 34, 0.055);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 360ms ease;
}

.value-card::before,
.method-grid article::before,
.paths-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(191, 164, 106, 0.75), transparent);
  opacity: 0;
  transform: translateX(-28%);
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.value-card:hover,
.method-grid article:hover,
.paths-grid article:hover {
  transform: translateY(-7px) scale(1.012);
  border-color: rgba(191, 164, 106, 0.52);
  box-shadow: 0 32px 72px rgba(31, 37, 34, 0.13);
}

.value-card:hover::before,
.method-grid article:hover::before,
.paths-grid article:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.value-card span,
.tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.organize-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.organize-list div {
  border-radius: 8px;
  padding: 22px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 253, 248, .75);
}

.organize-list strong {
  color: var(--forest);
}

.advantage-lines {
  font-family: var(--font-serif);
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.12;
}

.advantage-lines p {
  margin-bottom: 14px;
}

.advantage-lines strong {
  display: block;
  margin-top: 30px;
  color: var(--forest);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.5;
}

.esg-reveal {
  background: var(--forest);
  color: var(--ivory);
}

.esg-reveal .narrow {
  text-align: center;
}

.esg-reveal h2,
.esg-reveal .eyebrow,
.esg-reveal p {
  color: var(--ivory);
}

.esg-reveal p {
  opacity: .86;
}

.narrow {
  max-width: 850px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.method-grid article {
  min-height: 250px;
}

.paths {
  background: var(--stone);
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.paths-grid article.featured {
  border: 1px solid rgba(191, 164, 106, 0.85);
  box-shadow: var(--shadow);
}

.paths-grid ul {
  margin: 20px 0;
  padding-left: 18px;
  color: var(--olive);
}

.paths-grid a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.boutique {
  background: var(--ivory);
}

.founder-card strong {
  color: var(--forest);
}

.founder-card {
  display: grid;
  gap: 20px;
}

.founder-photo {
  width: min(100%, 420px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 8px;
  border: 1px solid rgba(191, 164, 106, 0.38);
  box-shadow: 0 22px 50px rgba(31, 37, 34, 0.14);
}

.expert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expert-badges span,
.expert-badges a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(11, 61, 46, 0.14);
  background: rgba(250, 248, 242, 0.72);
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.resources .section-inner,
.contact-grid {
  align-items: stretch;
}

.resources-featured {
  background: var(--stone);
}

.section-stone {
  background: var(--stone);
}

.section-sub {
  max-width: 780px;
  color: var(--olive);
  font-size: 17px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.package-card,
.path-card,
.method-detail-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: 0 14px 38px rgba(31, 37, 34, 0.055);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1), border-color 360ms ease;
}

.package-card:hover,
.path-card:hover,
.method-detail-grid article:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(191, 164, 106, 0.52);
  box-shadow: 0 32px 72px rgba(31, 37, 34, 0.13);
}

.package-card.featured,
.path-card.featured {
  border-color: rgba(191, 164, 106, 0.85);
  box-shadow: var(--shadow);
}

.package-card ul,
.path-card ul {
  margin: 18px 0;
  padding-left: 18px;
  color: var(--olive);
  font-size: 14px;
}

.package-card h4,
.path-card h4 {
  margin: 22px 0 8px;
  color: var(--forest);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.package-note,
.path-note {
  color: var(--olive);
  font-size: 13px;
  font-style: italic;
}

.package-price {
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
}

.method-detail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.method-detail-grid span {
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .1em;
}

.method-detail-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--forest);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.method-detail-grid p {
  color: var(--olive);
  font-size: 14px;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--ivory);
  padding: 13px 14px;
  color: var(--charcoal);
  font: inherit;
  border-radius: 8px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(191, 164, 106, .5);
  border-color: var(--gold);
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--olive);
}

.checkbox input {
  width: auto;
  margin-top: 5px;
}

.checkbox a {
  color: var(--forest);
  font-weight: 800;
}

.form-note {
  margin: 0;
  color: var(--olive);
  font-size: 13px;
  font-style: italic;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a,
.contact-links span {
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 0.8fr));
  align-items: start;
  gap: 24px;
  padding: 48px clamp(24px, 5vw, 72px);
  background:
    radial-gradient(circle at top left, rgba(191, 164, 106, 0.12), transparent 28rem),
    rgba(11, 61, 46, 0.98);
  color: var(--ivory);
  border-top: 1px solid rgba(191, 164, 106, 0.36);
}

.final-cta {
  background:
    linear-gradient(180deg, rgba(11, 61, 46, 0.96), rgba(9, 47, 36, 0.98)),
    var(--forest);
  color: var(--ivory);
  text-align: center;
}

.final-cta .section-inner {
  margin-right: auto;
  margin-left: auto;
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  color: var(--ivory);
  text-align: center;
}

.final-cta p {
  opacity: .84;
}

.final-cta .button-primary {
  background: var(--gold);
  color: var(--forest-dark);
}

.legal-copy h2 {
  margin-top: 38px;
  font-size: clamp(28px, 3vw, 38px);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.quote-section {
  background: var(--forest);
  color: var(--ivory);
  text-align: center;
}

.quote-section blockquote {
  margin: 0 auto 24px;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.6vw, 68px);
  font-weight: 600;
  line-height: 1.02;
}

.quote-section p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(250, 248, 242, 0.82);
  text-align: center;
}

.site-header,
.site-footer,
.esg-reveal,
.final-cta,
.quote-section,
.case-card.featured,
.path-card.featured.dark,
.package-card.featured.dark {
  color: var(--ivory);
}

.site-header h1,
.site-header h2,
.site-header h3,
.site-header h4,
.site-header p,
.site-header li,
.site-header span:not(.brand-advisory),
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer li,
.esg-reveal h1,
.esg-reveal h2,
.esg-reveal h3,
.esg-reveal h4,
.esg-reveal li,
.final-cta h1,
.final-cta h2,
.final-cta h3,
.final-cta h4,
.final-cta li,
.quote-section h1,
.quote-section h2,
.quote-section h3,
.quote-section h4,
.quote-section li,
.case-card.featured h1,
.case-card.featured h2,
.case-card.featured h3,
.case-card.featured h4,
.case-card.featured p,
.case-card.featured li,
.case-card.featured span {
  color: inherit;
}

.site-footer a,
.esg-reveal a,
.final-cta a,
.quote-section a,
.case-card.featured a {
  color: var(--ivory);
}

.site-footer .eyebrow,
.esg-reveal .eyebrow,
.final-cta .eyebrow,
.quote-section .eyebrow,
.case-card.featured .eyebrow,
.case-card.featured .tag,
.case-card.featured strong {
  color: var(--gold);
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  display: block;
  width: 104px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-footer p {
  color: rgba(250, 248, 242, .72);
  margin: 12px 0 0;
  max-width: 360px;
}

.site-footer .footer-note {
  color: rgba(250, 248, 242, .86);
  border-left: 1px solid rgba(191, 164, 106, .65);
  padding-left: 14px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-column {
  display: grid;
  gap: 9px;
}

.footer-column h4 {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.footer-links a,
.footer-column a {
  text-decoration: none;
  color: rgba(250, 248, 242, .78);
  font-size: 14px;
}

.footer-links a:hover,
.footer-column a:hover {
  color: var(--gold);
}

.footer-legal-line {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(191, 164, 106, .24);
}

.site-footer .footer-legal-line p {
  max-width: none;
  margin: 0;
  color: rgba(250, 248, 242, .68);
  font-size: 12px;
  line-height: 1.65;
}

.site-header {
  animation: header-settle 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content,
.hero-visual,
.page-hero > *,
.page-portrait {
  animation: hero-rise 1100ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-visual {
  animation-delay: 140ms;
}

.hero-image-frame img {
  animation: image-breathe 1800ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes header-settle {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes image-breathe {
  from {
    opacity: 0.72;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 24px;
    background: rgba(11, 61, 46, 0.98);
    color: var(--ivory);
    border-bottom: 1px solid rgba(191, 164, 106, 0.36);
    box-shadow: 0 22px 44px rgba(11, 61, 46, 0.22);
  }
  .site-nav a,
  .site-nav a.active {
    color: var(--ivory);
  }
  .site-nav a:hover {
    color: var(--gold);
  }
  .site-nav .nav-cta {
    color: var(--ivory);
    background: rgba(250, 248, 242, 0.08);
  }
  .site-nav .nav-cta:hover,
  .site-nav .nav-cta.is-pressed {
    color: var(--forest-dark);
    background: var(--gold);
  }
  .site-nav .lang-switch {
    background: rgba(250, 248, 242, 0.08);
  }
  .site-nav .lang-switch a {
    color: rgba(250, 248, 242, 0.78);
  }
  .site-nav .lang-switch a.active {
    color: var(--forest-dark);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero,
  .page-hero-split,
  .two-column,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cards-grid,
  .paths-grid,
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .method-grid,
  .method-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header { min-height: 70px; }
  .site-nav { top: 70px; }
  .brand-logo,
  .footer-logo { width: 96px; }
  .brand-advisory {
    min-height: 24px;
    padding-left: 9px;
    font-size: 11px;
  }
  .hero {
    padding-top: 54px;
    min-height: auto;
  }

  h1 { font-size: 44px; }
  .hero-copy { font-size: 16px; }
  .cards-grid,
  .paths-grid,
  .packages-grid,
  .method-grid,
  .method-detail-grid,
  .organize-list,
  .regulation-map,
  .timeline {
    grid-template-columns: 1fr;
  }
  .circle-diagram,
  .wheel-diagram,
  .process-circle {
    width: min(100%, 360px);
  }
  .circle.middle { inset: 38px; }
  .circle.inner { inset: 82px; }
  .circle.core { inset: 130px; font-size: 15px; }
  .wheel-item {
    width: 42%;
    min-height: 92px;
    padding: 12px;
  }
  .process-step {
    width: 74px;
    min-height: 74px;
    font-size: 12px;
  }
  .reg-table {
    display: block;
    overflow-x: auto;
  }
  .hero-actions .button {
    width: 100%;
  }
  .statement-list,
  .advantage-lines {
    font-size: 26px;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}


.section-heading.centered {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.case-card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border: 1px solid rgba(11, 61, 46, 0.13);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 55px rgba(13, 34, 30, 0.08);
  overflow: hidden;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(191, 164, 106, 0));
}

.case-card.featured {
  background: var(--forest);
  color: var(--ivory);
  transform: translateY(-10px);
  box-shadow: 0 30px 75px rgba(11, 61, 46, 0.22);
}

.case-card h3 {
  margin: 14px 0 14px;
  font-size: 30px;
}

.case-card p {
  color: inherit;
}

.case-card strong {
  display: block;
  margin-top: 20px;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
}

.results-panel {
  max-width: 980px;
  margin: 42px auto 0;
  padding: 34px;
  border-top: 1px solid rgba(191, 164, 106, 0.6);
  border-bottom: 1px solid rgba(191, 164, 106, 0.6);
  text-align: center;
}

.results-panel h3 {
  margin: 8px 0 12px;
  font-size: 34px;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.proof-list span {
  padding: 16px 14px;
  border: 1px solid rgba(11, 61, 46, 0.12);
  background: rgba(250, 248, 241, 0.82);
  color: var(--forest);
  font-size: 14px;
  line-height: 1.45;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.strategy-promise {
  padding-top: 28px;
  padding-bottom: 28px;
  background: rgba(191, 164, 106, .12);
}

.strategy-promise p {
  margin: 0;
  color: var(--forest);
  font-weight: 700;
  text-align: center;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.case-study {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(11, 61, 46, 0.13);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 253, 248, .88);
  box-shadow: 0 20px 48px rgba(31, 37, 34, .075);
}

.case-study h3 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.4vw, 48px);
}

.case-study h4 {
  margin: 26px 0 10px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.case-study ul {
  margin: 0;
  padding-left: 18px;
  color: var(--olive);
}

.case-study li {
  margin-bottom: 6px;
}

.regulation-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.reg-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(11, 61, 46, .14);
  border-top: 2px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 253, 248, .88);
  box-shadow: 0 18px 44px rgba(31, 37, 34, .07);
}

.reg-card span,
.timeline-item span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.reg-card h3 {
  margin: 16px 0 12px;
  color: var(--forest);
  font-size: 34px;
}

.circle-diagram,
.wheel-diagram,
.process-circle {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.circle {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 24px;
  text-align: center;
  font-size: 13px;
}

.circle.outer {
  inset: 0;
  border: 1px solid rgba(191, 164, 106, .55);
  color: var(--olive);
}

.circle.middle {
  inset: 48px;
  border: 1px solid rgba(11, 61, 46, .25);
  color: var(--forest);
}

.circle.inner {
  inset: 102px;
  background: rgba(143, 175, 156, .18);
  color: var(--charcoal);
}

.circle.core {
  inset: 160px;
  background: var(--forest);
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 18px;
}

.wheel-diagram {
  border: 1px solid rgba(191, 164, 106, .6);
  border-radius: 50%;
}

.wheel-center,
.process-core {
  position: absolute;
  inset: 34%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--ivory);
  padding: 18px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.05;
}

.wheel-item,
.process-step {
  position: absolute;
  width: 36%;
  min-height: 108px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(31, 37, 34, .1);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(31, 37, 34, .06);
}

.wheel-item strong {
  display: block;
  color: var(--forest);
  margin-bottom: 6px;
}

.wheel-item span {
  color: var(--olive);
  font-size: 12px;
}

.wheel-a { top: 7%; left: 50%; transform: translateX(-50%); }
.wheel-b { right: 4%; top: 50%; transform: translateY(-50%); }
.wheel-c { bottom: 7%; left: 50%; transform: translateX(-50%); }
.wheel-d { left: 4%; top: 50%; transform: translateY(-50%); }

.process-step {
  width: 88px;
  min-height: 88px;
  border-radius: 50%;
  color: var(--forest);
  font-weight: 800;
  line-height: 1.25;
}

.process-circle {
  border: 1px solid rgba(191, 164, 106, .52);
  border-radius: 50%;
}

.step-1 { top: 0; left: 50%; transform: translate(-50%, -8%); }
.step-2 { top: 22%; right: 4%; }
.step-3 { bottom: 22%; right: 4%; }
.step-4 { bottom: 0; left: 50%; transform: translate(-50%, 8%); }
.step-5 { bottom: 22%; left: 4%; }
.step-6 { top: 22%; left: 4%; }

.reg-table {
  width: 100%;
  margin-top: 34px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(11, 61, 46, .16);
  border-radius: 8px;
  background: rgba(255, 253, 248, .86);
}

.reg-table th,
.reg-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(11, 61, 46, .12);
  text-align: left;
  vertical-align: top;
}

.reg-table th {
  background: var(--forest);
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reg-table td:first-child {
  color: var(--forest);
  font-weight: 800;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.timeline-item {
  padding: 24px;
  border-left: 2px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 253, 248, .86);
  box-shadow: 0 16px 38px rgba(31, 37, 34, .06);
}

.timeline-item h3 {
  margin: 12px 0;
  color: var(--forest);
}

.sources-section a {
  color: var(--forest);
  font-weight: 800;
}

.legal-note {
  background: rgba(191, 164, 106, .11);
}

.centered-block {
  text-align: center;
}

.centered-block p {
  margin-left: auto;
  margin-right: auto;
}

.path-detail-section {
  scroll-margin-top: 112px;
}

.path-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 42px;
  align-items: stretch;
}

.path-detail-main {
  position: relative;
  padding: 38px 0;
}

.path-detail-main h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(44px, 5vw, 76px);
}

.path-detail-main .lead {
  max-width: 680px;
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.08;
  text-align: left;
}

.path-detail-main p:not(.tag):not(.lead) {
  max-width: 720px;
  color: var(--olive);
  font-size: 17px;
  text-align: justify;
  text-justify: inter-word;
}

.path-detail-panel {
  border: 1px solid rgba(11, 61, 46, .14);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 253, 248, .9);
  padding: 32px;
  box-shadow: 0 22px 60px rgba(31, 37, 34, .08);
}

.path-detail-panel h3 {
  margin-top: 0;
  color: var(--forest);
  font-size: 28px;
}

.path-detail-panel ul {
  margin: 18px 0 22px;
  padding-left: 20px;
  color: var(--charcoal);
}

.path-detail-panel li {
  margin-bottom: 10px;
}

.featured-path-detail .path-detail-panel {
  background: var(--forest);
  color: var(--ivory);
  border-color: rgba(191, 164, 106, .8);
}

.featured-path-detail .path-detail-panel h3,
.featured-path-detail .path-detail-panel li,
.featured-path-detail .path-detail-panel .path-note {
  color: var(--ivory);
}

.proof-flow,
.data-matrix,
.process-ladder {
  display: grid;
  gap: 14px;
}

.proof-flow {
  grid-template-columns: 1fr;
  min-width: 0;
}

.proof-flow article,
.data-matrix article,
.process-ladder article {
  position: relative;
  border: 1px solid rgba(11, 61, 46, .14);
  border-radius: 8px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 16px 42px rgba(31, 37, 34, .07);
}

.proof-flow article {
  display: grid;
  grid-template-columns: 54px minmax(90px, 140px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.proof-flow span,
.process-ladder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--ivory);
  font-weight: 800;
}

.proof-flow strong,
.data-matrix strong,
.process-ladder strong {
  color: var(--forest);
  font-size: 17px;
}

.proof-flow p,
.data-matrix p {
  margin: 0;
  color: var(--olive);
  font-size: 14px;
  text-align: left;
}

.data-matrix {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.data-matrix article {
  min-height: 142px;
  padding: 24px;
  border-top: 3px solid var(--gold);
}

.data-matrix strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: 26px;
}

.process-ladder {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-ladder article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px;
}

.process-ladder article:nth-child(2n) {
  transform: translateY(18px);
}

.process-ladder article:nth-child(3),
.process-ladder article:nth-child(4) {
  border-color: rgba(191, 164, 106, .56);
}

@media (max-width: 980px) {
  .case-grid,
  .proof-list {
    grid-template-columns: 1fr;
  }

  .path-detail {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .path-detail-main {
    padding: 12px 0;
  }

  .regulation-map,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .case-card.featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .regulation-map,
  .timeline {
    grid-template-columns: 1fr;
  }

  .path-detail-main h2 {
    font-size: 42px;
  }

  .path-detail-main .lead {
    font-size: 25px;
  }

  .path-detail-panel {
    padding: 24px;
  }

  .proof-flow article {
    grid-template-columns: 44px 1fr;
    align-items: start;
  }

  .proof-flow p {
    grid-column: 2;
  }

  .data-matrix,
  .process-ladder {
    grid-template-columns: 1fr;
  }

  .process-ladder article:nth-child(2n) {
    transform: none;
  }

  .circle-diagram,
  .wheel-diagram,
  .process-circle {
    width: min(100%, 340px);
  }

  .circle {
    padding: 14px;
    font-size: 11px;
  }

  .circle.middle {
    inset: 36px;
  }

  .circle.inner {
    inset: 78px;
  }

  .circle.core {
    inset: 124px;
    font-size: 14px;
  }

  .wheel-item {
    width: 42%;
    min-height: 92px;
    padding: 12px;
    font-size: 12px;
  }

  .wheel-center,
  .process-core {
    inset: 32%;
    font-size: 14px;
  }

  .process-step {
    width: 72px;
    min-height: 72px;
    font-size: 11px;
  }

  .reg-table {
    display: block;
    overflow-x: auto;
    border-radius: 8px;
  }

  .reg-table th,
  .reg-table td {
    min-width: 190px;
  }
}
