:root {
  --red: #ED1F24;
  --black: #000000;
  --gray: #606261;
  --light: #E6E4E4;
  --white: #FFFFFF;
  --surface: #F7F5F4;
  --max: 1240px;
  --radius: 6px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --font: 'Inter', Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
.button {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(237, 31, 36, 0.05), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f8f6f5 100%);
}

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

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 56px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.section-intro {
  max-width: 680px;
  margin-bottom: 32px;
}

.section-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.section-intro p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--gray);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(230, 228, 228, 0.9);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.brand-mark {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Times New Roman", Georgia, serif;
  font-weight: 900;
  font-style: normal;
  font-size: 1.84rem;
  line-height: 1;
  text-align: center;
}

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

.brand-wordmark .brand-info {
  color: var(--red);
}

.brand-wordmark .brand-click {
  color: var(--black);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

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

.button-primary:hover {
  background: #c9181d;
  border-color: #c9181d;
}

.button-secondary {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.16);
  color: var(--black);
}

.button-secondary:hover {
  border-color: var(--black);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  background: transparent;
  color: var(--black);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  padding: 44px 0 0;
}

.hero-grid {
  min-height: calc(100svh - 78px - 44px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.hero-copy {
  padding: 64px 40px 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1,
.page-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero-copy p {
  max-width: 560px;
  margin: 0 0 26px;
  font-size: 1.04rem;
  color: var(--gray);
}

.hero-actions,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-note {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--light);
}

.hero-note-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

.hero-note p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--black);
  min-height: 580px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0) 45%),
    radial-gradient(circle at 18% 16%, rgba(237, 31, 36, 0.34), transparent 22%),
    radial-gradient(circle at 80% 14%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #161616 0%, #050505 100%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 34px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.visual-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  color: var(--white);
}

.visual-card strong,
.metric strong {
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.visual-card span,
.metric span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
}

.visual-card-large {
  left: 44px;
  right: 150px;
  bottom: 44px;
  min-height: 230px;
  padding: 24px;
}

.visual-card-small {
  right: 44px;
  top: 110px;
  width: 190px;
  min-height: 132px;
  padding: 18px;
}

.visual-kicker {
  max-width: 240px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.visual-card-large h2 {
  max-width: 400px;
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 2.7vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
}

.split-band {
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  background: var(--surface);
}

.split-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.split-band-item {
  padding: 22px 22px;
  border-right: 1px solid var(--light);
}

.split-band-item:last-child {
  border-right: 0;
}

.split-band-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.split-band-item span {
  font-size: 0.92rem;
  color: var(--gray);
}

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

.process-list,
.service-list,
.contact-list,
.detail-list {
  display: grid;
  gap: 12px;
}

.process-item,
.service-item,
.detail-item {
  padding: 18px 0;
  border-top: 1px solid var(--light);
}

.process-item strong,
.service-item h3,
.detail-item strong {
  display: block;
  margin-bottom: 8px;
}

.process-item p,
.service-item p,
.detail-item p,
.contact-list p {
  margin: 0;
  color: var(--gray);
}

.panel-dark {
  position: relative;
  min-height: 500px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #111111 0%, #030303 100%);
  color: var(--white);
  overflow: hidden;
}

.panel-dark::before {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(237, 31, 36, 0.22);
  filter: blur(20px);
}

.panel-dark::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-copy {
  position: relative;
  z-index: 1;
  max-width: 380px;
}

.panel-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.panel-copy p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
}

.panel-stack {
  position: absolute;
  right: 36px;
  bottom: 36px;
  left: 120px;
  display: grid;
  gap: 12px;
  z-index: 1;
}

.panel-stack .detail-item {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.panel-stack .detail-item strong {
  color: var(--white);
}

.panel-stack .detail-item p {
  color: rgba(255, 255, 255, 0.66);
}

.page-hero {
  padding: 80px 0 24px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: end;
}

.page-hero-copy {
  padding-right: 20px;
}

.page-hero-copy-wide {
  max-width: 980px;
  padding-right: 0;
}

.page-hero-visual {
  min-height: 460px;
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, #111111 0%, #040404 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero-visual::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(237, 31, 36, 0.36);
  filter: blur(18px);
}

.page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.page-hero-panel h2 {
  max-width: 420px;
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.page-hero-panel p {
  max-width: 420px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}

.page-hero-data .metric {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.page-hero-strip {
  padding: 0 0 18px;
}

.page-hero-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: end;
  padding: 24px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, #111111 0%, #040404 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero-strip-inner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: 120px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(237, 31, 36, 0.28);
  filter: blur(18px);
}

.page-hero-strip-inner::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero-strip-copy,
.page-hero-strip-data {
  position: relative;
  z-index: 1;
}

.page-hero-strip-copy h2 {
  max-width: 700px;
  margin: 12px 0 0;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.page-hero-strip-copy p {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero-strip-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.page-hero-strip-data .metric {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.page-hero-strip-data .metric strong {
  display: block;
  margin-bottom: 8px;
}

.page-hero-strip-data .metric span {
  color: rgba(255, 255, 255, 0.72);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 56px;
  align-items: start;
}

.about-hero-copy {
  max-width: 760px;
}

.about-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.about-hero-copy p {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: 1.08rem;
  color: var(--gray);
}

.about-hero-simple {
  max-width: 100%;
}

.about-hero-simple h1 {
  max-width: 1040px;
  margin: 0 0 18px;
  font-size: clamp(2.85rem, 5.7vw, 5.05rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.about-hero-simple p {
  max-width: 900px;
  margin: 0 0 28px;
  font-size: 1.08rem;
  color: var(--gray);
}

.services-hero-copy {
  max-width: 100%;
}

.services-hero-copy h1 {
  max-width: 1100px;
  margin: 0 0 18px;
  font-size: clamp(2.9rem, 5.8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.services-hero-copy p {
  max-width: 980px;
  margin: 0 0 28px;
  font-size: 1.08rem;
  color: var(--gray);
}

.about-hero-side {
  align-self: stretch;
}

.about-sidecard {
  min-height: 100%;
  padding: 28px;
  background: color-mix(in srgb, var(--surface) 72%, white 28%);
  border: 1px solid color-mix(in srgb, var(--light) 78%, white 22%);
}

.about-sidecard h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.about-sidecard p {
  margin: 0;
  color: var(--gray);
}

.about-side-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.about-side-item {
  padding-top: 18px;
  border-top: 1px solid var(--light);
}

.about-side-item strong,
.about-bullet-item,
.about-support-item strong {
  display: block;
  margin-bottom: 8px;
}

.about-side-item span {
  color: var(--gray);
}

.about-narrative {
  max-width: 920px;
}

.about-narrative-intro {
  max-width: 760px;
}

.about-story {
  max-width: 860px;
}

.about-story-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.about-story-copy p {
  margin: 0;
  font-size: 1.03rem;
  color: var(--gray);
}

.about-bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--light);
}

.about-bullet-item {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--black);
}

.about-support-list {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--light);
}

.about-support-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.about-support-row .about-support-item {
  padding-top: 18px;
  border-top: 1px solid var(--light);
}

.about-support-row .about-support-item:first-child,
.about-support-row .about-support-item:nth-child(2) {
  padding-top: 0;
  border-top: 0;
}

.about-support-item strong {
  display: block;
  margin-bottom: 8px;
}

.about-support-item p {
  margin: 0;
  color: var(--gray);
}

.about-process-list,
.about-expectation-list {
  max-width: 760px;
}

.about-editorial-rows {
  gap: 0;
}

.about-editorial-rows .process-item,
.about-editorial-rows .detail-item {
  padding: 22px 0;
}

.about-editorial-rows .process-item strong,
.about-editorial-rows .detail-item strong {
  margin-bottom: 10px;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.about-editorial-rows .process-item p,
.about-editorial-rows .detail-item p {
  max-width: 64ch;
}

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

.service-layout-deep {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 980px;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 40px;
  align-items: start;
}

.service-feature-slim {
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: 48px;
}

.service-feature-slim .about-sidecard {
  padding: 22px;
}

.service-feature-slim .about-sidecard h2 {
  font-size: clamp(1.22rem, 1.7vw, 1.6rem);
  line-height: 1.12;
  max-width: 14ch;
}

.service-feature-slim .about-sidecard p {
  max-width: 30ch;
  font-size: 0.96rem;
}

.service-feature-reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.service-item h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
}

.service-item p + p {
  margin-top: 12px;
}

.service-layout-deep .service-item p {
  font-size: 1.02rem;
}

.service-layout-deep .service-item p strong {
  display: inline-block;
}

.service-layout-deep .service-item {
  padding: 54px 0;
  border-top: 1px solid color-mix(in srgb, var(--light) 82%, white 18%);
}

.service-layout-deep .service-item:first-child {
  padding-top: 46px;
  border-top: 0;
}

.service-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--light) 86%, white 14%);
}

.service-focus-item {
  margin: 0;
  align-self: start;
}

.service-layout-deep .service-focus-grid .service-focus-item {
  margin: 0;
}

.service-layout-deep .service-focus-item strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.25;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.example-list {
  display: grid;
  gap: 20px;
  max-width: 980px;
}

.example-card {
  padding: 26px 0;
  border-top: 1px solid var(--light);
}

.example-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.example-card > p {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--gray);
}

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

.example-item {
  padding-top: 14px;
  border-top: 1px solid var(--light);
}

.example-item strong {
  display: block;
  margin-bottom: 8px;
}

.example-item p {
  margin: 0;
  color: var(--gray);
}

.fit-grid {
  display: grid;
  gap: 18px;
  max-width: 900px;
}

.fit-block {
  padding-top: 20px;
  border-top: 1px solid var(--light);
}

.fit-block strong {
  display: block;
  margin-bottom: 8px;
}

.fit-block p {
  margin: 0;
  color: var(--gray);
}

.inline-callout {
  max-width: 760px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--light);
}

.inline-callout strong {
  display: block;
  margin-bottom: 8px;
}

.inline-callout p {
  margin: 0;
  color: var(--gray);
}

.services-jump-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  max-width: 980px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--light);
}

.services-jump-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 180ms ease;
}

.services-jump-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.services-jump-nav a span {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.services-jump-nav a em {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-left: 2px;
  font-style: normal;
  font-size: 0;
  line-height: 1;
  color: transparent;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.services-jump-nav a em::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.services-jump-nav a em::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 9px;
  height: 2px;
  background: var(--accent);
  transform: rotate(-45deg);
  transform-origin: right center;
}

.services-jump-nav a:hover,
.services-jump-nav a:focus-visible {
  color: var(--accent);
}

.services-jump-nav a:hover::after,
.services-jump-nav a:focus-visible::after {
  transform: scaleX(1);
}

.services-jump-nav a:hover em,
.services-jump-nav a:focus-visible em {
  transform: translateX(3px);
}

.service-story {
  max-width: 980px;
}

.service-story-intro {
  max-width: 760px;
}

.service-story-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.service-story-copy p {
  margin: 0;
  font-size: 1.03rem;
  color: var(--gray);
}

.story-chunk-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 28px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--light);
}

.story-chunk {
  padding-top: 6px;
}

.story-chunk strong {
  display: block;
  margin-bottom: 8px;
}

.story-chunk p {
  margin: 0;
  color: var(--gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--light);
  padding: 36px;
}

.contact-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.contact-panel p {
  margin: 0 0 26px;
  color: var(--gray);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field-grid .field-full {
  grid-column: 1 / -1;
}

.contact-captcha-row {
  margin-top: 4px;
}

.contact-submit-row {
  margin-top: 4px;
}

.contact-panel label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-panel input,
.contact-panel textarea,
.contact-panel select {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #d6d2d1;
  border-radius: 4px;
  background: var(--white);
  font: inherit;
  color: var(--black);
}

.contact-panel textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-meta {
  display: grid;
  gap: 18px;
}

.meta-block {
  padding-top: 20px;
  border-top: 1px solid var(--light);
}

.meta-block strong {
  display: block;
  margin-bottom: 8px;
}

.meta-block p,
.meta-block a {
  margin: 0;
  color: var(--gray);
}

.cta-band {
  padding: 88px 0;
  background: var(--red);
  color: var(--white);
}

.cta-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cta-band p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.cta-band .button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 68px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand p,
.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.62);
}

.footer-brand p {
  max-width: 320px;
}

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

.footer-column h4 {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 10px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.36);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.36);
}

.footer-bottom a:hover {
  color: var(--red);
}

@media (max-width: 1040px) {
  .site-nav,
  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-header.is-open .site-nav {
    display: flex;
    position: absolute;
    top: 79px;
    left: 24px;
    right: 24px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--light);
  }

  .hero-grid,
  .about-hero,
  .page-hero-grid,
  .page-hero-strip-inner,
  .two-column,
  .contact-grid,
  .cta-band-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .page-hero-copy {
    padding-right: 0;
  }

  .hero-visual {
    min-height: 540px;
  }

  .split-band-grid,
  .service-layout,
  .service-layout-deep,
  .service-feature,
  .example-grid,
  .story-chunk-row,
  .footer-top,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .split-band-item,
  .footer-top > * {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .container,
  .header-inner {
    width: min(var(--max), calc(100% - 32px));
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 36px 0 18px;
  }

  .hero-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-visual,
  .page-hero-visual,
  .panel-dark {
    min-height: 460px;
  }

  .page-hero-strip-inner {
    padding: 22px;
  }

  .page-hero-strip-data {
    grid-template-columns: 1fr;
  }

  .about-sidecard {
    padding: 24px;
  }

  .services-jump-nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .about-support-row .about-support-item:nth-child(2) {
    padding-top: 18px;
    border-top: 1px solid var(--light);
  }

  .service-focus-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-bullet-grid {
    grid-template-columns: 1fr;
  }

  .visual-card-large {
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-height: 210px;
    padding: 18px;
  }

  .visual-card-small {
    display: none;
  }

  .panel-stack {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .contact-panel,
  .page-hero-visual {
    padding: 24px;
  }

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