:root {
  --petrol-950: #0b2f35;
  --petrol-900: #123f46;
  --petrol-800: #1b5158;
  --petrol-200: #b9d1d1;
  --ivory: #f5f2ea;
  --paper: #fbfaf6;
  --stone: #d9d2c6;
  --sand: #b8a994;
  --ink: #172b2f;
  --muted: #657275;
  --white: #fff;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 80px));
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(96px, 11vw, 168px); }
section[id] { scroll-margin-top: 120px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--petrol-950);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.security-bar {
  position: relative;
  z-index: 60;
  color: var(--white);
  background: var(--petrol-950);
  font-size: 12px;
  letter-spacing: .06em;
}

.security-bar__button {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.security-bar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.security-bar__label {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  animation: security-label-pulse 1.8s ease-in-out infinite;
}

.security-bar__signal {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: #d49a70;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(212, 154, 112, .56);
  animation: security-signal-pulse 1.8s ease-out infinite;
}

.security-bar__callout {
  color: var(--petrol-200);
  border-bottom: 1px solid currentColor;
}

.security-bar__button:hover .security-bar__callout { color: var(--white); }

@keyframes security-label-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .58; }
}

@keyframes security-signal-pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 154, 112, .58); }
  65%, 100% { box-shadow: 0 0 0 8px rgba(212, 154, 112, 0); }
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(18, 63, 70, .11);
  box-shadow: 0 8px 26px rgba(18, 63, 70, .04);
}

.site-header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--petrol-950);
}

.brand__mark {
  width: 52px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -.08em;
}
.brand__mark span { margin-inline: 1px 3px; color: var(--sand); }

.brand__name { display: grid; line-height: 1.08; }
.brand__name strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}
.brand__name small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.brand--legacy {
  width: clamp(280px, 28vw, 360px);
  padding: 0;
  background: transparent;
}
.brand--legacy img { width: 100%; height: auto; }

.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.3vw, 38px); }
.site-nav > a:not(.button) {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--petrol-800);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px 7px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--petrol-950);
  transition: transform .25s ease, opacity .25s ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  color: var(--white);
  background: var(--petrol-900);
  border: 1px solid var(--petrol-900);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  text-decoration: none;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.button:hover { color: var(--petrol-900); background: transparent; transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 9px 18px; }
.button--light { color: var(--petrol-950); background: var(--ivory); border-color: var(--ivory); }
.button--light:hover { color: var(--ivory); background: transparent; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px, 3px); }

.eyebrow {
  margin: 0 0 28px;
  color: var(--petrol-800);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--petrol-200); }

.hero {
  position: relative;
  min-height: calc(100svh - 128px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ivory);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(580px, 1.25fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding-block: clamp(60px, 8vw, 110px);
}

.hero__content { position: relative; z-index: 2; }
.hero h1,
.section-heading h2,
.intro h2,
.practice h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}

.hero h1 { max-width: 680px; font-size: clamp(54px, 5.25vw, 82px); }
.hero__lead {
  max-width: 530px;
  margin: 34px 0 0;
  color: #465a5e;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}
.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 40px; }

.hero__media {
  position: relative;
  margin: 0;
  isolation: isolate;
}
.hero__media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20px 34px 24px -20px;
  border: 1px solid var(--sand);
}
.hero__media img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; object-position: center; }
.hero__media figcaption {
  position: absolute;
  right: 0;
  bottom: -36px;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero__index {
  position: absolute;
  right: 22px;
  bottom: 12px;
  color: rgba(18, 63, 70, .12);
  font-family: var(--serif);
  font-size: 120px;
  line-height: 1;
}

.principles { color: var(--white); background: var(--petrol-900); }
.principles__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.principles article { position: relative; padding: 52px clamp(28px, 4vw, 60px); border-left: 1px solid rgba(255,255,255,.18); }
.principles article:last-child { border-right: 1px solid rgba(255,255,255,.18); }
.principles article > span { color: var(--petrol-200); font-size: 10px; letter-spacing: .14em; }
.principles h2 { margin: 28px 0 12px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.principles p { max-width: 315px; margin: 0; color: rgba(255,255,255,.7); font-size: 13px; }

.intro { background: var(--paper); }
.intro__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.intro h2 { font-size: clamp(58px, 7vw, 104px); }
.intro__copy { max-width: 680px; padding-top: 54px; }
.intro__copy p { margin: 0; color: var(--muted); }
.intro__copy .large-copy { margin-bottom: 38px; color: var(--ink); font-family: var(--serif); font-size: clamp(28px, 3vw, 43px); line-height: 1.18; }

.partners { padding-top: 30px; background: var(--paper); }
.section-heading { max-width: 790px; margin-bottom: 72px; }
.section-heading h2 { font-size: clamp(56px, 6vw, 90px); }
.section-heading--wide { max-width: 900px; }
.section-heading > p:last-child { max-width: 560px; margin: 30px 0 0; color: var(--muted); }
.partners__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.partner-card { min-width: 0; background: var(--ivory); }
.partner-card__portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}
.partner-card__content { padding: clamp(30px, 4vw, 54px); }
.partner-card__role { margin: 0 0 24px; color: var(--petrol-800); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.partner-card h3 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(38px, 4vw, 56px); font-weight: 400; letter-spacing: -.025em; line-height: 1; }
.partner-card__content > p:not(.partner-card__role) { max-width: 540px; min-height: 105px; margin: 0 0 28px; color: var(--muted); font-size: 14px; }

.practice { color: var(--white); background: var(--petrol-950); }
.practice__layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(70px, 11vw, 170px); }
.practice__intro { position: sticky; top: 150px; align-self: start; }
.practice h2 { max-width: 530px; font-size: clamp(55px, 6vw, 88px); }
.practice__intro > p:last-child { max-width: 450px; margin: 35px 0 0; color: rgba(255,255,255,.62); }
.practice-item { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 34px 0; border-top: 1px solid rgba(255,255,255,.22); }
.practice-item:last-child { border-bottom: 1px solid rgba(255,255,255,.22); }
.practice-item > span { padding-top: 8px; color: var(--petrol-200); font-size: 10px; }
.practice-item h3 { margin: 0 0 10px; font-family: var(--serif); font-size: clamp(31px, 3.2vw, 48px); font-weight: 400; }
.practice-item p { max-width: 590px; margin: 0; color: rgba(255,255,255,.61); font-size: 14px; }

.method { background: var(--ivory); }
.method__steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.method__steps li { min-height: 330px; padding: 32px clamp(26px, 3.5vw, 52px); border-top: 1px solid var(--stone); border-left: 1px solid var(--stone); }
.method__steps li:last-child { border-right: 1px solid var(--stone); }
.method__steps span { color: var(--petrol-800); font-size: 10px; }
.method__steps h3 { margin: 90px 0 18px; font-family: var(--serif); font-size: 38px; font-weight: 400; }
.method__steps p { max-width: 310px; margin: 0; color: var(--muted); font-size: 13px; }

.legacy { background: var(--paper); }
.legacy__panel {
  display: grid;
  grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr);
  border: 1px solid var(--stone);
}
.legacy__portrait {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 34px;
  color: var(--ivory);
  background: var(--petrol-950);
  text-align: center;
}
.legacy__portrait span {
  height: 116px;
  font-family: var(--serif);
  font-size: 160px;
  font-weight: 400;
  line-height: .7;
}
.legacy__portrait strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}
.legacy__portrait small {
  margin-top: 30px;
  color: var(--petrol-200);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.legacy__content {
  align-self: center;
  max-width: 790px;
  padding: clamp(52px, 7vw, 94px);
}
.legacy__content h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}
.legacy__content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 32px 0 34px;
  color: var(--muted);
  font-size: 15px;
}

.memorial-hero {
  padding-block: clamp(92px, 11vw, 160px);
  background: var(--ivory);
  border-bottom: 1px solid var(--stone);
}
.memorial-hero__grid {
  display: grid;
  grid-template-columns: .42fr 1.58fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}
.memorial-hero__meta {
  padding-top: 14px;
  border-top: 1px solid var(--sand);
}
.memorial-hero__meta p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.memorial-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(68px, 9vw, 132px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .88;
}
.memorial-hero__name {
  max-width: 760px;
  margin: 42px 0 0;
  color: var(--petrol-800);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.15;
}
.memorial-hero .text-link { margin-top: 38px; }

.memorial-story { background: var(--paper); }
.memorial-story__grid {
  display: grid;
  grid-template-columns: .48fr 1.52fr;
  gap: clamp(60px, 11vw, 160px);
  align-items: start;
}
.memorial-story__aside {
  position: sticky;
  top: 140px;
  padding-top: 24px;
  border-top: 1px solid var(--stone);
}
.memorial-story__aside strong {
  display: block;
  max-width: 260px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}
.memorial-story__aside time {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .06em;
}
.memorial-story__text { max-width: 790px; }
.memorial-story__text > p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}
.memorial-story__text .memorial-story__opening {
  margin-bottom: 48px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(31px, 3.5vw, 48px);
  line-height: 1.2;
}
.memorial-story blockquote {
  margin: 54px 0;
  padding: 12px 0 12px clamp(28px, 4vw, 54px);
  border-left: 1px solid var(--sand);
}
.memorial-story blockquote p {
  margin: 0;
  color: var(--petrol-900);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  font-style: italic;
  line-height: 1.12;
}
.memorial-story__closing {
  margin-top: 62px;
  padding: clamp(34px, 5vw, 58px);
  background: var(--ivory);
  border: 1px solid var(--stone);
}
.memorial-story__closing p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.3;
}
.memorial-story__closing strong {
  display: block;
  margin-top: 24px;
  color: var(--petrol-800);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact { color: var(--white); background: var(--petrol-900); }
.contact__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(70px, 11vw, 170px); }
.contact h2 { max-width: 700px; margin-bottom: 48px; font-size: clamp(58px, 7vw, 104px); }
.contact__details { display: grid; align-content: end; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.contact__label { padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.24); color: var(--petrol-200); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.contact address { margin-bottom: 12px; color: rgba(255,255,255,.76); font-size: 13px; font-style: normal; }
.contact__details a { display: block; margin-top: 8px; color: rgba(255,255,255,.76); font-size: 12px; text-underline-offset: 4px; }

.site-footer { padding: 70px 0 24px; background: #081f23; color: var(--white); }
.brand--footer { color: var(--white); }
.brand--footer { width: clamp(300px, 32vw, 400px); }
.site-footer__top { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 70px; }
.site-footer__social { display: flex; gap: 30px; }
.site-footer__social a,
.site-footer__social button { padding: 0 0 4px; color: rgba(255,255,255,.7); background: none; border: 0; border-bottom: 1px solid rgba(255,255,255,.32); font-size: 11px; text-decoration: none; cursor: pointer; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.site-footer__bottom p { margin: 0; color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .04em; }

.security-dialog {
  width: min(760px, calc(100vw - 32px));
  max-height: min(88vh, 900px);
  padding: clamp(28px, 5vw, 56px);
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
  overflow-y: auto;
}
.security-dialog::backdrop { background: rgba(8, 31, 35, .72); backdrop-filter: blur(4px); }
.security-dialog__top { display: flex; justify-content: space-between; gap: 20px; }
.security-dialog__top button { flex: 0 0 auto; width: 38px; height: 38px; color: var(--ink); background: none; border: 1px solid var(--stone); border-radius: 50%; font-size: 24px; line-height: 1; cursor: pointer; }
.security-dialog h2 { max-width: 560px; margin: 12px 0 24px; font-family: var(--serif); font-size: clamp(42px, 5vw, 62px); font-weight: 400; line-height: 1; }
.security-dialog__summary { color: var(--muted); }
.security-dialog__summary p { margin: 0 0 14px; }
.security-dialog__summary strong { color: var(--petrol-950); }
.security-dialog__channels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
.security-dialog__channels a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 104px;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--stone);
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease;
}
.security-dialog__channels a:hover { background: var(--white); border-color: var(--petrol-800); }
.security-dialog__channels a:last-child { grid-column: 1 / -1; }
.security-dialog__channels span { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.security-dialog__channels strong { margin-top: 3px; font-size: 14px; font-weight: 600; overflow-wrap: anywhere; }
.security-dialog__channels small { margin-top: 6px; color: var(--petrol-800); font-size: 10px; }
.security-dialog__more { margin-top: 26px; border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
.security-dialog__more summary { padding: 19px 38px 19px 0; color: var(--petrol-900); font-size: 12px; font-weight: 600; letter-spacing: .04em; cursor: pointer; }
.security-dialog__more > div { padding: 0 0 24px; color: var(--muted); font-size: 14px; }
.security-dialog__more p { margin: 0 0 14px; }
.security-dialog__more ul { margin: 18px 0; padding-left: 20px; }
.security-dialog__more li { margin-bottom: 9px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid #d49a70; outline-offset: 4px; }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 48px, 900px); }
  .site-nav { gap: 18px; }
  .site-nav > a:not(.button) { display: none; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 72px; }
  .hero__content { max-width: 780px; }
  .hero__media { width: 92%; margin-left: auto; }
  .practice__layout { grid-template-columns: 1fr; }
  .practice__intro { position: static; }
  .practice__intro p:last-child { margin-bottom: 35px; }
  .memorial-hero__grid,
  .memorial-story__grid { grid-template-columns: 1fr; gap: 55px; }
  .memorial-story__aside { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 38px); }
  .section { padding-block: 88px; }
  .security-bar__inner { min-height: 44px; }
  .security-bar__label,
  .security-bar__callout { font-size: 9px; }
  .security-bar__callout { text-align: right; }
  .site-header__inner { min-height: 78px; }
  .brand--legacy { width: 238px; padding: 0; }
  .nav-toggle { position: relative; z-index: 3; display: block; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 100px 40px;
    color: var(--white);
    background: var(--petrol-950);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav > a:not(.button) { display: block; font-family: var(--serif); font-size: 34px; font-weight: 400; }
  .site-nav .button { margin-top: 18px; color: var(--petrol-950); background: var(--ivory); border-color: var(--ivory); }
  .nav-open .nav-toggle > span:not(.sr-only) { background: var(--white); }

  .hero__grid { padding-block: 72px 90px; gap: 58px; }
  .hero h1 { font-size: clamp(50px, 14vw, 68px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { align-items: flex-start; flex-direction: column; }
  .hero__media { width: calc(100% - 12px); }
  .hero__media::before { inset: -12px 18px 16px -12px; }
  .hero__media img { aspect-ratio: 3 / 2; object-position: center; }
  .hero__media figcaption { justify-content: space-between; font-size: 8px; }
  .hero__index { display: none; }

  .principles__grid,
  .intro__grid,
  .partners__grid,
  .method__steps,
  .contact__details { grid-template-columns: 1fr; }
  .principles article { padding: 40px 8px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .principles article:last-child { border-right: 0; border-bottom: 0; }
  .intro__grid { gap: 20px; }
  .intro__copy { padding-top: 25px; }
  .intro h2,
  .section-heading h2,
  .practice h2,
  .contact h2 { font-size: clamp(50px, 14vw, 68px); }
  .partners { padding-top: 0; }
  .section-heading { margin-bottom: 46px; }
  .partners__grid { gap: 22px; }
  .partner-card__portrait { aspect-ratio: 4 / 5; object-position: center; }
  .partner-card__content > p:not(.partner-card__role) { min-height: 0; }
  .practice__layout { gap: 35px; }
  .practice-item { grid-template-columns: 38px 1fr; }
  .method__steps li { min-height: 260px; border-right: 1px solid var(--stone); border-bottom: 0; }
  .method__steps li:last-child { border-bottom: 1px solid var(--stone); }
  .method__steps h3 { margin-top: 55px; }
  .legacy__panel { grid-template-columns: 1fr; }
  .legacy__portrait { min-height: 290px; }
  .legacy__portrait span { height: 92px; font-size: 130px; }
  .legacy__content { padding: 46px 28px 52px; }
  .legacy__content h2 { font-size: clamp(44px, 13vw, 62px); }
  .memorial-hero__grid,
  .memorial-story__grid { gap: 42px; }
  .memorial-hero h1 { font-size: clamp(64px, 19vw, 96px); }
  .memorial-story__aside strong { font-size: 30px; }
  .memorial-story__text > p { font-size: 16px; }
  .contact__grid { gap: 70px; }
  .contact__details { gap: 30px; }
  .site-footer__top,
  .site-footer__bottom { flex-direction: column; }
  .site-footer__social { flex-wrap: wrap; margin-top: 38px; }
  .site-footer__bottom p { line-height: 1.7; }
  .security-dialog { max-height: calc(100dvh - 24px); padding: 26px 22px; }
  .security-dialog__channels { grid-template-columns: 1fr; }
  .security-dialog__channels a:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .security-bar__label { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}
