:root {
  --ink: #122332;
  --ink-2: #24394b;
  --body: #344758;
  --muted: #64727c;
  --paper: #f7f9f6;
  --paper-2: #edf4f2;
  --white: #ffffff;
  --spruce: #1f766f;
  --spruce-dark: #135650;
  --copper: #b5793d;
  --coral: #d66f51;
  --line: rgba(18, 35, 50, 0.12);
  --shadow: 0 24px 70px rgba(18, 35, 50, 0.14);
  --max: 1180px;
  --radius: 8px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--paper);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(214, 111, 81, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(247, 249, 246, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 16px 40px rgba(18, 35, 50, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dfbd78, var(--copper));
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-text {
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

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

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: var(--ink);
  color: var(--white) !important;
  border-radius: var(--radius);
  transition: background 160ms ease;
}

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

.nav-toggle {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(2px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(0) rotate(-45deg);
}

.section-band {
  position: relative;
  padding: 96px 0;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero {
  min-height: min(740px, calc(100vh - var(--header-height)));
  display: flex;
  align-items: center;
  padding: 82px 0 72px;
  overflow: hidden;
  background: #edf4f2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(247, 249, 246, 0.96) 0%, rgba(247, 249, 246, 0.82) 30%, rgba(247, 249, 246, 0.2) 50%, rgba(247, 249, 246, 0) 68%),
    linear-gradient(180deg, rgba(247, 249, 246, 0.12) 0%, rgba(247, 249, 246, 0) 48%, rgba(13, 27, 39, 0.32) 100%);
  transform: none;
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("assets/tampa-skyline-1200.webp") center center / cover no-repeat;
  opacity: 1;
  filter: saturate(1.38) contrast(1.26) brightness(0.84);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 18px;
  color: var(--spruce-dark);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.5vw, 4.9rem);
}

h1 span {
  display: block;
}

h1 span:last-child:not(:first-child) {
  color: var(--spruce-dark);
}

h2 {
  font-size: clamp(2.15rem, 4.2vw, 4.1rem);
}

h3 {
  font-size: clamp(1.4rem, 2.1vw, 2rem);
}

p {
  margin: 0;
}

.hero-lead {
  max-width: 660px;
  margin-top: 24px;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.66;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--spruce);
  color: var(--white);
}

.button-primary:hover {
  background: var(--spruce-dark);
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(31, 118, 111, 0.35);
  color: var(--spruce-dark);
}

.proof-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  max-width: 720px;
  margin: 26px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.proof-strip li {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-strip strong {
  color: var(--ink);
}

.proof-strip span {
  color: var(--muted);
}

.founder-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 654px;
  margin: 30px 0 0;
  padding: 0;
}

.founder-stats li {
  min-height: 78px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.founder-stats strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.founder-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}


.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 40px;
}

.section-head p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.03rem;
}

.models,
.proof,
.request {
  background: var(--white);
}

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

.model-card,
.proof-card,
.work-card,
.sector-card,
.process-board article,
.method-callout,
.request-form,
.insight-list a,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.model-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.card-number,
.work-kicker {
  color: var(--spruce-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-card h3 {
  margin-top: 20px;
}

.model-card p,
.proof-card p,
.work-card dd,
.sector-card p,
.process-board p,
.method-copy p,
.founder-copy p,
.faq-intro p,
.request-copy p {
  color: var(--muted);
}

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

.model-card dl,
.work-card dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 24px;
}

.model-card div,
.work-card div {
  display: grid;
  gap: 4px;
}

dt {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  line-height: 1.55;
}

.text-link {
  width: fit-content;
  margin-top: auto;
  color: var(--spruce-dark);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--coral);
}

.method {
  background: var(--paper-2);
}

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

.method-copy h2 {
  margin-bottom: 22px;
}

.method-copy > p:not(.eyebrow) {
  max-width: 580px;
  font-size: 1.05rem;
}

.method-callout {
  margin-top: 28px;
  padding: 22px;
}

.method-callout strong {
  display: block;
  color: var(--ink);
  margin-bottom: 12px;
}

.method-callout ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--body);
  font-weight: 700;
}

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

.process-board article {
  min-height: 220px;
  padding: 22px;
}

.process-board span {
  color: var(--copper);
  font-weight: 800;
}

.process-board h3 {
  margin-top: 18px;
  font-size: 1.55rem;
}

.process-board p {
  margin-top: 12px;
}

.services {
  background: var(--paper);
}

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

.sector-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
}

.sector-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.sector-card div {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.sector-card p {
  margin: 12px 0 22px;
}

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

.proof-card {
  padding: 24px;
  background: var(--paper);
}

.proof-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

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

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

.work-card {
  padding: 24px;
  background: var(--ink);
  color: var(--white);
}

.work-card h3 {
  margin-top: 12px;
  color: var(--white);
  font-size: 1.75rem;
}

.work-card dt {
  color: #aacbc6;
}

.work-card dd {
  color: #e7efed;
}

.work-card .work-kicker {
  color: #dfbd78;
}

.founder {
  background:
    linear-gradient(90deg, rgba(237, 244, 242, 0.92), rgba(247, 249, 246, 0.88)),
    url("assets/tampa-skyline-1200.webp") center / cover no-repeat;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.82fr);
  gap: 54px;
  align-items: center;
}

.founder-image {
  overflow: hidden;
  border-radius: var(--radius);
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}

.founder-image img {
  aspect-ratio: 1;
  object-fit: cover;
}

.founder-copy {
  padding: 42px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.founder-copy p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.04rem;
}

blockquote {
  margin: 26px 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--copper);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  line-height: 1.15;
}

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

.insights {
  background: var(--paper-2);
}

.insights-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.7fr);
  gap: 48px;
  align-items: start;
}

.insights .section-head {
  display: block;
  margin: 0;
}

.insights .section-head p:not(.eyebrow) {
  margin-top: 18px;
}

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

.insight-list a {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 18px;
  color: var(--ink);
  text-decoration: none;
}

.insight-list a:hover {
  border-color: rgba(31, 118, 111, 0.35);
}

.insight-list strong {
  color: var(--spruce-dark);
  white-space: nowrap;
}

.faq {
  background: var(--ink);
  color: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: start;
}

.faq .eyebrow,
.faq h2 {
  color: var(--white);
}

.faq .eyebrow::before {
  background: var(--copper);
}

.faq-intro p {
  margin-top: 18px;
  color: #d8e7e4;
}

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

.faq-list details {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  cursor: pointer;
  color: var(--white);
  font-weight: 800;
}

.faq-list summary::marker {
  color: var(--copper);
}

.faq-list p {
  padding: 0 20px 20px;
  color: #d8e7e4;
}

.request {
  background:
    linear-gradient(180deg, var(--white) 0%, #f5f8f4 100%);
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
  gap: 72px;
  align-items: center;
}

.request-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  font-size: 1.06rem;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-lines a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font-weight: 800;
  text-decoration: none;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 35, 50, 0.12);
  box-shadow: 0 24px 70px rgba(18, 35, 50, 0.1);
}

.form-header {
  grid-column: 1 / -1;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.form-header span {
  display: block;
  color: var(--spruce-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.form-header strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.05;
}

.request-form label,
.form-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
}

.request-form label span,
.form-field label span {
  color: var(--ink-2);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.request-form .full,
.request-form button,
.form-note {
  grid-column: 1 / -1;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.request-form input[aria-invalid="true"],
.request-form select[aria-invalid="true"],
.request-form textarea[aria-invalid="true"] {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(214, 111, 81, 0.16);
}

.request-form textarea {
  min-height: 132px;
  resize: vertical;
}

.field-error {
  min-height: 1.1rem;
  color: #a84731;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
}

.form-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.form-note.is-success {
  color: var(--spruce-dark);
  font-weight: 800;
}

.form-note.is-error {
  color: #a84731;
  font-weight: 800;
}

.site-footer {
  padding: 42px 0;
  background: #0d1b27;
  color: #d8e7e4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.7fr;
  gap: 36px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin-top: 14px;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.page-hero {
  padding: 96px 0 58px;
  background:
    linear-gradient(135deg, rgba(31, 118, 111, 0.12), transparent 42%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.75rem, 5vw, 4.8rem);
}

.page-lead {
  max-width: 760px;
  margin-top: 22px;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.62;
}

.page-body {
  background: var(--white);
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.46fr);
  gap: 54px;
  align-items: start;
}

.page-content {
  display: grid;
  gap: 30px;
}

.page-content h2 {
  font-size: clamp(2rem, 3.4vw, 3.35rem);
}

.page-content p,
.page-content li {
  color: var(--body);
}

.page-content ul,
.page-panel ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.page-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.page-panel h2 {
  font-size: 2rem;
}

.page-panel p {
  margin-top: 12px;
}

.page-panel .button {
  width: 100%;
  margin-top: 20px;
}

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

.page-link-grid a {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.page-link-grid a:hover {
  border-color: rgba(31, 118, 111, 0.38);
  color: var(--spruce-dark);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal-ready .reveal {
  opacity: 1;
  transform: translateY(16px);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal.delay-1 { transition-delay: 100ms; }
.reveal-ready .reveal.delay-2 { transition-delay: 200ms; }
.reveal-ready .reveal.delay-3 { transition-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 14px;
    font-size: 0.82rem;
  }

  .hero-grid,
  .method-grid,
  .founder-grid,
  .faq-grid,
  .request-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .model-grid,
  .proof-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .sector-card {
    grid-template-columns: 1fr;
  }

  .sector-card img {
    min-height: 230px;
    max-height: 300px;
  }
}

@media (max-width: 820px) {
  .container,
  .nav-wrap {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    padding: 10px 0;
  }

.nav-toggle {
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: var(--radius);
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .section-band {
    padding: 54px 0;
  }

  .hero {
    min-height: calc(100svh - 76px);
    align-items: flex-start;
    padding: 56px 0 0;
  }

  .hero::after {
    inset: auto 0 0;
    width: 100%;
    height: 46%;
    opacity: 1;
    background-position: 58% bottom;
    filter: saturate(1.28) contrast(1.18) brightness(0.9);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(247, 249, 246, 0.99) 0%, rgba(247, 249, 246, 0.98) 48%, rgba(247, 249, 246, 0.18) 58%, rgba(247, 249, 246, 0) 72%);
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    max-width: 8.2em;
    font-size: 2.46rem;
  }

  .hero-lead {
    max-width: 26ch;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-actions {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .hero-actions .button {
    width: 100%;
  }

  .contact-lines {
    display: grid;
  }

  .request-form .button,
  .contact-lines a {
    width: 100%;
  }

  .proof-strip {
    display: none;
  }

  .model-card dl,
  .work-card dl {
    gap: 10px;
    margin: 16px 0 18px;
  }

  .method-callout {
    margin-top: 20px;
  }

  .model-card,
  .proof-card,
  .work-card {
    min-height: auto;
  }

  .model-card p,
  .sector-card p {
    margin-bottom: 14px;
  }

  .sector-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .insights .section-head {
    margin-bottom: 28px;
  }

  .section-head p:not(.eyebrow),
  .method-copy > p:not(.eyebrow),
  .proof-card p,
  .sector-card p,
  .process-board p,
  .work-card dd,
  .founder-copy p:not(.eyebrow),
  .faq-intro p,
  .request-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.5;
  }

  .process-board {
    grid-template-columns: 1fr;
  }

  .process-board article {
    min-height: auto;
  }

  .founder-copy {
    padding: 26px;
  }

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

  .insight-list a {
    display: grid;
  }

  .insight-list strong {
    white-space: normal;
  }

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

  .request-grid {
    gap: 38px;
  }

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

  .page-layout,
  .page-link-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 56px 0 38px;
  }

  .page-panel {
    position: static;
  }
}

@media (max-width: 460px) {
  .container,
  .nav-wrap {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text {
    font-size: 0.78rem;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .model-card,
  .proof-card,
  .work-card,
  .sector-card div,
  .request-form {
    padding: 20px;
  }
}

@media (min-width: 821px) {
  .nav-toggle {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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