:root {
  --paper: #F6F4EF;
  --paper-dim: #EEEAE0;
  --ink: #16231F;
  --ink-soft: #354039;
  --forest: #3F6B54;
  --forest-dark: #2C4C3B;
  --forest-tint: #E7EEE8;
  --brass: #A9824F;
  --brass-dark: #8C6B3D;
  --brass-tint: #F1E8D8;
  --line: #DCD7C9;
  --line-strong: #C7C1AF;
  --slate: #6B7268;
  --white: #FFFFFF;
  --shadow: 0 24px 48px -24px rgba(22, 35, 31, 0.28);
  --radius-sm: 3px;
  --radius-md: 6px;
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", monospace;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.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;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--forest-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn i {
  font-size: 16px;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn-light:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  z-index: 300;
  font-family: var(--font-mono);
  font-size: 13px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(246, 244, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 6px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-suffix {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--slate);
  font-weight: 400;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 2px;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--forest);
  transition: width 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  width: 100%;
}

.nav-menu a.is-active {
  color: var(--ink);
}

.nav-menu .nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
}

.nav-menu .nav-cta::after {
  display: none;
}

.nav-menu .nav-cta:hover {
  background: var(--forest-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  font-size: 20px;
  color: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 88px 32px 96px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  margin: 20px 0 26px;
}

.hero-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--slate);
  max-width: 46ch;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.hero-note i {
  color: var(--brass-dark);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-media {
  position: relative;
}

.hero-media-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  left: -18px;
  bottom: 32px;
  background: var(--ink);
  color: var(--paper);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  max-width: 240px;
  box-shadow: var(--shadow);
}

.hero-tag .tag-num {
  font-size: 26px;
  color: var(--brass);
  display: block;
  margin-bottom: 4px;
}

.hero-tag .tag-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.marquee {
  border-bottom: 1px solid var(--line);
  background: var(--paper-dim);
}

.marquee-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

.section {
  padding: 108px 0;
  border-bottom: 1px solid var(--line);
}

.section-tight {
  padding: 72px 0;
}

.section-alt {
  background: var(--paper-dim);
}

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

.section-dark .eyebrow {
  color: var(--brass);
}

.section-dark .eyebrow::before {
  background: var(--brass);
}

.section-dark h2 {
  color: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-top: 16px;
}

.section-head-desc {
  color: var(--slate);
  font-size: 16px;
  max-width: 42ch;
  justify-self: end;
}

.section-dark .section-head-desc {
  color: #B9C2BC;
}

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

.section-dark .ledger {
  border-top-color: rgba(246, 244, 239, 0.18);
}

.ledger-item {
  display: grid;
  grid-template-columns: 88px 1fr 1.1fr;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.section-dark .ledger-item {
  border-bottom-color: rgba(246, 244, 239, 0.18);
}

.ledger-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--brass-dark);
  padding-top: 4px;
}

.section-dark .ledger-num {
  color: var(--brass);
}

.ledger-item h3 {
  font-size: 22px;
}

.ledger-item p {
  color: var(--slate);
  font-size: 15px;
}

.section-dark .ledger-item p {
  color: #B9C2BC;
}

.ledger-icon {
  width: 20px;
  height: 20px;
  color: var(--forest);
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card {
  background: var(--paper);
  padding: 40px 32px;
}

.card i {
  font-size: 26px;
  color: var(--forest);
  margin-bottom: 22px;
  display: block;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.card p {
  color: var(--slate);
  font-size: 14.5px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stat {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat .stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--ink);
  display: block;
}

.stat .stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
  display: block;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.split-reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.split-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 5 / 4;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text .eyebrow {
  margin-bottom: 18px;
}

.split-text h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 20px;
}

.split-text p {
  color: var(--slate);
  margin-bottom: 18px;
  font-size: 15.5px;
}

.split-text p:last-child {
  margin-bottom: 0;
}

.check-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.check-list i {
  color: var(--forest);
  font-size: 18px;
  margin-top: 1px;
  flex-shrink: 0;
}

.pull-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote i {
  font-size: 30px;
  color: var(--brass);
  margin-bottom: 24px;
}

.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.35;
  margin: 0 0 24px;
  color: var(--ink);
}

.pull-quote cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta-band {
  background: var(--forest-dark);
  color: var(--paper);
  border-radius: var(--radius-md);
  padding: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--paper);
  font-size: clamp(26px, 3vw, 38px);
  max-width: 20ch;
}

.cta-band p {
  color: #D7E3DB;
  margin-top: 14px;
  max-width: 48ch;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  border-top: 1px solid var(--line-strong);
  padding-top: 20px;
}

.team-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--paper-dim);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brass-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--slate);
  font-size: 14px;
}

.timeline {
  border-left: 1px solid var(--line-strong);
  margin-left: 6px;
}

.timeline-item {
  position: relative;
  padding: 0 0 48px 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--forest);
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brass-dark);
  display: block;
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--slate);
  font-size: 14.5px;
  max-width: 60ch;
}

.page-hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin: 18px 0 20px;
  max-width: 18ch;
}

.page-hero p {
  color: var(--slate);
  font-size: 17px;
  max-width: 60ch;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--slate);
}

.breadcrumb a:hover {
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.contact-info-item i {
  font-size: 22px;
  color: var(--forest);
  margin-top: 2px;
}

.contact-info-item h3 {
  font-size: 15px;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--slate);
  font-size: 14.5px;
}

.map-frame {
  margin-top: 36px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  filter: grayscale(35%) contrast(1.05);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--slate);
}

.field-checkbox input {
  margin-top: 3px;
}

.field-error {
  color: #A4402E;
  font-size: 12.5px;
  margin-top: 6px;
  display: none;
}

.field.has-error input,
.field.has-error textarea {
  border-color: #A4402E;
}

.field.has-error .field-error {
  display: block;
}

.form-status {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: none;
  align-items: center;
  gap: 10px;
}

.form-status.is-visible {
  display: flex;
}

.form-status.is-success {
  background: var(--forest-tint);
  color: var(--forest-dark);
}

.form-status.is-error {
  background: #F6E3DE;
  color: #A4402E;
}

.legal-content {
  padding: 64px 0 120px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
}

.legal-toc {
  position: sticky;
  top: 108px;
  align-self: start;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.legal-toc p {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 16px;
}

.legal-toc ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-toc a {
  font-size: 13.5px;
  color: var(--ink-soft);
}

.legal-toc a:hover {
  color: var(--forest-dark);
}

.legal-body h2 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 16px;
  scroll-margin-top: 120px;
}

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

.legal-body p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 15px;
  max-width: 74ch;
}

.legal-body ul {
  margin-bottom: 16px;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 74ch;
}

.legal-body ul li {
  list-style: disc;
  margin-bottom: 8px;
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 14px;
}

.legal-body th,
.legal-body td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.legal-body th {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate);
}

.legal-updated {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate);
  margin-bottom: 32px;
  display: inline-block;
  border: 1px solid var(--line-strong);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

.site-footer {
  background: var(--ink);
  color: #C7CFC9;
  padding-top: 80px;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-brand .brand-mark {
  margin-bottom: 18px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--paper);
  margin-bottom: 10px;
}

.footer-tag {
  font-size: 13.5px;
  color: #9DA89F;
  max-width: 30ch;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8B968D;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: #C7CFC9;
}

.footer-col a:hover {
  color: var(--paper);
}

.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: #C7CFC9;
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-col p {
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(246, 244, 239, 0.12);
}

.footer-bottom-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-bottom-inner p {
  font-size: 12.5px;
  color: #7C8880;
}

.footer-disclaimer {
  max-width: 68ch;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 760px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  z-index: 500;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-banner p {
  font-size: 13.5px;
  color: #CBD3CD;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 48ch;
}

.cookie-banner i {
  color: var(--brass);
  font-size: 20px;
  flex-shrink: 0;
}

.cookie-banner a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner .btn-ghost {
  border-color: rgba(246, 244, 239, 0.32);
  color: var(--paper);
}

.cookie-banner .btn-ghost:hover {
  background: rgba(246, 244, 239, 0.08);
  border-color: var(--paper);
}

.cookie-banner .btn-light:hover {
  background: var(--white);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .split-reverse,
  .contact-grid,
  .section-head,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .section-head-desc {
    justify-self: start;
  }

  .hero-media {
    order: -1;
  }

  .grid-cards,
  .team-grid,
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .legal-toc {
    position: static;
    margin-bottom: 24px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    padding: 16px 20px;
  }

  .wrap {
    padding: 0 20px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 18px;
  }

  .hero-grid {
    padding: 56px 20px 64px;
  }

  .hero-tag {
    left: 0;
    bottom: -22px;
  }

  .section {
    padding: 72px 0;
  }

  .grid-cards,
  .team-grid,
  .stat-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: none;
  }

  .cta-band {
    padding: 40px 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .form-card {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 20px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-inner {
    flex-direction: column;
  }
}
