@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap");

:root {
  --cream: #fff7ec;
  --black: #050505;
  --gold: #c6a15b;
  --plum: #8b5e83;
  --ivory: #fffff7;
  --ink: var(--black);
  --charcoal: var(--black);
  --charcoal-2: #14110f;
  --rose: var(--plum);
  --copper: var(--gold);
  --paper: var(--cream);
  --white: var(--ivory);
  --muted: #d8cfc0;
  --muted-2: #a99f91;
  --gold-2: var(--gold);
  --teal: var(--gold);
  --acid: var(--gold);
  --line: rgba(198, 161, 91, 0.32);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1180px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

p {
  margin: 0;
}

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(201, 164, 93, 0.05) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(43, 196, 201, 0.04) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 78% 4%, rgba(43, 196, 201, 0.12), transparent 28rem),
    radial-gradient(circle at 12% 18%, rgba(142, 90, 106, 0.18), transparent 24rem),
    linear-gradient(145deg, #121212 0%, #1b1715 52%, #121212 100%);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(53, 26, 59, 0.1);
  background: rgba(18, 18, 18, 0.86);
  backdrop-filter: blur(18px);
}

.nav::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194, 63, 114, 0.42), rgba(7, 143, 138, 0.48), transparent);
}

.nav-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: grid;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1;
}

.brand span {
  margin-top: 5px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.nav-links a {
  position: relative;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--rose);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  font-weight: 800;
}

.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.btn {
  padding: 0 18px;
  border: 1px solid rgba(53, 26, 59, 0.12);
  background: linear-gradient(135deg, #2bc4c9 0%, #8e5a6a 56%, #c9a45d 100%);
  color: #121212;
  box-shadow: 0 14px 36px rgba(43, 196, 201, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(53, 26, 59, 0.26);
}

.btn.secondary {
  background: rgba(244, 235, 221, 0.08);
  color: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.btn.ghost {
  background: transparent;
  color: var(--plum);
  border-color: rgba(67, 42, 58, 0.22);
  box-shadow: none;
}

.text-link {
  min-height: auto;
  color: var(--plum);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(0deg, rgba(18, 18, 18, 0.96), transparent);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.94), rgba(18, 18, 18, 0.76) 42%, rgba(27, 23, 21, 0.3)),
    linear-gradient(0deg, rgba(18, 18, 18, 1), transparent 40%),
    linear-gradient(135deg, rgba(142, 90, 106, 0.32), transparent 46%, rgba(43, 196, 201, 0.24)),
    url("../images/family-legacy.jpg") center/cover;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  mix-blend-mode: luminosity;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 64px;
}

.eyebrow {
  color: var(--rose);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1,
.page-title {
  max-width: 920px;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(50px, 9vw, 112px);
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
}

h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
}

.lead {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  max-width: 820px;
}

.hero-proof span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(67, 42, 58, 0.12);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(244, 235, 221, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.image-story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  min-height: 520px;
}

.image-story .media-frame {
  min-height: 520px;
}

.image-stack {
  display: grid;
  gap: 16px;
}

.image-stack .media-frame {
  min-height: 252px;
}

.caption-band {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.caption-band span {
  border: 1px solid rgba(67, 42, 58, 0.13);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(255, 250, 242, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(67, 42, 58, 0.08);
}

.trust-strip div {
  padding: 22px;
  background: rgba(255, 250, 242, 0.72);
}

.trust-strip strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.trust-strip span {
  display: block;
  margin-top: 4px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section.tight {
  padding: 58px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 430px;
  color: var(--muted);
  font-size: 16px;
}

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

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.resource-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.84), rgba(255, 255, 255, 0.42)),
    linear-gradient(180deg, rgba(79, 143, 134, 0.08), transparent 42%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 18px 58px rgba(67, 42, 58, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card::before,
.service-card::before,
.resource-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(187, 114, 95, 0.5), transparent);
  opacity: 0.55;
}

.card:hover,
.service-card:hover,
.resource-card:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 143, 134, 0.34);
}

.card {
  padding: 28px;
}

.card p,
.service-card p,
.resource-card p {
  color: var(--muted);
}

.card p,
.service-card p {
  margin-top: 12px;
}

.kicker,
.service-card .kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 38px;
  align-items: center;
}

.media-frame {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(67, 42, 58, 0.28), transparent 52%),
    var(--image, url("../images/family-protection.jpg")) center/cover;
  box-shadow: var(--shadow);
  position: relative;
  background-position: center;
}

.media-frame.top {
  background-position: center top;
}

.media-frame.right {
  background-position: right center;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 242, 0.44);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.media-frame.small {
  min-height: 360px;
}

.story-panel {
  padding: 48px;
  border-left: 1px solid rgba(187, 114, 95, 0.44);
}

.premium-cta {
  background:
    linear-gradient(145deg, rgba(187, 114, 95, 0.2), rgba(255, 250, 242, 0.62)),
    linear-gradient(90deg, rgba(79, 143, 134, 0.14), transparent 62%);
}

.premium-cta h3 {
  color: var(--white);
}

.story-panel p,
.content-block p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

.service-card {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.service-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.service-card dt {
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.band {
  border-block: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.52);
}

.quote {
  max-width: 920px;
  margin: 0;
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04;
}

.quote cite {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 56px;
}

.page-hero .lead {
  max-width: 790px;
}

.content-block {
  max-width: 780px;
}

.list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 14px 0 14px 18px;
  border-left: 2px solid rgba(187, 114, 95, 0.52);
  color: var(--muted);
}

.resource-card {
  min-height: 170px;
  padding: 24px;
}

.resource-card h3 {
  font-size: 26px;
}

.resource-card p {
  margin-top: 10px;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-line strong {
  color: var(--white);
}

.contact-line a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media video {
    display: none;
  }
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--muted-2);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.fine-print {
  margin-top: 20px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.6;
}

.hero-editorial {
  min-height: calc(100vh - 76px);
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
  padding: 74px 0 72px;
}

.hero-copy {
  max-width: 860px;
}

.hero-collage {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  transform: rotate(-1deg);
}

.collage-card {
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(67, 42, 58, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(43, 20, 50, 0.58), transparent 58%),
    var(--image) center/cover;
  box-shadow: 0 28px 70px rgba(67, 42, 58, 0.13);
}

.collage-signal {
  display: grid;
  align-content: end;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(43, 20, 50, 0.96), rgba(209, 59, 121, 0.84)),
    linear-gradient(45deg, rgba(0, 155, 148, 0.38), transparent 62%);
  color: #fffaf2;
}

.collage-signal span {
  position: static;
  justify-self: start;
  background: rgba(223, 244, 94, 0.16);
  color: var(--acid);
}

.collage-signal strong {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95;
}

.collage-large {
  grid-row: 1 / span 2;
}

.collage-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 250, 242, 0.82);
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
}

.marquee-band {
  display: flex;
  gap: 1px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(67, 42, 58, 0.08);
}

.marquee-band span {
  flex: 1 0 auto;
  padding: 18px 24px;
  background: rgba(255, 250, 242, 0.72);
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.manifesto-mark {
  position: sticky;
  top: 110px;
  border-left: 4px solid var(--teal);
  padding-left: 22px;
  color: var(--rose);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 74px);
  line-height: 0.95;
}

.manifesto-copy p {
  margin-top: 20px;
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.current-work {
  position: relative;
}

.current-work::before {
  content: "";
  position: absolute;
  inset: 42px auto auto -4vw;
  width: 18vw;
  height: 18vw;
  max-width: 220px;
  max-height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 236, 104, 0.36), transparent 68%);
  pointer-events: none;
}

.core-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(43, 20, 50, 0.14);
  background: rgba(43, 20, 50, 0.14);
}

.core-areas-card {
  min-height: 430px;
  display: grid;
  align-content: space-between;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.94), rgba(255, 255, 255, 0.54)),
    linear-gradient(120deg, rgba(0, 155, 148, 0.1), transparent 58%);
}

.core-areas-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.9), rgba(255, 255, 255, 0.52)),
    linear-gradient(120deg, rgba(209, 59, 121, 0.12), transparent 60%);
}

.core-areas-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.9), rgba(255, 255, 255, 0.5)),
    linear-gradient(120deg, rgba(200, 95, 68, 0.14), transparent 60%);
}

.core-areas-card:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(43, 20, 50, 0.96), rgba(32, 21, 34, 0.94)),
    linear-gradient(120deg, rgba(0, 155, 148, 0.22), rgba(209, 59, 121, 0.16));
  color: #fffaf2;
}

.core-areas-card h3 {
  margin-top: 30px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.98;
}

.core-areas-card p {
  margin-top: 18px;
  color: var(--muted);
}

.core-areas-card:nth-child(4) p {
  color: rgba(255, 250, 242, 0.74);
}

.core-areas-card:nth-child(4) .text-link {
  color: #fffaf2;
}

.authority-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  border-top: 1px solid rgba(43, 20, 50, 0.13);
  border-bottom: 1px solid rgba(43, 20, 50, 0.13);
}

.proof-statement p {
  margin-top: 16px;
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(43, 20, 50, 0.12);
  border: 1px solid rgba(43, 20, 50, 0.12);
}

.proof-grid span {
  min-height: 112px;
  display: grid;
  align-items: center;
  padding: 22px;
  background: rgba(255, 250, 242, 0.7);
  color: var(--plum);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.signature-system {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.signature-copy,
.signature-notes {
  border: 1px solid rgba(53, 26, 59, 0.12);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 18px 58px rgba(53, 26, 59, 0.07);
}

.signature-copy {
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.92), rgba(255, 255, 255, 0.56)),
    linear-gradient(90deg, rgba(209, 59, 121, 0.11), rgba(0, 155, 148, 0.1));
}

.signature-copy p {
  margin-top: 20px;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.signature-notes {
  display: grid;
  gap: 10px;
  align-content: center;
  background:
    linear-gradient(145deg, rgba(43, 20, 50, 0.98), rgba(24, 14, 28, 0.94)),
    linear-gradient(90deg, rgba(0, 155, 148, 0.22), rgba(209, 59, 121, 0.2));
}

.signature-notes span {
  border-bottom: 1px solid rgba(255, 250, 242, 0.16);
  padding: 14px 0;
  color: #fffaf2;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.95;
}

.project-ledger {
  border-top: 1px solid rgba(43, 20, 50, 0.13);
}

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(43, 20, 50, 0.14);
  background: rgba(43, 20, 50, 0.14);
}

.ledger-grid a {
  min-height: 220px;
  display: grid;
  align-content: end;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.9), rgba(255, 255, 255, 0.48)),
    linear-gradient(120deg, rgba(0, 155, 148, 0.08), transparent 58%);
  transition: transform 180ms ease, background 180ms ease;
}

.ledger-grid a:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.98), rgba(255, 255, 255, 0.62)),
    linear-gradient(120deg, rgba(209, 59, 121, 0.11), rgba(0, 155, 148, 0.09));
}

.ledger-grid span {
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ledger-grid strong {
  margin-top: 18px;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 0.98;
}


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

.project-card {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(53, 26, 59, 0.13);
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
  color: #fffaf2;
  box-shadow: var(--shadow);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 20px;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -30% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(216, 236, 104, 0.18);
  filter: blur(2px);
}

.project-card h3,
.project-card p,
.project-card a,
.project-card .kicker {
  position: relative;
  z-index: 1;
}

.project-card h3 {
  color: #fffaf2;
}

.project-card p {
  margin-top: 16px;
  color: rgba(255, 250, 242, 0.76);
}

.project-card .text-link {
  margin-top: 22px;
  color: #fffaf2;
}

.project-card .kicker {
  color: var(--acid);
}

.project-finance {
  background:
    linear-gradient(0deg, rgba(53, 26, 59, 0.78), rgba(53, 26, 59, 0.16)),
    url("../images/books-writing.jpg") center/cover;
}

.project-fiction {
  background:
    linear-gradient(145deg, rgba(194, 63, 114, 0.92), rgba(53, 26, 59, 0.82)),
    linear-gradient(45deg, rgba(7, 143, 138, 0.32), transparent);
}

.project-dialogue {
  background:
    linear-gradient(145deg, rgba(32, 21, 34, 0.94), rgba(7, 143, 138, 0.78)),
    linear-gradient(45deg, rgba(196, 111, 79, 0.3), transparent);
}

.service-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(178px, auto);
  gap: 14px;
}

.service-tile {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 178px;
  border: 1px solid rgba(67, 42, 58, 0.12);
  border-radius: 18px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.9), rgba(255, 255, 255, 0.52)),
    linear-gradient(120deg, rgba(79, 143, 134, 0.1), transparent 55%);
  box-shadow: 0 18px 58px rgba(67, 42, 58, 0.07);
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 44px;
  height: 44px;
  border-right: 2px solid rgba(187, 114, 95, 0.32);
  border-bottom: 2px solid rgba(187, 114, 95, 0.32);
}

.service-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 143, 134, 0.34);
}

.service-tile.feature {
  grid-column: span 2;
  grid-row: span 2;
  background:
    linear-gradient(0deg, rgba(67, 42, 58, 0.5), rgba(67, 42, 58, 0.05)),
    url("../images/family-protection.jpg") center/cover;
  color: #fffaf2;
}

.service-tile span {
  display: block;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-tile.feature span {
  color: #fffaf2;
}

.service-tile strong {
  position: relative;
  z-index: 1;
  max-width: 430px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 42px);
  line-height: 0.98;
}

.service-tile:not(.feature) strong {
  font-size: 27px;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  border: 1px solid rgba(67, 42, 58, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 250, 242, 0.62);
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
}

.feature-split {
  align-items: stretch;
}

.creative-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.song-wall {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.song-wall article {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 240px;
  border: 1px solid rgba(53, 26, 59, 0.12);
  border-radius: 22px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(53, 26, 59, 0.94), rgba(143, 37, 102, 0.78)),
    linear-gradient(45deg, rgba(7, 143, 138, 0.42), transparent 62%);
  color: #fffaf2;
  box-shadow: var(--shadow);
}

.song-wall article:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(7, 143, 138, 0.92), rgba(53, 26, 59, 0.8)),
    linear-gradient(45deg, rgba(216, 236, 104, 0.25), transparent 62%);
}

.song-wall article:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(196, 111, 79, 0.92), rgba(53, 26, 59, 0.82)),
    linear-gradient(45deg, rgba(194, 63, 114, 0.28), transparent 62%);
}

.song-wall article:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(32, 21, 34, 0.95), rgba(7, 143, 138, 0.68)),
    linear-gradient(45deg, rgba(255, 250, 242, 0.12), transparent 62%);
}

.song-wall article::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 16px;
}

.song-wall span {
  position: relative;
  z-index: 1;
  color: rgba(255, 250, 242, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.song-wall strong {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.94;
}

.song-ledger {
  display: grid;
  align-content: center;
  border-radius: 22px;
  padding: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(145deg, rgba(32, 21, 34, 0.96), rgba(53, 26, 59, 0.92)),
    linear-gradient(90deg, rgba(194, 63, 114, 0.24), rgba(7, 143, 138, 0.18));
  color: #fffaf2;
}

.song-ledger p {
  margin-top: 18px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 18px;
}

.song-ledger .kicker {
  color: var(--acid);
}

.recognition-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.recognition-row span {
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.books-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
  border-block: 1px solid var(--line);
}

.books-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.book-visual {
  min-height: 680px;
  border: 1px solid rgba(53, 26, 59, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(0deg, rgba(53, 26, 59, 0.2), transparent 52%),
    var(--image) center/cover;
  box-shadow: var(--shadow);
}

.book-feature-copy {
  border-radius: 28px;
  padding: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.88), rgba(255, 255, 255, 0.54)),
    linear-gradient(110deg, rgba(216, 236, 104, 0.18), rgba(194, 63, 114, 0.09), rgba(7, 143, 138, 0.12));
  border: 1px solid rgba(53, 26, 59, 0.12);
  box-shadow: 0 18px 58px rgba(53, 26, 59, 0.07);
}

.book-feature-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.book-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.book-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(67, 42, 58, 0.14);
  padding: 18px 0;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
}

.book-list a::after {
  content: "Read";
  color: var(--rose);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-index {
  border-top: 1px solid var(--line);
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(43, 20, 50, 0.14);
  border: 1px solid rgba(43, 20, 50, 0.14);
}

.index-grid article {
  min-height: 310px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.92), rgba(255, 255, 255, 0.52)),
    linear-gradient(120deg, rgba(0, 155, 148, 0.1), transparent 60%);
}

.index-grid span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.index-grid h3 {
  margin-top: 36px;
}

.index-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.call-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.flow-list {
  display: grid;
  gap: 12px;
}

.flow-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid rgba(43, 20, 50, 0.14);
  padding: 0 0 22px;
}

.flow-list span {
  color: var(--teal);
  font-weight: 950;
  letter-spacing: 0.12em;
}

.flow-list p {
  color: var(--muted);
  font-size: 18px;
}

.wtf-hero {
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 74px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
  gap: 44px;
  align-items: center;
}

.wtf-hero-copy .page-title {
  max-width: 760px;
}

.wtf-support {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.wtf-device {
  border: 1px solid rgba(53, 26, 59, 0.14);
  border-radius: 28px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.92), rgba(255, 255, 255, 0.56)),
    linear-gradient(140deg, rgba(0, 155, 148, 0.16), rgba(209, 59, 121, 0.1));
  box-shadow: var(--shadow);
}

.wtf-device-bar {
  min-height: 34px;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 0 10px;
}

.wtf-device-bar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(43, 20, 50, 0.24);
}

.wtf-device-screen {
  min-height: 480px;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(53, 26, 59, 0.12);
  border-radius: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(230, 246, 239, 0.74)),
    linear-gradient(120deg, rgba(209, 59, 121, 0.08), transparent 56%);
}

.wtf-device-screen small {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wtf-device-screen strong {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
}

.wtf-device-screen p {
  color: var(--muted);
  font-size: 16px;
}

.wtf-device-row {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(67, 42, 58, 0.12);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 250, 242, 0.78);
  color: var(--plum);
  font-weight: 850;
}

.wtf-device-row b {
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wtf-focus {
  border-top: 1px solid rgba(43, 20, 50, 0.13);
}

.wtf-privacy .media-frame {
  background-position: center;
}

.wtf-steps {
  border-block: 1px solid rgba(43, 20, 50, 0.13);
}

.wtf-access {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.wtf-access-copy p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.wtf-safety {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  border-radius: 28px;
  padding-inline: clamp(24px, 5vw, 58px);
  background:
    linear-gradient(145deg, rgba(43, 20, 50, 0.96), rgba(32, 21, 34, 0.94)),
    linear-gradient(90deg, rgba(0, 155, 148, 0.22), rgba(209, 59, 121, 0.16));
  color: #fffaf2;
}

.wtf-safety .eyebrow {
  color: var(--acid);
}

.wtf-safety-copy p {
  color: rgba(255, 250, 242, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--plum);
  color: #fffaf2;
  font-weight: 850;
}

.skip-link:focus {
  transform: translateY(0);
}

.wtf-standalone {
  background:
    radial-gradient(920px 480px at 82% -8%, rgba(200, 95, 68, 0.08), transparent 62%),
    radial-gradient(780px 460px at 4% 18%, rgba(43, 20, 50, 0.06), transparent 58%),
    linear-gradient(145deg, #fffaf2 0%, #f8edf0 42%, #eaf5ef 100%);
}

.wtf-trust-strip {
  border-bottom: 1px solid rgba(53, 26, 59, 0.12);
  padding: 12px 16px;
  background: rgba(255, 250, 242, 0.78);
  color: var(--muted);
  text-align: center;
}

.wtf-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wtf-trust-strip p {
  max-width: 980px;
  margin: 8px auto 0;
  font-size: 13px;
  line-height: 1.45;
}

.wtf-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(53, 26, 59, 0.1);
  background: rgba(255, 250, 242, 0.86);
  backdrop-filter: blur(18px);
}

.wtf-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
}

.wtf-brand-mark {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(43, 20, 50, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--gold) 0 16%, transparent 17%),
    conic-gradient(from 0deg, rgba(123, 81, 104, 0.74), rgba(111, 143, 132, 0.72), rgba(123, 81, 104, 0.74));
  opacity: 0.9;
}

.wtf-simple-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.wtf-simple-nav a:hover {
  color: var(--plum);
}

.wtf-botanical {
  position: absolute;
  pointer-events: none;
  color: var(--plum);
}

.wtf-botanical-hero {
  inset: 14px -24px auto auto;
  width: min(430px, 48vw);
  opacity: 0.82;
}

.wtf-hero.has-botanical {
  position: relative;
  overflow: hidden;
}

.wtf-hero-copy,
.wtf-summary-preview {
  position: relative;
  z-index: 1;
}

.wtf-summary-preview {
  border: 1px solid rgba(53, 26, 59, 0.12);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.9), rgba(255, 255, 255, 0.54)),
    linear-gradient(120deg, rgba(111, 143, 132, 0.12), rgba(209, 59, 121, 0.06));
  box-shadow: 0 18px 58px rgba(53, 26, 59, 0.08);
}

.wtf-summary-preview span,
.wtf-quiet-panel span,
.wtf-audio-chapters span {
  display: block;
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wtf-summary-preview h2 {
  margin-top: 14px;
  font-size: clamp(32px, 4vw, 52px);
}

.wtf-summary-preview p,
.wtf-summary-preview li {
  color: var(--muted);
}

.wtf-summary-preview ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.wtf-summary-preview li {
  border-left: 2px solid rgba(111, 143, 132, 0.42);
  padding-left: 12px;
}

.wtf-audio {
  border-top: 1px solid rgba(43, 20, 50, 0.12);
  border-bottom: 1px solid rgba(43, 20, 50, 0.12);
}

.wtf-audio-card {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(53, 26, 59, 0.14);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(251, 237, 243, 0.56)),
    linear-gradient(120deg, rgba(111, 143, 132, 0.1), transparent 62%);
  box-shadow: 0 18px 58px rgba(53, 26, 59, 0.08);
}

.wtf-audio-copy h3 {
  font-size: clamp(28px, 4vw, 42px);
}

.wtf-audio-meta,
.wtf-audio-note,
.wtf-transcript p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.wtf-audio-player {
  width: 100%;
  min-height: 44px;
}

.wtf-audio-chapters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.wtf-audio-chapters span {
  flex-basis: 100%;
}

.wtf-audio-chapters a {
  border: 1px solid rgba(67, 42, 58, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 250, 242, 0.7);
  color: var(--plum);
  font-size: 12px;
  font-weight: 850;
}

.wtf-transcript {
  border-top: 1px solid rgba(67, 42, 58, 0.12);
  padding-top: 14px;
}

.wtf-transcript summary {
  cursor: pointer;
  color: var(--plum);
  font-weight: 900;
}

.wtf-validation,
.wtf-companion {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  border-top: 1px solid rgba(43, 20, 50, 0.12);
}

.wtf-validation-copy p,
.wtf-companion p {
  margin-top: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.wtf-validation-copy p + p {
  margin-top: 18px;
}

.wtf-quiet-panel {
  border: 1px solid rgba(53, 26, 59, 0.12);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgba(255, 250, 242, 0.9), rgba(230, 244, 238, 0.62)),
    linear-gradient(120deg, rgba(111, 143, 132, 0.12), transparent 62%);
}

.wtf-quiet-panel p {
  margin-top: 18px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.wtf-companion {
  border-bottom: 1px solid rgba(43, 20, 50, 0.12);
}

.wtf-footer .footer-inner {
  align-items: start;
}

.advocacy-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 1px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(67, 42, 58, 0.12);
}

.advocacy-grid article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  background: rgba(255, 250, 242, 0.78);
}

.advocacy-grid span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.advocacy-grid p {
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.03;
}

.visual-rhythm {
  display: grid;
  grid-template-columns: 1fr 0.82fr 1fr;
  gap: 16px;
  align-items: end;
}

.visual-rhythm .media-frame {
  min-height: 420px;
}

.visual-rhythm .media-frame:nth-child(2) {
  min-height: 540px;
}

.final-conversion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 28px;
  align-items: end;
}

.final-conversion p {
  margin-top: 18px;
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.conversion-card {
  border-radius: 22px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(67, 42, 58, 0.96), rgba(79, 143, 134, 0.82)),
    linear-gradient(90deg, rgba(187, 114, 95, 0.2), transparent);
  color: #fffaf2;
}

.conversion-card span {
  display: block;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
}

.card,
.service-card,
.resource-card,
.core-areas-card,
.book-feature-copy,
.index-grid article,
.ledger-grid a,
.proof-grid span,
.signature-copy,
.conversion-card,
.contact-panel {
  background:
    linear-gradient(145deg, rgba(37, 33, 31, 0.96), rgba(27, 23, 21, 0.9)),
    linear-gradient(120deg, rgba(43, 196, 201, 0.06), transparent 60%);
  border-color: var(--line);
  color: var(--white);
}

.card p,
.service-card p,
.service-card dd,
.resource-card p,
.core-areas-card p,
.book-feature-copy p,
.index-grid p,
.ledger-grid strong,
.proof-grid span,
.signature-copy p,
.contact-line,
.story-panel p,
.content-block p,
.fine-print,
.lead,
.section-head p,
.manifesto-copy p {
  color: var(--muted);
}

.service-card dt,
.contact-line strong,
.trust-strip strong,
.resource-card h3,
.card h3,
.service-card h3,
.core-areas-card h3,
.ledger-grid strong {
  color: var(--white);
}

.marquee-band,
.trust-strip,
.index-grid,
.ledger-grid,
.proof-grid {
  background: rgba(201, 164, 93, 0.18);
}

.marquee-band span,
.trust-strip div {
  background: rgba(37, 33, 31, 0.86);
  color: var(--muted);
}

.media-frame,
.book-visual,
.collage-card {
  border-color: var(--line);
}

.mini-list li,
.caption-band span {
  background: rgba(244, 235, 221, 0.08);
  border-color: var(--line);
  color: var(--muted);
}

.app-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.app-bridge-copy,
.app-bridge-panel,
.media-invitation {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(145deg, rgba(37, 33, 31, 0.96), rgba(18, 18, 18, 0.92)),
    linear-gradient(120deg, rgba(43, 196, 201, 0.1), rgba(142, 90, 106, 0.08));
  box-shadow: var(--shadow);
}

.app-bridge-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.app-bridge-panel span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-invitation {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 26px;
  align-items: end;
}

.media-copy p {
  color: var(--muted);
  font-size: 18px;
}

.boundary-card {
  align-content: center;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(18, 18, 18, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .btn {
    width: 100%;
  }

  .trust-strip,
  .image-story,
  .hero-grid,
  .wtf-hero,
  .manifesto,
  .core-areas-grid,
  .authority-proof,
  .proof-grid,
  .signature-system,
  .app-bridge,
  .media-invitation,
  .ledger-grid,
  .project-grid,
  .creative-grid,
  .books-strip,
  .books-feature,
  .index-grid,
  .call-flow,
  .wtf-access,
  .wtf-safety,
  .wtf-validation,
  .wtf-companion,
  .visual-rhythm,
  .final-conversion,
  .grid.two,
  .grid.three,
  .grid.four,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-collage,
  .service-board {
    grid-template-columns: 1fr 1fr;
  }

  .service-tile.feature {
    grid-column: span 2;
  }

  .manifesto-mark {
    position: static;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .media-frame {
    min-height: 360px;
  }

  .book-visual,
  .wtf-device-screen,
  .visual-rhythm .media-frame,
  .visual-rhythm .media-frame:nth-child(2) {
    min-height: 360px;
  }

  .story-panel {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(187, 114, 95, 0.38);
  }

  .wtf-header {
    position: static;
    display: grid;
    min-height: auto;
    padding: 18px 0;
  }

  .wtf-simple-nav {
    justify-content: flex-start;
  }

  .wtf-botanical-hero {
    width: 72vw;
    opacity: 0.5;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 0 42px;
  }

  h1,
  .page-title {
    font-size: clamp(42px, 13vw, 62px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-collage,
  .song-wall,
  .service-board {
    grid-template-columns: 1fr;
  }

  .core-areas-card,
  .ledger-grid a {
    min-height: auto;
  }

  .proof-grid span {
    min-height: 86px;
  }

  .service-tile.feature {
    grid-column: auto;
    grid-row: auto;
  }

  .collage-large {
    grid-row: auto;
  }

  .advocacy-grid {
    grid-template-columns: repeat(6, 82vw);
  }

  .section,
  .page-hero {
    padding-block: 58px;
  }

  .wtf-hero {
    min-height: auto;
    padding-block: 66px;
    gap: 28px;
  }

  .wtf-trust-strip {
    text-align: left;
  }

  .wtf-trust-row {
    justify-content: flex-start;
  }

  .wtf-brand {
    font-size: 22px;
  }

  .wtf-simple-nav {
    gap: 10px;
    font-size: 12px;
  }

  .wtf-simple-nav a,
  .wtf-audio-chapters a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .wtf-summary-preview,
  .wtf-audio-card,
  .wtf-quiet-panel {
    border-radius: 18px;
  }

  .card,
  .service-card,
  .resource-card,
  .core-areas-card,
  .proof-grid span,
  .signature-copy,
  .signature-notes,
  .app-bridge-copy,
  .app-bridge-panel,
  .media-invitation,
  .index-grid article,
  .ledger-grid a {
    padding: 20px;
  }

  .contact-line {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-inner {
    display: grid;
  }
}
