:root {
  --chalk: #f3f4ef;
  --chalk-deep: #e7e9e1;
  --paper: #fbfbf8;
  --navy: #0f1720;
  --navy-soft: #1a2430;
  --ink: #151c24;
  --muted: #4d564f;
  --vermilion: #c43b24;
  --vermilion-bright: #d94a32;
  --sage: #6f8574;
  --sage-soft: #dfe6df;
  --steel: #5d7388;
  --steel-soft: #d5dde4;
  --line: rgba(15, 23, 32, 0.12);
  --line-strong: rgba(15, 23, 32, 0.2);
  --line-on-dark: rgba(243, 244, 239, 0.16);
  --focus: #c43b24;
  --wide: 1480px;
  --content: 1180px;
  --reading: 660px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --nav-offset: 5.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.012em;
  color: var(--ink);
  background-color: var(--chalk);
  background-image:
    linear-gradient(rgba(15, 23, 32, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 32, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
}

a,
a:hover,
a:focus,
a:focus-visible,
a:active,
a:visited,
button,
button:hover,
button:focus,
button:focus-visible {
  text-decoration: none;
}

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

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

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.025em;
}

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

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

main:focus {
  outline: none;
}

main:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: var(--navy);
  color: var(--paper);
  min-height: 44px;
  padding: 13px 20px;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
}

.skip-link:focus-visible {
  top: 12px;
}

.wrap-wide {
  width: min(var(--wide), calc(100% - 36px));
  margin-inline: auto;
}

.wrap-content {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.wrap-reading {
  max-width: var(--reading);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--steel);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.kicker-on-dark {
  background: transparent;
  border-color: var(--line-on-dark);
  color: #d5ddd6;
}

.section-title,
.brief-cta-zone h2,
.form-success h3,
.brief-direct-zone h3 {
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.1;
}

.hero,
.mosaic,
.method,
.voices,
.brief,
.site-footer,
.legal-page {
  padding: clamp(3rem, 5.5vw, 4.5rem) 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 14px 22px;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  font-weight: 600;
  line-height: 1;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn-primary {
  background: var(--vermilion);
  color: #fff;
}

a.btn-primary {
  color: #fff;
}

.btn-primary:hover {
  background: #a8331f;
}

.btn-arrow {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn-arrow,
.direct-link:hover svg {
  transform: translateX(4px);
}

.text-action {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 13px 4px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.02em;
  background-image: linear-gradient(var(--sage-soft), var(--sage-soft));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0;
  transition: background-size 0.25s var(--ease), color 0.25s var(--ease);
}

.text-action:hover,
.text-action:focus-visible {
  background-size: 100% 100%;
}

.site-nav {
  position: sticky;
  top: 10px;
  z-index: 80;
  margin-bottom: 0.35rem;
}

.nav-shell {
  width: min(var(--wide), calc(100% - 36px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: stretch;
}

.nav-brand,
.nav-panel,
.nav-util {
  display: flex;
  align-items: center;
  min-height: 56px;
  background: rgba(251, 251, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: 10px;
  backdrop-filter: blur(14px);
}

.nav-brand {
  gap: 0.7rem;
  padding: 0.4rem 0.85rem 0.4rem 0.55rem;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 28px;
  height: 28px;
}

.brand-mark span {
  background: var(--navy);
}

.brand-mark span:nth-child(2) {
  background: var(--vermilion-bright);
}

.brand-mark span:nth-child(3) {
  background: var(--sage);
}

.brand-mark span:nth-child(4) {
  background: var(--steel-soft);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand-meta {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.nav-panel {
  justify-content: center;
  gap: 0.2rem;
  padding: 0.3rem;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-btn:hover,
.nav-btn.is-active {
  background: var(--navy);
  color: var(--paper);
}

.nav-util {
  gap: 0.4rem;
  padding: 0.3rem 0.35rem 0.3rem 0.3rem;
}

.nav-cta {
  padding: 13px 18px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--chalk-deep);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.25s var(--ease);
}

.menu-toggle span + span {
  margin-top: 5px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-menu {
  width: min(var(--wide), calc(100% - 36px));
  margin: 8px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-link {
  min-height: 44px;
  padding: 13px 16px;
  text-align: left;
  border-radius: 8px;
  font-weight: 600;
  color: var(--navy);
}

.mobile-link:hover,
.mobile-link.is-active {
  background: var(--chalk-deep);
}

.mobile-cta {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

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

.shape-a {
  width: 180px;
  height: 180px;
  top: 8%;
  right: 8%;
  background: rgba(111, 133, 116, 0.12);
  animation: drift 18s var(--ease) infinite;
}

.shape-b {
  width: 92px;
  height: 92px;
  left: 6%;
  bottom: 18%;
  background: rgba(217, 74, 50, 0.1);
  animation: drift 22s var(--ease) infinite reverse;
}

.shape-c {
  width: 48px;
  height: 48px;
  right: 22%;
  bottom: 28%;
  background: var(--steel-soft);
  animation: drift 16s var(--ease) infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(12px, -10px);
  }
}

.hero-frame {
  display: grid;
  grid-template-columns: 1fr minmax(16rem, 22.5rem);
  grid-template-rows: auto 1fr;
  min-height: min(68vh, 640px);
  column-gap: 2rem;
  row-gap: 1.5rem;
  align-items: center;
}

.hero-eyebrow {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  width: max-content;
  margin-bottom: 0;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--steel);
  font-size: 0.75rem;
  font-weight: 600;
}

.hero-title {
  grid-column: 1 / 2;
  grid-row: 2;
  align-self: center;
  max-width: 14ch;
  font-size: clamp(3.2rem, 6.2vw, 6.8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line span {
  display: block;
}

.hero-title em {
  font-style: normal;
  color: var(--vermilion);
}

.hero-plate {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: end;
  width: min(100%, 22.5rem);
  padding: 1.15rem 1.2rem 1.25rem;
  background: rgba(251, 251, 248, 0.88);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.hero-motion {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  height: 52px;
  margin-bottom: 1rem;
}

.hero-tile {
  display: block;
  height: 100%;
  background: var(--chalk-deep);
  border: 1px solid var(--line);
  transform-origin: center bottom;
  animation: tilePulse 4.8s var(--ease) infinite;
}

.hero-tile:nth-child(1) {
  background: var(--navy);
  animation-delay: 0s;
}

.hero-tile:nth-child(2) {
  background: var(--vermilion-bright);
  animation-delay: 0.4s;
}

.hero-tile:nth-child(3) {
  background: var(--sage);
  animation-delay: 0.8s;
}

.hero-tile:nth-child(4) {
  background: var(--steel-soft);
  animation-delay: 1.2s;
}

.hero-tile:nth-child(5) {
  background: var(--sage-soft);
  animation-delay: 1.6s;
}

.hero-tile:nth-child(6) {
  background: #f6e4df;
  animation-delay: 2s;
}

@keyframes tilePulse {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.55;
  }
  40% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.hero-live-title {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-live {
  min-height: 4.6em;
  margin: 0 0 1.05rem;
}

.hero-meta {
  display: grid;
  gap: 0.85rem;
}

.hero-beats {
  display: flex;
  gap: 6px;
}

.hero-beat {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--chalk-deep);
}

.hero-beat.is-active {
  background: var(--vermilion);
}

.hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.hero-fact {
  margin: 0;
}

.hero-fact strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-fact span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.channel-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: -1.25rem;
  position: relative;
  z-index: 2;
}

.strip-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.65rem 0.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: clamp(0.82rem, 1.3vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.strip-cell:nth-child(2) {
  background: var(--sage-soft);
}

.strip-cell:nth-child(3) {
  background: var(--navy);
  color: var(--paper);
}

.strip-cell:nth-child(4) {
  background: var(--steel-soft);
}

.strip-cell:nth-child(5) {
  background: #f2f0ea;
}

.strip-cell:nth-child(6) {
  background: #f6e4df;
  color: var(--vermilion);
}

.mosaic-intro {
  margin-bottom: 2.25rem;
}

.mosaic-lede {
  margin-top: 1rem;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  padding-top: 0.75rem;
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: 1.45rem 1.4rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.tile::before,
.tile::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--navy);
  border-style: solid;
  pointer-events: none;
}

.tile::before {
  top: -1px;
  left: -1px;
  border-width: 1.5px 0 0 1.5px;
}

.tile::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 1.5px 1.5px 0;
}

.tile-native {
  grid-column: 1 / 6;
  background: #f7ece8;
}

.tile-social {
  grid-column: 6 / 13;
  background: #eef1f4;
}

.tile-display {
  grid-column: 1 / 8;
  background: #e8eee9;
}

.tile-search {
  grid-column: 8 / 13;
}

.tile-bing {
  grid-column: 1 / 5;
  background: #eef1f4;
}

.tile-programmatic {
  grid-column: 5 / 13;
  background: #eef2ef;
}

.tile-lead {
  grid-column: 1 / 7;
  background: #f7ece8;
}

.tile-strategy {
  grid-column: 7 / 13;
  background: #f2f0ea;
}

.tile-note {
  position: absolute;
  top: -10px;
  left: 16px;
  padding: 0 0.45rem;
  background: var(--chalk);
  color: var(--steel);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tile-icon {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  color: var(--navy);
  transition: transform 0.25s var(--ease);
}

.tile:hover .tile-icon {
  transform: translate(3px, -3px);
}

.tile h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.7rem);
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.tile p {
  margin-bottom: 1rem;
}

.tile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}

.tile-tags li {
  padding: 0.22rem 0.5rem;
  border: 1px solid var(--line);
  background: rgba(251, 251, 248, 0.7);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
}

.tile-action {
  margin-top: auto;
  align-self: flex-start;
  min-height: 44px;
  padding: 10px 2px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.02em;
  background-image: linear-gradient(rgba(196, 59, 36, 0.14), rgba(196, 59, 36, 0.14));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 100%;
  transition: background-size 0.25s var(--ease);
}

.tile-action:hover,
.tile-action:focus-visible {
  background-size: 100% 100%;
}

.method {
  background: linear-gradient(180deg, transparent 0%, rgba(223, 230, 223, 0.45) 18%, rgba(223, 230, 223, 0.45) 82%, transparent 100%);
}

.method-intro {
  margin-bottom: 1.75rem;
}

.method-intro .section-title {
  margin-bottom: 1rem;
}

.method-folio {
  display: grid;
  grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
  align-items: stretch;
}

.method-visual {
  margin: 0;
  height: 100%;
}

.method-photo {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 28rem;
  border: 1px solid var(--line);
  background: var(--navy);
}

.method-photo::before,
.method-photo::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 14px;
  height: 14px;
  border-color: var(--paper);
  border-style: solid;
  pointer-events: none;
}

.method-photo::before {
  top: 10px;
  left: 10px;
  border-width: 1.5px 0 0 1.5px;
}

.method-photo::after {
  right: 10px;
  bottom: 10px;
  border-width: 0 1.5px 1.5px 0;
}

.method-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 36%;
}

.method-story {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem 1.4rem 1.2rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.method-story-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.method-story-note {
  display: inline-block;
  margin: 0;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--line);
  background: var(--chalk);
  color: var(--steel);
  font-size: 0.75rem;
  font-weight: 600;
}

.method-story-count {
  margin: 0;
  color: var(--steel);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.method-story h3 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
  margin-bottom: 0.75rem;
  transition: opacity 0.28s var(--ease), transform 0.45s var(--ease);
}

.method-story p#method-story-copy {
  max-width: 46ch;
  margin-bottom: 0;
  transition: opacity 0.28s var(--ease);
}

.method-looks {
  margin-top: 1.2rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--line);
  transition: opacity 0.28s var(--ease);
}

.method-looks-label {
  margin: 0 0 0.65rem;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.method-looks ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-looks li {
  position: relative;
  padding-left: 0.85rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.method-looks li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--vermilion);
}

.method-story.is-swap h3,
.method-story.is-swap p#method-story-copy,
.method-story.is-swap .method-looks {
  opacity: 0;
  transform: translateY(8px);
}

.method-index {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 1.25rem;
}

.method-tick {
  min-height: 52px;
  padding: 0.7rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  text-align: left;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.method-tick:hover {
  background: var(--chalk-deep);
}

.method-tick.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper);
}

.voices-intro {
  margin-bottom: 1.75rem;
}

.voices-board {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.voice-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  position: relative;
  font-style: normal;
  padding: 1.35rem 1.4rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.voice-copy p {
  color: var(--ink);
  margin-bottom: 1rem;
}

.voice-featured .voice-copy {
  padding: 1.6rem 1.7rem 1.4rem;
  background: #fbf7f4;
}

.voice-featured .voice-copy p {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.55;
  max-width: 62ch;
}

.quote-mark {
  position: absolute;
  top: -0.2rem;
  right: 1rem;
  font-size: clamp(4.5rem, 8vw, 7rem);
  line-height: 0.7;
  color: var(--vermilion);
  opacity: 0.14;
  font-weight: 800;
  pointer-events: none;
  will-change: transform;
}

.voices-rest {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.voice-offset {
  margin-top: 1.35rem;
}

.voices-rest .voice-copy {
  background: #eef2ef;
}

.voices-rest .voice:last-child .voice-copy {
  background: #eef1f4;
}

.voice-photo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 1px solid var(--line);
}

.voice-featured .voice-photo {
  width: 64px;
  height: 64px;
}

.quote-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.quote-tags li {
  opacity: 0;
  transform: translateY(6px);
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
}

.voices.is-in .quote-tags li {
  opacity: 1;
  transform: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.voices.is-in .quote-tags li:nth-child(2) {
  transition-delay: 0.12s;
}

.voices.is-in .quote-tags li:nth-child(3) {
  transition-delay: 0.22s;
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.quote-meta span span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.quote-meta strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

@media (hover: hover) and (pointer: fine) {
  .voice:hover .voice-copy {
    background: #fff;
  }
}

.brief-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr 0.9fr;
  gap: 12px;
  align-items: stretch;
}

.brief-zone {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.2rem, 2vw, 1.85rem);
  border: 1px solid var(--line);
  background: var(--paper);
}

.brief-cta-zone {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper);
}

.brief-cta-zone h2 {
  color: var(--paper);
  margin-bottom: 1rem;
}

.brief-cta-zone p {
  color: #c9d0c8;
}

.brief-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--chalk);
  appearance: none;
}

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

.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  background: var(--paper);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--vermilion);
}

.form-status {
  min-height: 1.2em;
  color: var(--vermilion);
  font-size: 0.88rem;
}

.btn-submit {
  margin-top: auto;
  align-self: flex-start;
}

.form-success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 0.75rem;
}

.form-success[hidden] {
  display: none;
}

.form-success h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.brief-direct-zone {
  background: #eef2ef;
}

.brief-direct-zone h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.direct-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-style: normal;
  margin-bottom: 1.4rem;
}

.direct-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.45rem 0.55rem;
  color: var(--navy);
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s var(--ease);
}

.direct-link svg {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.direct-link:hover,
.direct-link:focus-visible {
  background: rgba(251, 251, 248, 0.8);
}

.selector-title {
  margin-top: auto;
}

.need-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.need-chip {
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.need-chip:hover,
.need-chip.is-on {
  background: var(--navy);
  color: var(--paper);
}

.site-footer {
  background:
    linear-gradient(rgba(243, 244, 239, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 244, 239, 0.045) 1px, transparent 1px),
    var(--navy);
  background-size: 48px 48px, 48px 48px, auto;
  color: var(--paper);
  padding: 1.15rem 0;
}

.footer-frame {
  display: flex;
  flex-direction: column;
}

.footer-band a,
.footer-band button {
  color: var(--paper);
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.2rem 0.4rem;
  margin-left: -0.4rem;
  border-radius: 8px;
  transition: background 0.2s var(--ease);
}

.footer-band a:hover,
.footer-band button:hover {
  background: rgba(243, 244, 239, 0.1);
}

.footer-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

.footer-band p {
  margin-left: auto;
  color: #b7c0b9;
  font-size: 0.92rem;
}

.legal-page .legal-card {
  width: min(var(--reading), calc(100% - 48px));
  margin-inline: auto;
  padding: 1.5rem 0;
}

.legal-page h1 {
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.legal-page h2 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.2;
  margin: 1.5rem 0 0.6rem;
}

.legal-page p + p {
  margin-top: 0.85rem;
}

.legal-nav {
  width: min(var(--wide), calc(100% - 36px));
  margin: 12px auto 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.js .hero-title .hero-line span {
  transform: translateY(110%);
  transition: transform 0.9s var(--ease);
}

.js.is-ready .hero-title .hero-line span {
  transform: none;
}

.js.is-ready .hero-title .hero-line:nth-child(2) span {
  transition-delay: 0.12s;
}

.js .voice-featured {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .voices-rest .voice {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .voices.is-in .voice-featured,
.js .voices.is-in .voices-rest .voice {
  opacity: 1;
  transform: none;
}

.js .voices.is-in .voices-rest .voice:nth-child(2) {
  transition-delay: 0.12s;
}

.js .voices.is-in .voices-rest .voice:nth-child(3) {
  transition-delay: 0.22s;
}

.no-js .reveal,
.no-js .voice-featured,
.no-js .voices-rest .voice,
.no-js .quote-tags li {
  opacity: 1;
  transform: none;
}

.no-js .method-story.is-swap h3,
.no-js .method-story.is-swap p {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-shape {
    animation: none;
  }

  .js .reveal,
  .js .hero-title .hero-line span,
  .js .voice-featured,
  .js .voices-rest .voice,
  .js .quote-tags li,
  .tile-icon,
  .btn-arrow,
  .method-photo img,
  .hero-tile {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  .hero-frame {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-title {
    grid-column: 1;
    grid-row: auto;
    max-width: 12ch;
  }

  .hero-plate {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    width: min(100%, 34rem);
  }

  .voices-rest {
    grid-template-columns: 1fr 1fr;
  }

  .voice-offset {
    margin-top: 0;
  }

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

  .brief-cta-zone {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .channel-strip {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.25rem;
  }

  .mosaic-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .tile-native,
  .tile-display,
  .tile-bing,
  .tile-lead {
    grid-column: 1 / 4;
  }

  .tile-social,
  .tile-search,
  .tile-programmatic,
  .tile-strategy {
    grid-column: 4 / 7;
  }

  .method-folio {
    grid-template-columns: 1fr;
  }

  .method-photo {
    min-height: 18rem;
    max-width: none;
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .method-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-panel,
  .nav-cta {
    display: none;
  }

  .legal-nav .nav-panel {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-title {
    font-size: clamp(2.7rem, 12vw, 3.6rem);
  }

  .channel-strip {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic-grid {
    display: flex;
    flex-direction: column;
  }

  .tile-native { order: 1; }
  .tile-social { order: 2; }
  .tile-display { order: 3; }
  .tile-search { order: 4; }
  .tile-bing { order: 5; }
  .tile-programmatic { order: 6; }
  .tile-lead { order: 7; }
  .tile-strategy { order: 8; }

  .method-index {
    grid-template-columns: 1fr 1fr;
  }

  .method-looks ul {
    grid-template-columns: 1fr;
  }

  .voices-rest,
  .brief-grid {
    grid-template-columns: 1fr;
  }

  .footer-band p {
    margin-left: 0;
    width: 100%;
  }

  .footer-band a,
  .footer-band button {
    width: auto;
  }
}

@media (max-width: 520px) {
  .wrap-content {
    width: min(var(--content), calc(100% - 32px));
  }

  .hero-plate,
  .tile,
  .brief-zone,
  .voice-copy {
    padding-left: 1.05rem;
    padding-right: 1.05rem;
  }
}
