﻿:root {
  --ink: #f2efe8;
  --ink-dark: #11151c;
  --muted: #b1b7c1;
  --muted-dark: #596270;
  --accent: #d0424e;
  --bg: #08090b;
  --bg-2: #0f1217;
  --paper: #eee8de;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(17, 21, 28, 0.14);
  --max: min(1280px, calc(100% - 2.5rem));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
}

body {
  background: linear-gradient(180deg, #090a0d 0%, #050608 58%, #07080a 100%);
  color: var(--ink);
  font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 180px 180px;
  opacity: 0.14;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

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

p,
h1,
h2,
h3,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.site-shell {
  min-height: 100vh;
}

.site-header,
.hero-home,
.hero-page,
.editorial-band,
.section-wrap,
.final-band,
.contact-band,
.site-footer {
  width: var(--max);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

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

.brand img {
  width: 2.85rem;
  height: 2.85rem;
  object-fit: contain;
}

.brand span {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}

.nav-toggle svg {
  width: 1rem;
  height: 1rem;
  margin: auto;
}

.nav-menu {
  display: flex;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.7rem;
  align-items: center;
}

.nav-links a,
.download-link {
  position: relative;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 140ms ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 140ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active,
.download-link:hover,
.download-link:focus-visible {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.eyebrow,
.section-label {
  color: var(--accent);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-home,
.hero-page {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.88fr);
  gap: 3rem;
  align-items: center;
  padding: 4.25rem 0 5.35rem;
}

.hero-text,
.page-text {
  max-width: 38rem;
}

.hero-title,
.page-title,
.editorial-title,
.section-title,
.final-title,
.form-title {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.hero-title {
  max-width: 9ch;
  margin-top: 0.9rem;
  font-size: clamp(3.3rem, 6.5vw, 5.7rem);
}

.page-title {
  max-width: 10ch;
  margin-top: 0.9rem;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.hero-lead,
.page-lead,
.editorial-copy,
.section-copy,
.form-note,
.contact-copy,
.final-copy,
.image-caption {
  line-height: 1.8;
}

.hero-lead,
.page-lead {
  max-width: 34rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions,
.final-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 1.9rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.92rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-1px);
}

.button {
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--ink);
}

.button-secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.hero-visual,
.page-visual {
  min-height: 34rem;
  background:
    linear-gradient(180deg, rgba(9, 10, 13, 0.18), rgba(9, 10, 13, 0.65)),
    var(--hero-image) center / cover no-repeat;
}

.hero-visual {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.page-visual {
  min-height: 29rem;
}

.legal-emblem-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(208, 66, 78, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(8, 10, 13, 0.12), rgba(8, 10, 13, 0.66)),
    linear-gradient(145deg, #0a0c10, #141820 58%, #090a0d);
}

.legal-emblem-visual::before,
.legal-emblem-visual::after {
  content: '';
  position: absolute;
  inset: 0;
}

.legal-emblem-visual::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 112px 112px;
  opacity: 0.18;
}

.legal-emblem-visual::after {
  inset: 0;
  background:
    url('assets/brand-emblem.png') center / 230px auto no-repeat;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.38));
}

.dip-minimal-stage {
  width: min(100% - 2.5rem, 1100px);
  min-height: calc(100vh - 7.5rem);
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 4rem 0 7rem;
}

.dip-minimal-shell {
  width: min(100%, 760px);
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.dip-minimal-kicker {
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.dip-minimal-title {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: clamp(3.8rem, 11vw, 6.4rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.92;
  text-transform: uppercase;
}

.dip-minimal-lines {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.dip-minimal-lines p {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.dip-minimal-copy {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.image-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 18rem;
  color: rgba(242, 239, 232, 0.86);
  font-size: 0.86rem;
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.64fr);
  gap: 2rem;
  align-items: start;
  padding: 0 0 5rem;
}

.editorial-band-tight {
  padding-bottom: 0;
}

.editorial-title,
.section-title,
.final-title,
.form-title {
  max-width: 13ch;
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.editorial-copy,
.section-copy,
.final-copy,
.contact-copy {
  color: var(--muted);
}

.section-wrap {
  padding-bottom: 5.4rem;
}

.section-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 2.3rem;
  align-items: start;
}

.manifest-list li,
.audience-list li,
.service-lines li,
.contact-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.manifest-list strong,
.audience-list strong,
.service-lines strong,
.contact-list strong {
  display: block;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.manifest-list span,
.audience-list span,
.service-lines span,
.contact-list span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  line-height: 1.7;
}

.section-paper {
  width: 100%;
  background: var(--paper);
  color: var(--ink-dark);
}

.paper-inner {
  width: var(--max);
  margin: 0 auto;
  padding: 5.35rem 0;
}

.paper-inner .section-grid,
.paper-inner .about-grid,
.paper-inner .contact-grid {
  align-items: center;
}

.paper-inner .section-label,
.paper-inner .eyebrow {
  color: #a13d47;
}

.paper-inner .section-copy,
.paper-inner .contact-copy,
.paper-inner .manifest-list span,
.paper-inner .audience-list span,
.paper-inner .service-lines span,
.paper-inner .contact-list span,
.paper-inner .form-note {
  color: var(--muted-dark);
}

.paper-inner .manifest-list li,
.paper-inner .audience-list li,
.paper-inner .service-lines li,
.paper-inner .contact-list li {
  border-top-color: var(--line-dark);
}

.story-copy {
  display: grid;
  gap: 1rem;
  max-width: 38rem;
  color: var(--muted-dark);
  line-height: 1.8;
}

.final-band {
  padding: 0 0 5.8rem;
}

.final-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.final-actions {
  margin-top: 1.85rem;
}

.final-link {
  display: inline-block;
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.final-link:hover,
.final-link:focus-visible {
  color: var(--ink);
}

.page-section {
  padding: 0 0 5rem;
}

.page-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2.2rem;
}

.service-lines li {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 1rem 2rem;
  align-items: start;
}

.service-lines li strong {
  font-size: 1.02rem;
}

.service-lines li span {
  margin-top: 0;
}

.contact-band {
  padding: 0 0 5rem;
}

.about-visual {
  background:
    linear-gradient(180deg, rgba(8, 10, 13, 0.2), rgba(8, 10, 13, 0.72)),
    linear-gradient(90deg, rgba(10, 12, 16, 0.26), rgba(10, 12, 16, 0.12)),
    url('https://images.unsplash.com/photo-1517502884422-41eaead166d4?auto=format&fit=crop&w=1400&q=80') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.about-visual::before,
.about-visual::after,
.contact-visual::before,
.contact-visual::after {
  content: '';
  position: absolute;
  inset: 0;
}

.about-visual::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 112px 112px;
  opacity: 0.22;
}

.about-visual::after {
  background: linear-gradient(180deg, rgba(208, 66, 78, 0.16), transparent 34%, transparent 100%);
}

.contact-visual {
  background:
    linear-gradient(180deg, rgba(8, 10, 13, 0.12), rgba(8, 10, 13, 0.48)),
    linear-gradient(90deg, rgba(10, 12, 16, 0.16), rgba(10, 12, 16, 0.06)),
    url('https://images.unsplash.com/photo-1497366412874-3415097a27e7?auto=format&fit=crop&w=1400&q=80') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.contact-visual::before {
  inset: 1.5rem;
  border: 1px solid rgba(242, 239, 232, 0.14);
}

.contact-visual::after {
  inset: auto 0 0 auto;
  width: 74%;
  height: 74%;
  background:
    linear-gradient(rgba(242, 239, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 232, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.48;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.value-item {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-dark);
}

.value-title {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.value-copy {
  margin-top: 0.7rem;
  color: var(--muted-dark);
  line-height: 1.8;
}

.contact-grid {
  align-items: start;
}

.form-note {
  max-width: 30rem;
}

form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-actions-spaced {
  margin-top: 1.5rem;
  padding-top: 1rem;
}

.confirmation-hero {
  padding-bottom: 7rem;
}

.confirmation-copy {
  max-width: 30rem;
  margin-top: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.confirmation-visual {
  background:
    linear-gradient(180deg, rgba(8, 10, 13, 0.16), rgba(8, 10, 13, 0.64)),
    linear-gradient(90deg, rgba(10, 12, 16, 0.18), rgba(10, 12, 16, 0.06)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1400&q=80') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.confirmation-visual::before,
.confirmation-visual::after {
  content: '';
  position: absolute;
  inset: 0;
}

.confirmation-visual::before {
  background:
    linear-gradient(rgba(242, 239, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 232, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.28;
}

.confirmation-visual::after {
  inset: auto 1.6rem 1.6rem 1.6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 239, 232, 0), rgba(242, 239, 232, 0.55), rgba(242, 239, 232, 0));
}

.belief-band {
  width: 100%;
  border-top: 1px solid var(--line);
}

.belief-shell {
  width: var(--max);
  margin: 0 auto;
  padding: 4rem 0 5.6rem;
}

.belief-copy {
  max-width: 58rem;
  margin-top: 1rem;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.policy-shell {
  width: var(--max);
  margin: 0 auto;
  padding: 0 0 5.6rem;
}

.policy-meta {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 2rem;
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--line);
}

.policy-kicker {
  color: var(--accent);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.policy-summary {
  color: var(--muted);
  line-height: 1.8;
}

.policy-document {
  display: grid;
  gap: 2.25rem;
  max-width: 58rem;
  padding-top: 2.25rem;
}

.policy-section {
  display: grid;
  gap: 0.9rem;
}

.policy-section h2 {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  line-height: 1.85;
}

.policy-section ul {
  display: grid;
  gap: 0.8rem;
}

.policy-section li {
  position: relative;
  padding-left: 1rem;
}

.policy-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.82rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: var(--accent);
}

.policy-note {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: rgba(242, 239, 232, 0.66);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.55rem;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink-dark);
}

textarea {
  min-height: 8.5rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-bottom-color: var(--accent);
}

.site-footer {
  padding: 2.2rem 0 2rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.footer-link {
  display: inline-block;
  position: relative;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 140ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--ink);
}

.footer-link:hover::after,
.footer-link:focus-visible::after,
.footer-link-current::after {
  transform: scaleX(1);
}

.footer-link-current {
  color: var(--ink);
  cursor: default;
}

.footer-slogan {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.footer-copy {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .hero-home,
  .hero-page,
  .editorial-band,
  .section-grid,
  .about-grid,
  .contact-grid,
  .final-shell,
  .page-band,
  .values-grid,
  .policy-meta {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .page-visual {
    min-height: 26rem;
  }

  .dip-minimal-stage {
    min-height: auto;
    padding: 3rem 0 5.5rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: relative;
    padding-right: 3.7rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0.9rem;
    right: 0;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    padding: 1rem 0.95rem;
    border: 1px solid var(--line);
    background: rgba(10, 12, 16, 0.98);
  }

  .nav-menu.is-open {
    display: block;
  }

  .nav-links {
    display: grid;
    gap: 0.5rem;
  }

  .nav-links a::after {
    left: 0;
    right: auto;
    width: 1.9rem;
    bottom: 0.1rem;
    transform-origin: left center;
  }

  .nav-links a {
    padding: 0.45rem 0;
  }

  .service-lines li,
  .audience-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .policy-document {
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  :root {
    --max: min(100% - 1.5rem, 100% - 1.5rem);
  }

  .site-header {
    gap: 0.85rem;
    padding-top: 0.95rem;
    padding-bottom: 0.7rem;
    padding-right: 3.45rem;
  }

  .brand {
    gap: 0.75rem;
  }

  .brand img {
    width: 2.35rem;
    height: 2.35rem;
  }

  .brand span {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .hero-home,
  .hero-page {
    gap: 1.55rem;
    padding-top: 2.15rem;
    padding-bottom: 3.15rem;
  }

  .hero-text,
  .page-text {
    max-width: 100%;
  }

  .eyebrow,
  .section-label {
    font-size: 0.66rem;
    letter-spacing: 0.24em;
  }

  .hero-title {
    margin-top: 0.7rem;
    max-width: 8ch;
    font-size: clamp(2.3rem, 11.2vw, 3.4rem);
    line-height: 0.94;
  }

  .page-title {
    margin-top: 0.7rem;
    max-width: 9ch;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 0.96;
  }

  .editorial-title,
  .section-title,
  .final-title,
  .form-title {
    max-width: 11ch;
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 0.98;
  }

  .hero-lead,
  .page-lead,
  .editorial-copy,
  .section-copy,
  .form-note,
  .contact-copy,
  .final-copy,
  .image-caption,
  .belief-copy,
  .value-copy,
  .story-copy {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-lead,
  .page-lead {
    margin-top: 1.05rem;
  }

  .hero-actions {
    margin-top: 1.4rem;
  }

  .button,
  .button-secondary {
    min-height: 3.05rem;
    padding: 0.88rem 1.1rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero-visual,
  .page-visual {
    min-height: 16.25rem;
  }

  .image-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: 15rem;
    font-size: 0.82rem;
  }

  .editorial-band,
  .section-wrap,
  .final-band {
    padding-bottom: 3.35rem;
  }

  .paper-inner {
    padding: 3.35rem 0;
  }

  .section-grid,
  .contact-grid,
  .final-shell {
    gap: 1.45rem;
  }

  .service-lines li,
  .contact-list li {
    padding: 0.9rem 0;
  }

  .service-lines strong,
  .contact-list strong,
  .value-title {
    font-size: 0.98rem;
  }

  .download-link {
    display: inline-block;
    margin-top: 0.9rem;
    line-height: 1.5;
  }

  .form-note {
    margin-top: 0.3rem;
  }

  form {
    margin-top: 1.1rem;
    gap: 0.85rem;
  }

  input,
  textarea {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  textarea {
    min-height: 7.4rem;
  }

  .final-actions {
    margin-top: 1.25rem;
  }

  .form-actions-spaced {
    margin-top: 1.15rem;
    padding-top: 0.75rem;
  }

  .belief-shell {
    padding: 3rem 0 4rem;
  }

  .belief-copy {
    margin-top: 0.85rem;
    font-size: clamp(1.3rem, 6vw, 1.8rem);
    line-height: 1.2;
  }

  .site-footer {
    padding: 1.7rem 0 1.55rem;
  }

  .footer-link {
    font-size: 0.7rem;
  }

  .footer-links {
    gap: 0.8rem;
    margin-bottom: 0.7rem;
  }

  .footer-slogan {
    font-size: 0.9rem;
  }

  .footer-copy {
    margin-top: 0.65rem;
    font-size: 0.68rem;
    line-height: 1.5;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .confirmation-actions {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --max: min(100% - 1rem, 100% - 1rem);
  }

  .site-header {
    padding-top: 0.8rem;
    padding-bottom: 0.55rem;
    padding-right: 3.2rem;
  }

  .brand img {
    width: 2.15rem;
    height: 2.15rem;
  }

  .brand span {
    font-size: 0.72rem;
    letter-spacing: 0.11em;
  }

  .nav-toggle {
    width: 2.6rem;
    height: 2.6rem;
    top: 0.72rem;
  }

  .hero-home,
  .hero-page {
    padding-top: 1.7rem;
    padding-bottom: 2.8rem;
  }

  .hero-title {
    font-size: clamp(2.1rem, 10.4vw, 3rem);
  }

  .page-title {
    font-size: clamp(1.85rem, 9.2vw, 2.7rem);
  }

  .editorial-title,
  .section-title,
  .final-title,
  .form-title {
    font-size: clamp(1.42rem, 6.6vw, 1.85rem);
  }

  .hero-lead,
  .page-lead,
  .editorial-copy,
  .final-copy,
  .form-note,
  .confirmation-copy {
    font-size: 0.93rem;
  }

  .hero-visual,
  .page-visual {
    min-height: 14.75rem;
  }

  .confirmation-hero {
    padding-bottom: 3.2rem;
  }

  .dip-minimal-stage {
    width: min(100% - 1rem, 100%);
    padding: 2rem 0 4.5rem;
  }

  .dip-minimal-shell {
    gap: 1.2rem;
  }

  .dip-minimal-copy {
    font-size: 0.96rem;
    line-height: 1.8;
  }
}

.program-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  margin-top: 1.5rem;
}

.program-link {
  position: relative;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.program-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.38rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 140ms ease;
}

.program-link:hover,
.program-link:focus-visible,
.program-link.is-current {
  color: var(--ink);
}

.program-link:hover::after,
.program-link:focus-visible::after,
.program-link.is-current::after {
  transform: scaleX(1);
}

.program-note,
.form-helper,
.detail-note,
.micro-copy {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.micro-copy-dark {
  color: var(--muted-dark);
}

.grant-section {
  padding: 0 0 4.8rem;
}

.grant-stack {
  display: grid;
  gap: 1.4rem;
}

.grant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.45rem 2.1rem;
}

.grant-card,
.grant-panel,
.grant-stat {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(10, 11, 16, 0.72);
}

.grant-card,
.grant-panel {
  padding: 1.5rem 1.45rem;
}

.grant-card h3,
.grant-panel h3,
.grant-stat strong {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.grant-card p,
.grant-panel p,
.grant-card li,
.grant-panel li {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.grant-card ul,
.grant-panel ul {
  display: grid;
  gap: 0.6rem;
}

.grant-checklist li,
.grant-card li,
.grant-panel li {
  position: relative;
  padding-left: 1.2rem;
}

.grant-checklist li::before,
.grant-card li::before,
.grant-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.grant-stat-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.grant-stat {
  padding: 1.3rem 1.2rem;
}

.grant-stat span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grant-slab {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}

.grant-slab p {
  max-width: 58rem;
  color: var(--ink);
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.grant-form-shell {
  display: grid;
  gap: 2rem;
}

.grant-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.4rem;
}

.grant-form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.grant-fieldset {
  border: 1px solid rgba(14, 18, 26, 0.12);
  padding: 1.35rem 1.25rem 1.3rem;
}

.grant-fieldset legend {
  padding: 0 0.45rem;
  color: var(--ink-dark);
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
}

.checkbox-item,
.acknowledgment-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-dark);
  font-size: 0.92rem;
  line-height: 1.6;
}

.checkbox-item input,
.acknowledgment-item input {
  width: 1rem;
  min-width: 1rem;
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.checkbox-item span,
.acknowledgment-item span {
  display: block;
}

.acknowledgment-list {
  display: grid;
  gap: 0.85rem;
}

.inline-link {
  color: var(--accent);
  text-decoration: none;
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
}

.portfolio-entry {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.portfolio-block {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.portfolio-block + .portfolio-block {
  margin-top: 1.2rem;
}

.portfolio-label {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-title {
  margin-top: 0.55rem;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.portfolio-copy {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.78;
}

.press-block {
  max-width: 52rem;
  display: grid;
  gap: 1.2rem;
}

.press-block p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
}

.social-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.social-card {
  border: 1px solid var(--line);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.social-card img {
  width: 100%;
  height: auto;
}

.social-card p {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grant-teaser-body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(208, 66, 78, 0.18), transparent 42%),
    linear-gradient(180deg, #06070b, #050609 65%, #040506);
  color: #f4f1ea;
}

.grant-teaser {
  width: min(100%, 40rem);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.grant-teaser p {
  margin: 0;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
  white-space: nowrap;
}

.grant-teaser p + p {
  margin-top: 0.55rem;
}

.grant-teaser .accent {
  color: var(--accent);
}

@media (max-width: 1080px) {
  .grant-grid,
  .portfolio-entry,
  .grant-stat-wrap,
  .grant-form-grid-3,
  .social-gallery {
    grid-template-columns: 1fr;
  }

  .grant-form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .grant-section {
    padding-bottom: 3.8rem;
  }

  .grant-card,
  .grant-panel,
  .grant-stat,
  .grant-fieldset {
    padding-left: 1.05rem;
    padding-right: 1.05rem;
  }
}

@media (max-width: 560px) {
  .program-links {
    gap: 0.8rem 1rem;
  }

  .grant-slab p {
    font-size: clamp(1.22rem, 8vw, 1.75rem);
  }

  .grant-teaser {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .grant-teaser p {
    font-size: clamp(1.52rem, 9.4vw, 2.4rem);
  }
}

.footer-position {
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-aside {
  margin-top: 1.4rem;
}

.contact-aside p + p {
  margin-top: 0.85rem;
}

.contact-aside strong {
  color: var(--ink-dark);
}

.grant-form-shell form {
  display: grid;
  gap: 1.35rem;
}

[data-dip-summary] .micro-copy,
[data-dip-page] .micro-copy {
  margin-top: 0.85rem;
}

.grant-stat strong {
  display: block;
  line-height: 1.5;
}

.site-footer {
  padding: 2.7rem 0 2.2rem;
  border-top: 1px solid var(--line);
}

.footer-shell {
  display: grid;
  gap: 1.35rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.4rem 2rem;
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-heading {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-group .footer-link {
  width: fit-content;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.footer-position {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-slogan {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.footer-copy {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    gap: 1.1rem;
  }
}
