:root {
  --ink: #101314;
  --ink-soft: #2a3033;
  --paper: #f6f5f2;
  --paper-warm: #eeece7;
  --white: #ffffff;
  --muted: #5f676b;
  --line: rgba(16, 19, 20, 0.12);
  --line-strong: rgba(16, 19, 20, 0.22);
  --brand: #d82426;
  --brand-deep: #a91b1d;
  --accent: #c45e1a;
  --bronze: #8d7349;
  --bronze-soft: rgba(141, 115, 73, 0.14);
  --shadow: 0 18px 50px rgba(16, 19, 20, 0.1);
  --radius: 2px;
  --header-h: 5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: "Source Sans 3", "Segoe UI", sans-serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  background:
    linear-gradient(180deg, rgba(141, 115, 73, 0.04), transparent 14rem),
    var(--paper);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

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

.container {
  width: min(1100px, calc(100% - 2.75rem));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
}

.site-header-bar {
  position: relative;
  z-index: 110;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(246, 245, 242, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: border-color 240ms var(--ease), background 240ms var(--ease);
}

body.nav-open .site-header-bar {
  background: #0b0e0f;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.nav-open .brand-text strong {
  color: #f6f5f2;
}

body.nav-open .nav-toggle {
  border-color: rgba(255, 255, 255, 0.28);
  background: #ffffff;
}

body.nav-open .nav-toggle span {
  background: var(--ink);
}

.site-header.is-scrolled .site-header-bar {
  border-bottom-color: var(--line);
  background: rgba(246, 245, 242, 0.97);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1 1 auto;
  max-width: min(100%, 20rem);
  z-index: 50;
}

.brand-logo,
img.brand-logo,
svg.brand-logo {
  display: block;
  box-sizing: border-box;
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  min-width: 34px;
  min-height: 34px;
  flex: 0 0 34px !important;
  border: 0;
  border-radius: 2px;
  object-fit: cover;
  background: transparent;
  overflow: hidden;
}

.brand-text {
  display: block;
  min-width: 0;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.brand-text small {
  margin-top: 0.2rem;
  color: var(--bronze);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 60;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 240ms var(--ease), opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 111;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  width: min(1100px, calc(100% - 2.75rem));
  height: var(--header-h);
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.site-nav a {
  pointer-events: auto;
}

.site-nav a {
  position: relative;
  padding: 0.55rem 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--ink);
}

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

.site-nav a:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible,
.text-link:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 1px solid var(--bronze);
  outline-offset: 3px;
}

/* Typography */
.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
blockquote {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
}

h2 {
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  line-height: 1.25;
}

h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.lead,
.page-lead {
  margin-top: 1.1rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  font-weight: 400;
}

.lead-flush {
  margin-top: 0;
}

.stack-gap {
  margin-top: 1rem;
}

.stack-gap-lg {
  margin-top: 1.25rem;
}

.actions-flush {
  margin-top: 0.25rem;
}

.muted {
  color: var(--muted);
}

.max-prose {
  max-width: 38rem;
}

.max-prose-wide {
  max-width: 40rem;
}

/* Buttons */
.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0 1.45rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 200ms var(--ease), background 200ms ease, color 200ms ease,
    border-color 200ms ease, box-shadow 200ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(216, 36, 38, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-deep);
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--ink);
}

.button-on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.button-on-dark:hover,
.button-on-dark:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.4rem;
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap 200ms var(--ease);
}

.text-link::after {
  content: "→";
  transition: transform 200ms var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

/* Home hero */
.hero-home {
  position: relative;
  min-height: min(78vh, 44rem);
  display: flex;
  align-items: flex-end;
  overflow: clip;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  will-change: transform;
  filter: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 12, 13, 0.72) 0%, rgba(10, 12, 13, 0.4) 50%, rgba(10, 12, 13, 0.18) 100%),
    linear-gradient(180deg, rgba(10, 12, 13, 0.08) 0%, rgba(10, 12, 13, 0.55) 100%);
}

.hero-home .container {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 2.75rem));
  padding: 4.25rem 0 3.5rem;
}

.brand-mark {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e8c89a;
}

.hero-home h1 {
  max-width: 16ch;
}

.hero-home .lead {
  color: rgba(246, 245, 242, 0.78);
}

.hero-home .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-home .button-secondary:hover,
.hero-home .button-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* Page heroes */
.page-hero-shell {
  max-width: 40rem;
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.page-hero {
  position: relative;
  overflow: clip;
  padding: 4rem 0 3rem;
  color: var(--white);
  background: var(--ink);
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
  filter: none;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 13, 0.78) 0%, rgba(10, 12, 13, 0.5) 55%, rgba(10, 12, 13, 0.28) 100%),
    linear-gradient(180deg, rgba(10, 12, 13, 0.1) 0%, rgba(10, 12, 13, 0.62) 100%);
}

.page-hero .container,
.page-hero-shell {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: #e8c89a;
}

.page-hero .lead,
.page-hero .page-lead {
  color: rgba(246, 245, 242, 0.76);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-tight {
  padding: 0;
}

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

.section-ink .eyebrow {
  color: #e8c89a;
}

.section-ink .muted,
.section-ink .lead {
  color: rgba(246, 245, 242, 0.72);
}

.section-warm {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 36rem;
  margin-bottom: 2.75rem;
}

.section-heading p:last-child {
  margin-top: 1rem;
  color: var(--muted);
}

.position-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.position-band article {
  padding: 2.5rem 1.8rem;
  border-right: 1px solid var(--line);
}

.position-band article:last-child {
  border-right: 0;
}

.position-band h3 {
  margin-bottom: 0.55rem;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
}

.position-band p {
  color: var(--muted);
  max-width: 28ch;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.75rem;
  align-items: center;
}

.split-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split p + p {
  margin-top: 1rem;
  color: var(--muted);
}

.split .lead + p,
.prose p + p {
  margin-top: 1rem;
}

.prose p {
  color: var(--muted);
  max-width: 40rem;
}

.rule {
  width: 3.25rem;
  height: 1px;
  margin: 1.4rem 0 1.6rem;
  background: linear-gradient(90deg, var(--brand), var(--bronze));
  transform-origin: left center;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.25rem 1.75rem;
}

.reason-grid article {
  padding-top: 1.35rem;
  border-top: 1px solid var(--ink);
}

.reason-grid .index,
.service-block .index,
.process-steps li::before {
  color: var(--brand);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.reason-grid .index {
  display: block;
  margin-bottom: 1rem;
}

.reason-grid h3 {
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
}

.reason-grid p {
  color: var(--muted);
}

/* Services */
.service-stack {
  display: grid;
  gap: 0;
}

.service-block {
  display: grid;
  grid-template-columns: 4.5rem 1.15fr 0.95fr;
  gap: 1.75rem;
  align-items: center;
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--line);
}

.service-block:first-child {
  border-top: 1px solid var(--line);
}

.service-block .index {
  align-self: start;
  padding-top: 0.45rem;
}

.service-block h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.service-block > div > p {
  max-width: 38rem;
  color: var(--muted);
}

.service-block .suitability {
  margin-top: 1rem;
  max-width: 38rem;
  color: var(--muted);
}

.service-block .media-frame {
  min-height: 14rem;
  aspect-ratio: 4 / 3;
}

.service-block .media-frame img {
  min-height: 0;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.5rem;
  margin-top: 1.5rem;
}

.deliverables li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.deliverables li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.35rem;
  height: 1px;
  background: var(--bronze);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.process-steps li {
  position: relative;
  padding-top: 2.6rem;
  border-top: 1px solid var(--line-strong);
  counter-increment: step;
}

.process-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0.85rem;
  left: 0;
}

.process-steps strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
}

.process-steps span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Founder / quote */
.founder-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.75rem;
  align-items: stretch;
}

.theme-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.theme-list li {
  padding-left: 1rem;
  border-left: 1px solid var(--bronze);
}

.theme-list strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
}

.theme-list span {
  color: var(--muted);
  font-size: 0.98rem;
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 1.75rem;
  color: var(--white);
  background:
    linear-gradient(165deg, #171b1d 0%, #101314 100%);
  border: 1px solid rgba(232, 200, 154, 0.18);
}

.ceo-portrait {
  margin: 0 0 1.35rem;
}

.ceo-portrait img {
  width: 100%;
  max-width: 18rem;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  filter: saturate(0.96);
  background: #d5d2cc;
}

.quote-panel .ceo-portrait img {
  max-width: none;
}

.quote-panel blockquote {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.quote-signoff {
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
}

.quote-role {
  display: block;
  margin-top: 0.3rem;
  color: rgba(246, 245, 242, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* CTA */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.75rem 0;
}

.cta-band h2 {
  max-width: 16ch;
}

.button-row.flush {
  margin-top: 0;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px var(--bronze-soft);
  outline: none;
}

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

.form-status[data-state="success"] {
  color: #1f6b3a;
}

.form-status[data-state="error"] {
  color: var(--brand-deep);
}

.contact-aside {
  padding: 2rem;
  background: var(--ink);
  color: var(--white);
  border: 1px solid rgba(232, 200, 154, 0.16);
}

.contact-aside .eyebrow {
  color: #e8c89a;
}

.contact-aside h2 {
  margin-bottom: 0.85rem;
  font-size: 1.45rem;
}

.contact-aside p {
  color: rgba(246, 245, 242, 0.72);
}

.contact-meta {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-meta strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8c89a;
}

.contact-meta a {
  color: var(--white);
  font-weight: 600;
}

.contact-meta a:hover,
.contact-meta a:focus-visible {
  color: #e8c89a;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 48rem;
}

.faq-item {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.faq-item + .faq-item {
  border-top: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--bronze);
  font-family: var(--font-sans);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 0 1.25rem;
  color: var(--muted);
  max-width: 42rem;
}

/* Legal */
.legal-content {
  max-width: 42rem;
}

.legal-content h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.25rem;
}

.legal-content p + p {
  margin-top: 1rem;
}

.legal-content p {
  color: var(--muted);
}

/* Media */
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  isolation: isolate;
  border: 1px solid var(--line);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
  filter: saturate(0.95) contrast(1.02);
}

.media-frame:hover img,
.reveal.is-visible .media-frame img {
  transform: scale(1);
  filter: saturate(1) contrast(1.01);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 12, 13, 0.38) 100%);
  pointer-events: none;
}

.media-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: rgba(246, 245, 242, 0.92);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.85rem;
  min-height: 22rem;
}

.visual-grid .media-frame:first-child,
.visual-grid .media-frame:last-child {
  min-height: 22rem;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.image-strip article {
  display: grid;
  gap: 0.9rem;
}

.image-strip .media-frame {
  aspect-ratio: 4 / 3;
}

.image-strip .media-frame img {
  min-height: 0;
}

.image-strip h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
}

.image-strip p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Footer */
.site-footer {
  padding: 3.5rem 0 2rem;
  color: rgba(246, 245, 242, 0.68);
  background: #0b0e0f;
  border-top: 1px solid rgba(232, 200, 154, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-brand span {
  display: block;
  margin-top: 0.5rem;
  color: #e8c89a;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-blurb {
  margin-top: 1rem;
  max-width: 28rem;
}

.footer-grid h3 {
  margin-bottom: 0.9rem;
  color: #e8c89a;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid ul {
  display: grid;
  gap: 0.55rem;
}

.footer-grid a {
  transition: color 180ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #e8c89a;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.88rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

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

.reveal-stagger > .stagger-child {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: calc(var(--stagger, 0) * 90ms);
}

.reveal-stagger.is-visible > .stagger-child {
  opacity: 1;
  transform: none;
}

.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 850ms var(--ease), opacity 850ms var(--ease);
  transition-delay: calc(var(--i, 0) * 55ms + 80ms);
}

[data-animate="words"].is-visible .word {
  transform: none;
  opacity: 1;
}

.hero-home .brand-mark,
.hero-home .lead,
.hero-home .hero-actions,
.page-hero .eyebrow,
.page-hero .lead {
  opacity: 0;
  transform: translateY(16px);
  animation: rise-in 950ms var(--ease) forwards;
}

.hero-home .brand-mark,
.page-hero .eyebrow {
  animation-delay: 50ms;
}

.hero-home .lead,
.page-hero .lead {
  animation-delay: 300ms;
}

.hero-home .hero-actions {
  animation-delay: 440ms;
}

.reveal.is-visible .rule {
  animation: rule-draw 900ms var(--ease) both;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rule-draw {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

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

  .reveal,
  .reveal-stagger > .stagger-child,
  .hero-home .brand-mark,
  .hero-home .lead,
  .hero-home .hero-actions,
  .page-hero .eyebrow,
  .page-hero .lead,
  .word,
  .media-frame img,
  .hero-media img,
  .page-hero-media img {
    opacity: 1;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .position-band,
  .reason-grid,
  .split,
  .split-reverse,
  .founder-grid,
  .contact-layout,
  .footer-grid,
  .process-steps,
  .visual-grid,
  .image-strip {
    grid-template-columns: 1fr;
  }

  .position-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .position-band article:last-child {
    border-bottom: 0;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .service-block .media-frame {
    order: -1;
    min-height: 12rem;
  }

  .visual-grid .media-frame:first-child,
  .visual-grid .media-frame:last-child {
    min-height: 16rem;
  }

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-home {
    min-height: 88vh;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-header-bar {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(246, 245, 242, 0.98);
  }

  .nav-shell {
    gap: 0.65rem;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 105;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2.5rem;
    background: #0b0e0f;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: none;
    transition: opacity 220ms var(--ease), visibility 220ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 1rem 0.1rem;
    border-bottom: 1px solid rgba(246, 245, 242, 0.12);
    color: rgba(246, 245, 242, 0.9);
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none;
    line-height: 1.25;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a.is-active,
  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: #e8c89a;
  }

  .brand {
    gap: 0.55rem;
    flex: 1 1 auto;
    max-width: calc(100% - 3.75rem);
  }

  .brand-logo,
  img.brand-logo,
  svg.brand-logo {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
    min-width: 30px;
    min-height: 30px;
    flex: 0 0 30px !important;
  }

  .brand-text strong {
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-text small {
    display: none;
  }

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

  .hero-home .container,
  .page-hero {
    padding-top: 3.75rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .quote-panel,
  .contact-aside {
    padding: 1.4rem;
  }

  .ceo-portrait img {
    max-width: 14rem;
  }

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