:root {
  --paper-bg: #dcccb6;
  --panel-bg: #f2efe9;
  --text: #1a1814;
  --muted: #736d62;
  --line: #2b2824;
  --soft-line: rgba(26, 24, 20, 0.16);
  --pill-bg: #e6e2d8;
  --ink-block: #1a1814;
  --accent: #d03c29;
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --shadow: 0 32px 84px rgba(26, 24, 20, 0.08), 0 8px 32px rgba(26, 24, 20, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper-bg);
  color: var(--text);
  font-family: var(--body);
  letter-spacing: -0.02em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: hard-light;
  z-index: 9999;
}

body.menu-open {
  overflow: hidden;
}

.menu-button {
  position: fixed;
  top: 34px;
  right: 42px;
  z-index: 20;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 999px;
  background: #141414;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.menu-button span,
.menu-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 220ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.page-frame {
  width: min(1140px, calc(100% - 64px));
  margin: 72px auto;
  background: var(--panel-bg);
  box-shadow: var(--shadow);
  padding: 24px 42px 36px;
  position: relative;
}

.masthead {
  min-height: 56px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 84px;
  margin-bottom: 10px;
}

.brand-lockup {
  font-family: var(--body);
  font-weight: 800;
  font-size: 1.38rem;
  line-height: 1;
  letter-spacing: -0.05em;
  display: inline-flex;
  align-items: baseline;
}

.micro-tag,
.section-token,
.micro-heading,
.signal-kicker,
.response-kicker,
.approach-index,
.form-footnote {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
}

.micro-tag {
  color: var(--muted);
  text-align: right;
  max-width: 420px;
  justify-self: end;
  margin-left: auto;
}

.rule-divider {
  height: 24px;
  margin-bottom: 28px;
}

.rule-bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 100%;
}

.rule-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--line);
}

.rule-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--line);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: start;
}

.hero-title-block {
  grid-column: 1 / -1;
}

.section-token {
  margin-bottom: 8px;
  color: var(--muted);
}

.hero-title,
.section-display {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(4.6rem, 11vw, 8.8rem);
  line-height: 0.96;
}

.hero-title span {
  display: block;
}

.hero-title span:nth-child(2) {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.hero-intro-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: start;
}

.hero-side-note,
.hero-copy-block,
.hero-signal-module {
  padding-top: 8px;
}

.hero-side-note {
  padding-top: 18px;
}

.hero-copy-block {
  padding-top: 8px;
}

.micro-heading {
  margin: 0 0 10px;
  color: var(--text);
  font-weight: 700;
}

.micro-copy,
.hero-caption,
.work-meta p,
.approach-copy p,
.approach-body p,
.ask-intro p,
.footer-note,
.signal-meta time,
.form-footnote {
  color: var(--muted);
}

.hero-deck {
  font-family: var(--body);
  font-size: clamp(1.18rem, 1.72vw, 1.42rem);
  line-height: 1.3;
  max-width: 520px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero-caption {
  margin-top: 18px;
  max-width: 560px;
  line-height: 1.82;
  font-size: 1.02rem;
  font-weight: 500;
}

.hero-actions {
  margin-top: 22px;
}

.ghost-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--soft-line);
  background: var(--pill-bg);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 180ms ease, background-color 180ms ease;
}

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

.primary-chip {
  background: #141414;
  color: #fff;
  border-color: #141414;
}

.hero-signal-module {
  align-self: start;
  margin-top: 18px;
  border: 2px solid var(--line);
  padding: 24px 24px 18px;
  display: grid;
  align-content: start;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 38px,
      rgba(0, 0, 0, 0.035) 38px,
      rgba(0, 0, 0, 0.035) 39px
    );
}

.signal-head h2 {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.signal-list li + li {
  border-top: 1px solid var(--soft-line);
}

.signal-list a {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease;
}

.signal-list a:hover,
.signal-list a:focus-visible {
  transform: translateX(4px);
}

.signal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.74rem;
  letter-spacing: -0.01em;
}

.signal-title-text {
  font-size: 0.96rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.section-block {
  padding-top: 8px;
}

.section-header {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
}

.section-display {
  font-size: clamp(4.5rem, 10vw, 8.4rem);
  line-height: 0.85;
}

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

.work-card {
  display: grid;
  gap: 18px;
}

.work-visual {
  aspect-ratio: 16 / 6.5;
  min-height: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  position: relative;
}

.light-surface .work-visual {
  background:
    radial-gradient(circle at 20% 18%, rgba(0, 0, 0, 0.06), transparent 26%),
    linear-gradient(180deg, #dddddd 0%, #d1d1d1 100%);
}

.dark-surface .work-visual,
.editorial-surface .work-visual {
  background: #111111;
}

.work-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.work-headline-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.work-headline-row h3,
.approach-body h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.work-headline-row span {
  color: var(--muted);
  font-size: 0.8rem;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}

.work-tags span {
  padding: 7px 11px;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.approach-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 46px;
}

.approach-copy h2 {
  margin: 10px 0 18px;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 6.2rem);
  line-height: 0.9;
  text-transform: uppercase;
  max-width: 360px;
  letter-spacing: -0.04em;
}

.approach-copy p {
  max-width: 360px;
  line-height: 1.84;
  font-size: 1.01rem;
  font-weight: 500;
}

.approach-copy .ghost-chip {
  margin-top: 18px;
}

.approach-list {
  display: grid;
}

.approach-item {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 72px;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--soft-line);
}

.approach-item:last-child {
  border-bottom: 1px solid var(--soft-line);
}

.approach-toggle {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: none;
  background: #141414;
  cursor: pointer;
  position: relative;
  justify-self: end;
}

.approach-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.approach-toggle span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.approach-toggle[aria-expanded="true"] span:last-child {
  transform: translate(-50%, -50%) rotate(0deg);
}

.approach-detail {
  grid-column: 2 / 4;
  display: none;
  color: var(--muted);
  line-height: 1.82;
  font-size: 1.01rem;
  font-weight: 500;
  margin-top: -4px;
}

.approach-detail.open {
  display: block;
}

.compact-header .section-display {
  font-size: clamp(4rem, 8vw, 6.8rem);
}

.ask-editorial-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 26px;
  align-items: start;
}

.ask-mock-form {
  display: grid;
  gap: 12px;
}

.ask-mock-form label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}

.ask-mock-form textarea {
  width: 100%;
  min-height: 190px;
  resize: vertical;
  border: none;
  background: repeating-linear-gradient(
    transparent,
    transparent 31px,
    var(--soft-line) 31px,
    var(--soft-line) 32px
  );
  line-height: 32px;
  padding: 0;
  font: inherit;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--text);
  margin-top: 10px;
}

.ask-mock-form textarea:focus,
.ghost-chip:focus,
.menu-button:focus,
.menu-close:focus,
.signal-list a:focus {
  outline: 2px solid rgba(201, 89, 42, 0.35);
  outline-offset: 2px;
}

.ask-mock-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ask-mock-response {
  min-height: 240px;
  border-left: 1px solid var(--soft-line);
  padding-left: 24px;
}

.response-kicker {
  margin: 0 0 12px;
  color: var(--muted);
}

.ask-mock-response p:last-child {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.86;
  font-weight: 500;
}

.page-footer {
  padding-top: 28px;
}

.footer-rule {
  position: relative;
  height: 18px;
  margin-bottom: 22px;
}

.footer-rule::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  border-top: 2px solid var(--line);
}

.footer-rule::after,
.footer-rule::before {
  box-sizing: border-box;
}

.footer-rule::after {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--line);
  box-shadow: calc(100% + 1086px) 0 0 0 var(--line);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 18px;
  align-items: baseline;
}

.footer-name,
.footer-columns a {
  font-weight: 700;
}

.footer-name,
.footer-note,
.footer-columns a {
  margin: 0;
}

.footer-columns a {
  color: var(--text);
  text-decoration: none;
  align-self: baseline;
}

.micro-copy,
.hero-caption,
.work-meta p,
.approach-copy p,
.approach-body p,
.ask-intro p,
.footer-note,
.signal-meta time,
.form-footnote,
.approach-detail {
  font-family: var(--body);
  font-variation-settings: "wght" 520;
}

.micro-copy,
.work-meta p,
.approach-body p,
.ask-intro p,
.footer-note {
  font-size: 1rem;
  line-height: 1.76;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.98);
  color: #f5f5f0;
  z-index: 25;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-shell {
  width: min(1140px, calc(100% - 64px));
  margin: 28px auto;
  min-height: calc(100vh - 56px);
  display: grid;
  align-content: start;
}

.menu-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-brand {
  margin: 0;
  font-weight: 700;
  font-size: 2rem;
  line-height: 0.92;
}

.menu-close {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  cursor: pointer;
  position: relative;
}

.menu-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-nav {
  display: grid;
  gap: 0;
  margin-top: 38px;
}

.menu-nav a {
  display: block;
  padding: 18px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.16);
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.8vw, 5.9rem);
  text-transform: uppercase;
  text-decoration: none;
  color: #f5f5f0;
  line-height: 1.0;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1), padding-left 250ms ease;
}

.menu-overlay.open .menu-nav a {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay.open .menu-nav a:nth-child(1) { transition-delay: 150ms; }
.menu-overlay.open .menu-nav a:nth-child(2) { transition-delay: 200ms; }
.menu-overlay.open .menu-nav a:nth-child(3) { transition-delay: 250ms; }
.menu-overlay.open .menu-nav a:nth-child(4) { transition-delay: 300ms; }
.menu-overlay.open .menu-nav a:nth-child(5) { transition-delay: 350ms; }

.menu-nav a:last-child {
  border-bottom: 2px solid rgba(255, 255, 255, 0.16);
}

.menu-nav a:hover,
.menu-nav a:focus-visible {
  color: var(--accent);
  padding-left: 18px;
}

.mock-landing.ready .page-frame {
  animation: page-rise 560ms ease both;
}

.mock-landing.ready .hero-title span,
.mock-landing.ready .section-display {
  animation: title-rise 700ms ease both;
}

.mock-landing.ready .hero-title span:nth-child(2) {
  animation-delay: 60ms;
}

.mock-landing.ready .hero-title span:nth-child(3) {
  animation-delay: 120ms;
}

.mock-landing.ready .hero-title span:nth-child(4) {
  animation-delay: 180ms;
}

@keyframes page-rise {
  from {
    transform: translateY(24px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes title-rise {
  from {
    transform: translateY(32px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero-section,
  .approach-block,
  .ask-editorial-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-signal-module {
    order: 3;
  }

  .ask-mock-response {
    border-left: none;
    border-top: 1px solid var(--soft-line);
    padding-left: 0;
    padding-top: 18px;
  }
}

@media (max-width: 760px) {
  .page-frame {
    width: min(100% - 28px, 1140px);
    margin: 28px auto 40px;
    padding: 18px 18px 24px;
  }

  .menu-button {
    top: 18px;
    right: 20px;
  }

  .masthead {
    padding-right: 76px;
  }

  .hero-title {
    font-size: clamp(3.4rem, 18vw, 5.6rem);
  }

  .section-display {
    font-size: clamp(3.6rem, 18vw, 6.4rem);
  }

  .work-headline-row,
  .footer-columns,
  .ask-mock-actions {
    grid-template-columns: 1fr;
    display: grid;
    align-items: start;
  }

  .approach-item {
    grid-template-columns: 1fr;
  }

  .approach-toggle {
    justify-self: start;
  }

  .approach-detail {
    grid-column: 1;
  }

  .menu-shell {
    width: min(100% - 28px, 1140px);
    margin: 22px auto;
  }
}
