:root {
  --color-bg: #0b0b0b;
  --color-surface: #111111;
  --color-surface-soft: #171717;
  --color-surface-muted: #202020;
  --color-card: rgba(18, 18, 18, 0.88);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-strong: rgba(252, 115, 6, 0.24);
  --color-primary: #fc7306;
  --color-primary-strong: #ff8d32;
  --color-ink: #f5f1e9;
  --color-muted: rgba(245, 241, 233, 0.72);
  --color-muted-soft: rgba(245, 241, 233, 0.54);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.32);
  --shadow-card: 0 32px 80px rgba(0, 0, 0, 0.42);
  --radius-large: 34px;
  --radius-medium: 24px;
  --radius-small: 18px;
  --container: min(1240px, calc(100% - 32px));
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Manrope", sans-serif;
  --type-nav: 0.88rem;
  --type-overline: 0.72rem;
  --type-body-lg: 0.98rem;
  --type-body-sm: 0.84rem;
  --type-display-hero: clamp(3.9rem, 9vw, 6.8rem);
  --type-display-section: clamp(2.7rem, 5.8vw, 4.5rem);
  --type-display-card: clamp(1.7rem, 2.4vw, 2.3rem);
  --type-display-feature: 2.4rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--color-ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(252, 115, 6, 0.13), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(252, 115, 6, 0.1), transparent 24%),
    linear-gradient(180deg, #090909 0%, #0f0f0f 36%, #080808 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.018)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 36px,
      rgba(255, 255, 255, 0.012) 36px,
      rgba(255, 255, 255, 0.012) 37px
    );
  opacity: 0.7;
}

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

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

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

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

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 120px auto auto -12vw;
  width: 28vw;
  min-width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 115, 6, 0.14), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(252, 115, 6, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(33, 14, 0, 0.08);
  backdrop-filter: blur(16px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner {
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: clamp(91px, 11.3vw, 138px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: var(--type-nav);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a:not(.button) {
  color: rgba(39, 26, 14, 0.76);
  transition: color 0.24s ease;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-primary-strong);
}

.nav-toggle {
  display: none;
  border: 0;
  padding: 0;
  color: #2d2016;
  background: transparent;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

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

.button-primary {
  color: #151515;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
  box-shadow: 0 16px 32px rgba(252, 115, 6, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 36px rgba(252, 115, 6, 0.3);
}

.button-secondary {
  color: var(--color-ink);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

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

.button-nav {
  min-height: 48px;
  padding-inline: 18px;
}

.site-header .button-secondary {
  color: var(--color-primary);
  border-color: rgba(252, 115, 6, 0.36);
  background: transparent;
  box-shadow: none;
}

.site-header .button-secondary:hover,
.site-header .button-secondary:focus-visible {
  color: #c45800;
  border-color: rgba(252, 115, 6, 0.52);
  background: rgba(252, 115, 6, 0.06);
}

.button-login {
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  color: #2d2016;
  border-color: rgba(39, 26, 14, 0.14);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.button-login:hover,
.button-login:focus-visible {
  color: var(--color-primary);
  border-color: rgba(252, 115, 6, 0.28);
  background: rgba(255, 248, 241, 0.98);
}

.button-login svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow,
.card-label {
  display: inline-block;
  margin: 0;
  color: var(--color-primary-strong);
  font-size: var(--type-overline);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 54px 0 64px;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 240, 226, 0.24), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(140deg, rgba(252, 115, 6, 0.98) 0%, rgba(248, 113, 6, 0.95) 56%, rgba(226, 98, 4, 0.92) 100%);
}

.hero-grid,
.story-grid,
.contact-shell {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1fr;
  justify-items: center;
}

.story-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.contact-shell {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.hero .eyebrow {
  color: rgba(255, 248, 240, 0.82);
}

.hero-kicker {
  margin: 20px 0 0;
  color: rgba(255, 248, 240, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.story-panel h2,
.method-copy h2,
.contact-copy h2,
.portrait-note h3,
.offer-card h3,
.work-copy h3,
.contact-card h3,
.timeline-step h3 {
  margin: 0;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.hero-copy h1 {
  margin-top: 18px;
  max-width: none;
  color: #fffaf3;
  font-size: var(--type-display-hero);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: none;
  text-shadow: 0 14px 34px rgba(92, 34, 0, 0.16);
  text-wrap: nowrap;
}

.hero-copy h1 span {
  display: block;
}

.hero-service-grid {
  width: min(100%, 1080px);
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hero-service-card {
  position: relative;
  min-height: 150px;
  padding: 20px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 248, 240, 0.44);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03) 55%);
  box-shadow:
    0 14px 28px rgba(75, 26, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
  color: #fff9f1;
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.hero-service-card::before {
  content: "";
  position: absolute;
  inset: auto -24% -62% auto;
  width: 64%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
  pointer-events: none;
}

.hero-service-card:hover,
.hero-service-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(255, 248, 240, 0.62);
  box-shadow:
    0 20px 34px rgba(66, 22, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.hero-service-card strong {
  margin: 0;
  max-width: 18ch;
  color: #fff9f1;
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.25vw, 1.3rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: none;
  text-wrap: balance;
}

.hero-service-card strong span {
  display: block;
}

.hero-service-card-landing strong span:last-child {
  white-space: nowrap;
}

.hero-highlight {
  width: min(100%, 920px);
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05) 42%),
    rgba(118, 47, 0, 0.32);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 12px 28px;
  align-items: center;
  text-align: left;
}

.hero-highlight .card-label {
  grid-column: 1;
  color: rgba(255, 245, 233, 0.76);
}

.hero-highlight strong {
  grid-column: 1;
  display: block;
  color: #fffaf3;
  font-size: 1.18rem;
  line-height: 1.25;
  text-wrap: balance;
}

.hero-highlight span {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: block;
  color: rgba(255, 248, 240, 0.82);
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-lead,
.section-heading p,
.story-panel p,
.method-copy p,
.contact-copy p,
.offer-card p,
.work-copy p,
.contact-card p,
.timeline-step p,
.portrait-note p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.hero-lead {
  margin-top: 24px;
  max-width: 68ch;
  color: rgba(255, 248, 240, 0.88);
  font-size: var(--type-body-lg);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions .button-primary {
  color: #a34700;
  background: linear-gradient(135deg, #fffaf4 0%, #ffe9d8 100%);
  box-shadow: 0 18px 30px rgba(119, 46, 0, 0.16);
}

.hero-actions .button-primary:hover,
.hero-actions .button-primary:focus-visible {
  box-shadow: 0 22px 36px rgba(119, 46, 0, 0.2);
}

.hero-actions .button-secondary {
  color: #fffaf3;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions .button-secondary:hover,
.hero-actions .button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.14);
}

.hero-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-ribbon {
  margin-top: 30px;
  justify-content: center;
}

.hero-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-muted);
  font-size: var(--type-body-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-ribbon span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 248, 240, 0.88);
}

.client-access-hero {
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
}

.client-access-shell {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.client-access-copy {
  display: grid;
  align-content: center;
}

.client-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  margin-top: 28px;
}

.client-search-input {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(255, 248, 240, 0.22);
  border-radius: 999px;
  color: #fffaf3;
  background: rgba(92, 34, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  outline: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.client-search-input::placeholder {
  color: rgba(255, 248, 240, 0.7);
}

.client-search-input:focus {
  border-color: rgba(255, 248, 240, 0.5);
  box-shadow:
    0 0 0 4px rgba(255, 244, 234, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  background: rgba(92, 34, 0, 0.28);
}

.client-search-feedback {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: rgba(255, 248, 240, 0.88);
  line-height: 1.6;
}

.client-search-results {
  width: min(760px, 100%);
  margin-top: 8px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.client-result-card,
.client-result-empty {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.03);
}

.client-result-card {
  display: grid;
  gap: 14px;
}

.client-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.client-result-card h3,
.client-result-empty strong {
  margin: 0;
  color: #fff9f1;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.client-result-card p,
.client-result-empty p {
  margin: 0;
  color: rgba(255, 248, 240, 0.78);
  line-height: 1.7;
}

.client-result-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff8f0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
}

.client-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-result-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 248, 240, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
}

.client-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stage {
  position: relative;
  width: min(100%, 1080px);
}

.stage-frame {
  position: relative;
  min-height: clamp(460px, 52vw, 640px);
  padding: clamp(20px, 4vw, 34px);
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(150deg, rgba(252, 115, 6, 0.18) 0%, rgba(252, 115, 6, 0.04) 28%, rgba(255, 255, 255, 0.02) 100%),
    rgba(15, 15, 15, 0.94);
  box-shadow: var(--shadow-card);
}

.stage-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: calc(var(--radius-large) - 10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.stage-frame::after {
  content: "";
  position: absolute;
  inset: auto 8% 8% auto;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 115, 6, 0.2), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.frame-screen {
  position: relative;
  margin: 0 auto;
  width: min(100%, 760px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.frame-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%);
  pointer-events: none;
}

.frame-screen img {
  display: block;
  width: 100%;
  min-height: 100%;
  transform: scale(1.1);
  transform-origin: center top;
}

.floating-card {
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 12, 12, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.stage-metrics {
  position: absolute;
}

.stage-metrics {
  inset: auto 28px 28px auto;
  min-width: min(280px, calc(100% - 56px));
  padding: 18px;
  display: grid;
  gap: 10px;
}

.stage-metrics div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.stage-metrics strong,
.offer-number,
.timeline-number {
  color: var(--color-primary-strong);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
}

.stage-metrics strong {
  font-size: 1.72rem;
}

.stage-metrics span {
  color: var(--color-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.audience-strip {
  padding: clamp(40px, 6vw, 72px) 0 0;
}

.audience-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(252, 115, 6, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(14, 14, 14, 0.94);
  box-shadow: var(--shadow-soft);
}

.audience-lead {
  display: grid;
  gap: 14px;
  align-content: start;
}

.audience-lead h2 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.audience-lead p {
  margin: 0;
  max-width: 42ch;
  color: var(--color-muted);
}

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

.audience-card {
  position: relative;
  min-height: 150px;
  padding: 22px 22px 20px;
  display: grid;
  gap: 12px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
  counter-increment: audience;
}

.audience-card::before {
  content: counter(audience, decimal-leading-zero);
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(252, 115, 6, 0.72);
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.08em;
}

.audience-card:hover,
.audience-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(252, 115, 6, 0.22);
  background-color: rgba(255, 255, 255, 0.04);
}

.audience-card strong {
  display: block;
  max-width: calc(100% - 54px);
  color: rgba(255, 248, 240, 0.96);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.audience-card span {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.audience-card:last-child {
  grid-column: span 2;
}

.story-panel,
.method-shell,
.contact-card {
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(14, 14, 14, 0.94);
  box-shadow: var(--shadow-soft);
}

.story-panel {
  padding: clamp(28px, 4vw, 42px);
}

.story-panel h2,
.method-copy h2,
.contact-copy h2,
.section-heading h2 {
  margin-top: 18px;
  font-size: var(--type-display-section);
}

.story-panel p + p,
.method-copy p,
.contact-copy p {
  margin-top: 18px;
}

.story-stats {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.story-stats div,
.offer-card,
.work-card,
.timeline-step {
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.story-stats div {
  padding: 20px 22px;
}

.story-stats strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-stats span {
  display: block;
  margin-top: 10px;
  color: var(--color-muted);
  line-height: 1.7;
}

.portrait-card {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 17, 17, 0.95);
  box-shadow: var(--shadow-card);
}

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

.portrait-note {
  position: absolute;
  inset: auto 20px 20px;
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(12px);
}

.portrait-note h3 {
  margin-top: 12px;
  font-size: var(--type-display-feature);
}

.portrait-note p:last-child {
  margin-top: 10px;
}

.section-heading {
  display: grid;
  gap: 20px;
  max-width: 980px;
}

.split-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  align-items: end;
}

.split-heading p {
  padding-bottom: 14px;
}

.offer-grid,
.work-grid {
  display: grid;
  gap: 22px;
  margin-top: 40px;
}

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

.offer-card {
  padding: 28px;
}

.offer-card[id] {
  scroll-margin-top: 128px;
}

.offer-card-featured {
  background:
    linear-gradient(145deg, rgba(252, 115, 6, 0.18), rgba(252, 115, 6, 0.05) 38%, rgba(255, 255, 255, 0.025)),
    rgba(18, 18, 18, 0.94);
  border-color: var(--color-border-strong);
}

.offer-number {
  display: inline-block;
  font-size: 1.9rem;
}

.offer-card h3,
.work-copy h3,
.contact-card h3,
.timeline-step h3 {
  margin-top: 14px;
  font-size: var(--type-display-card);
}

.offer-card p,
.work-copy p,
.contact-card p,
.timeline-step p {
  margin-top: 12px;
}

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

.work-card {
  overflow: hidden;
}

.work-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(0, 0.95fr);
}

.work-card-landing {
  grid-template-columns: minmax(360px, 1.14fr) minmax(0, 0.86fr);
}

.work-card-reverse img {
  order: 2;
}

.work-card-reverse .work-copy {
  order: 1;
}

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

.work-card-landing img {
  min-height: 300px;
}

.work-copy {
  padding: 24px 26px 28px;
}

.work-label {
  display: inline-block;
  color: var(--color-primary-strong);
  font-size: var(--type-overline);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-shell {
  padding: clamp(28px, 4vw, 42px);
  display: grid;
  gap: 32px;
}

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

.timeline-step {
  padding: 24px 22px;
}

.timeline-number {
  display: inline-block;
  font-size: 1.8rem;
}

.contact-copy {
  max-width: 620px;
}

.contact-card {
  padding: clamp(28px, 4vw, 40px);
}

.check-list {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--color-ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(252, 115, 6, 0.14);
}

.site-footer {
  padding: 20px 0 38px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--color-muted-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .story-grid,
  .contact-shell,
  .audience-shell,
  .client-access-shell,
  .split-heading,
  .work-card-wide {
    grid-template-columns: 1fr;
  }

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

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

  .stage-frame {
    min-height: 600px;
  }

  .portrait-card img {
    min-height: 520px;
  }

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

  .work-card-reverse img,
  .work-card-reverse .work-copy {
    order: initial;
  }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    inset: calc(100% + 10px) 16px auto;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(252, 115, 6, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 48px rgba(33, 14, 0, 0.14);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .button-nav {
    width: 100%;
  }

  .offer-grid,
  .work-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .work-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --type-display-hero: clamp(2.6rem, 17vw, 3.9rem);
    --type-display-section: clamp(2.4rem, 15vw, 3.6rem);
    --type-display-card: clamp(1.5rem, 8vw, 2rem);
    --type-display-feature: 2rem;
  }

  .section {
    padding: 84px 0;
  }

  .header-inner {
    min-height: 78px;
  }

  .hero {
    padding-top: 34px;
  }

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

  .client-result-head,
  .client-result-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-result-actions .button {
    width: 100%;
  }

  .story-panel h2,
  .method-copy h2,
  .contact-copy h2,
  .section-heading h2 {
    max-width: none;
    line-height: 0.96;
  }

  .hero-copy h1 {
    max-width: none;
    text-wrap: wrap;
    line-height: 1.02;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-service-card {
    min-height: 128px;
    padding: 16px;
  }

  .hero-service-card strong {
    max-width: none;
    font-size: clamp(1.02rem, 4.8vw, 1.22rem);
  }

  .audience-lead h2 {
    max-width: none;
  }

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

  .audience-card:last-child {
    grid-column: auto;
  }

  .button {
    width: 100%;
  }

  .stage-frame {
    min-height: 440px;
    padding: 18px;
  }

  .hero-highlight {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 10px;
  }

  .hero-highlight .card-label,
  .hero-highlight strong,
  .hero-highlight span {
    grid-column: auto;
    grid-row: auto;
  }

  .frame-screen {
    width: 100%;
  }

  .frame-screen img {
    transform: none;
  }

  .stage-metrics,
  .story-panel,
  .method-shell,
  .contact-card,
  .offer-card,
  .timeline-step,
  .work-copy {
    padding: 22px;
  }

  .stage-metrics {
    inset: auto 18px 18px;
    min-width: auto;
  }

  .portrait-card img {
    min-height: 420px;
  }

  .portrait-note {
    inset: auto 14px 14px;
    padding: 18px 20px;
  }

  .portrait-note h3 {
    font-size: var(--type-display-feature);
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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