:root {
  --bg: #f7f6f3;
  --bg-deep: #ece9e3;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-dark: rgba(42, 47, 53, 0.94);
  --ink: #17191c;
  --muted: #535a62;
  --line: rgba(217, 221, 227, 0.9);
  --accent: #a44721;
  --accent-dark: #8d3d1d;
  --accent-bright: #b45b35;
  --olive: #59636d;
  --teal: #2f4754;
  --sand: #ece7de;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(30, 31, 33, 0.08);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --max-width: 1280px;
  --text-lg: clamp(1.05rem, 1.6vw, 1.18rem);
  --text-base: 1rem;
  --font-sans: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 0% 0%, rgba(164, 71, 33, 0.08), transparent 24%),
    radial-gradient(circle at 100% 8%, rgba(42, 47, 53, 0.05), transparent 18%),
    linear-gradient(180deg, #fbfaf8 0%, var(--bg) 42%, #f2f0ec 100%);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 78%);
  opacity: 0.08;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding-bottom: 3.5rem;
}

.page-shell--wide {
  width: min(calc(100% - 2rem), 1280px);
  margin: 0 auto;
}

.page-shell--service {
  width: min(calc(100% - 2rem), 1180px);
  margin: 0 auto;
}

.page-shell--reading {
  width: min(calc(100% - 2rem), 920px);
  margin: 0 auto;
}

.page-shell--medium {
  width: min(calc(100% - 2rem), 1040px);
  margin: 0 auto;
}

.page-shell--narrow {
  width: min(calc(100% - 2rem), 1040px);
}

.section-container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.section-container .card-actions {
  margin-top: 1rem;
}

.site-header {
  position: sticky;
  top: 0.9rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 2.2rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand--image {
  gap: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.brand-logo--header {
  height: 2.35rem;
  max-width: none;
}

.brand-logo--footer {
  width: min(100%, 18rem);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent-dark), var(--accent-bright));
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-lockup {
  min-width: 0;
}

.brand-name,
.brand-tag,
.eyebrow,
.section-kicker,
.micro-label,
.topic-pill,
.social-platform {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.brand-name {
  font-size: 0.82rem;
  font-weight: 700;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.65rem;
  margin-top: 0.2rem;
}

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

.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 0.2rem;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.34rem 0;
  background: var(--ink);
  transition: transform 180ms ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(129, 45, 16, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-phone:hover,
.header-phone:focus-visible {
  background: rgba(255, 255, 255, 0.8);
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(129, 45, 16, 0.28);
  background: rgba(255, 255, 255, 0.68);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.social-link--youtube svg {
  fill: currentColor;
  stroke: none;
}

.button-row,
.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.92rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: normal;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(164, 71, 33, 0.16);
}

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

.button-ghost {
  border-color: transparent;
  color: var(--accent-dark);
  padding-inline: 0;
  min-height: auto;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb span {
  opacity: 0.65;
}

.section {
  padding: 0 0 5rem;
}

.section-header {
  display: grid;
  gap: 0.75rem;
  max-width: 68rem;
  margin-bottom: 2rem;
}

.section-header::before {
  content: "";
  width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(129, 45, 16, 0.56), rgba(129, 45, 16, 0));
}

.section-header h2,
.page-hero h1,
.cta-band h2,
.article-title,
.compact-hero h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.section-header h2 {
  font-size: clamp(2.15rem, 4.4vw, 3.85rem);
  max-width: 14ch;
}

.hero-copy,
.hero-visual,
.section-header,
.service-card,
.card,
.insight-card,
.resource-card,
.topic-card,
.learn-card,
.split-copy,
.split-panel,
.stats-panel,
.article-body,
.article-sidebar-card,
.contact-panel,
.home-hero > *,
.split-layout > *,
.media-grid > *,
.article-layout > *,
.contact-layout > *,
.resource-library > *,
.content-layers > *,
.service-grid > *,
.cluster-grid > *,
.topic-grid > *,
.resource-grid > *,
.learn-grid > *,
.stats-grid > *,
.process-grid > *,
.faq-grid > *,
.link-grid > * {
  min-width: 0;
}

.hero-copy h1,
.page-hero h1,
.compact-hero h1,
.section-header h2,
.card h3,
.insight-card h3,
.resource-card h3,
.topic-card h3,
.learn-card h3,
.split-copy h2,
.article-body h2,
.article-body h3,
.faq-list summary {
  overflow-wrap: anywhere;
}

.text-link {
  overflow-wrap: normal;
  word-break: normal;
}

.service-card .micro-label,
.service-card h3,
.service-card .text-link {
  overflow-wrap: normal;
  word-break: normal;
  white-space: normal;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  transform: none;
}

.section-kicker,
.eyebrow,
.micro-label,
.topic-pill,
.social-platform {
  color: var(--accent-dark);
  font-size: 0.76rem;
}

.section-header p,
.page-hero p,
.card p,
.article-body p,
.article-summary,
.faq-list p,
.cta-band p,
.split-copy p,
.checklist li,
.resource-list li,
.meta-note,
.insight-card p,
.embed-copy p {
  color: var(--muted);
  line-height: 1.72;
  font-size: var(--text-base);
}

.page-hero,
.hero-panel,
.card,
.insight-card,
.service-card,
.resource-card,
.topic-card,
.cta-band,
.article-sidebar-card,
.split-panel,
.stats-panel,
.faq-list details,
.learn-card,
.embed-shell,
.quote-card {
  border: 1px solid rgba(23, 20, 16, 0.08);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.home-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  min-height: calc(100vh - 8rem);
  padding: 1.6rem 0 4.4rem;
}

.page-hero,
.compact-hero {
  padding: 2.35rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 244, 237, 0.82)),
    var(--surface);
}

.hero-copy h1,
.page-hero h1,
.compact-hero h1 {
  font-size: clamp(3.25rem, 8vw, 6.4rem);
  max-width: 10ch;
  font-weight: 700;
  color: var(--ink);
}

.hero-copy p,
.page-hero p,
.compact-hero p {
  max-width: 58ch;
  font-size: var(--text-lg);
}

.home-page .hero-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.home-page .hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 6.2vw, 5.4rem);
  letter-spacing: -0.04em;
}

.home-page .hero-copy p {
  max-width: 44rem;
  margin: 0;
}

.home-page .hero-copy .hero-subheadline {
  max-width: 42rem;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  line-height: 1.58;
}

.hero-copy .eyebrow,
.page-hero .eyebrow,
.compact-hero .eyebrow {
  margin-bottom: 0.9rem;
}

.hero-visual {
  display: flex;
  min-height: 100%;
}

.hero-image-frame {
  width: 100%;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(23, 20, 16, 0.08);
  border-radius: var(--radius-xl);
  background: #dfe4e7;
  box-shadow: var(--shadow);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 0%, rgba(164, 71, 33, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(245, 244, 241, 0.76));
}

.hero-panel--minimal {
  display: grid;
  gap: 1.25rem;
  align-content: end;
  min-height: 100%;
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 239, 229, 0.82)),
    var(--surface);
}

.hero-panel--minimal::after {
  width: 13rem;
  height: 13rem;
  right: -12%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(36, 82, 90, 0.12), transparent 66%);
}

.hero-panel-lines {
  display: grid;
  gap: 0.9rem;
}

.hero-panel-lines p {
  margin: 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(23, 20, 16, 0.1);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero-panel-lines p:first-child {
  padding-top: 0;
  border-top: 0;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -18%;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187, 83, 39, 0.3), transparent 62%);
}

.signal-block {
  position: relative;
  z-index: 1;
  padding: 1.65rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
}

.signal-number {
  margin: 0.4rem 0 0.8rem;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 6vw, 4.75rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.metric-list,
.trust-grid,
.service-grid,
.architecture-grid,
.insight-grid,
.topic-grid,
.resource-grid,
.learn-grid,
.stats-grid,
.process-grid,
.article-grid,
.link-grid,
.faq-grid,
.cluster-grid {
  display: grid;
  gap: 1rem;
}

.metric-list {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.metric-list article,
.stat-chip {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(23, 20, 16, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
}

.trust-grid,
.service-grid,
.architecture-grid,
.insight-grid,
.resource-grid,
.cluster-grid,
.link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

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

.card,
.insight-card,
.service-card,
.resource-card,
.topic-card,
.article-sidebar-card,
.learn-card,
.split-panel,
.stats-panel,
.quote-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px rgba(73, 47, 22, 0.06);
}

.service-card,
.learn-card,
.resource-card,
.topic-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card h3,
.card h3,
.insight-card h3,
.resource-card h3,
.topic-card h3,
.learn-card h3,
.split-copy h2,
.faq-list summary,
.article-body h2,
.article-body h3,
.compact-hero h2 {
  margin: 0 0 0.85rem;
}

.service-card h3,
.card h3,
.insight-card h3,
.resource-card h3,
.topic-card h3,
.learn-card h3,
.split-copy h2,
.article-body h2,
.article-body h3,
.compact-hero h2 {
  font-size: 1.45rem;
}

.service-card p:not(.micro-label),
.learn-card p,
.resource-card p,
.topic-card p,
.card p,
.insight-card p {
  flex: 1;
}

.service-card .micro-label {
  flex: 0 0 auto;
  display: inline-block;
  margin: 0 0 0.75rem;
}

.card-actions {
  margin-top: 1rem;
}

.accent-card {
  background:
    linear-gradient(155deg, rgba(164, 71, 33, 0.08), rgba(42, 47, 53, 0.03)),
    var(--surface);
}

.dark-panel {
  background:
    linear-gradient(160deg, rgba(42, 47, 53, 0.98), rgba(51, 57, 64, 0.94));
  color: var(--white);
}

.dark-panel p,
.dark-panel li,
.dark-panel .social-platform,
.dark-panel .meta-note,
.dark-panel .micro-label {
  color: rgba(245, 247, 250, 0.78);
}

.dark-panel .button-secondary {
  border-color: rgba(217, 221, 227, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.dark-panel .text-link {
  color: #f0c0a8;
}

.strip {
  margin: 0 calc(50% - 50vw) 4rem;
  padding: 1rem 0;
  overflow: hidden;
  background: var(--surface-dark);
  color: var(--white);
}

.strip-track {
  display: flex;
  gap: 2rem;
  min-width: max-content;
  animation: marquee 30s linear infinite;
}

.strip-track span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

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

.funnel-flow {
  display: grid;
  gap: 1rem;
}

.funnel-step {
  position: relative;
  padding: 1.35rem 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow);
}

.funnel-step::after {
  content: "\2193";
  position: absolute;
  left: 50%;
  bottom: -1rem;
  transform: translateX(-50%);
  color: var(--accent-dark);
  font-size: 1.2rem;
}

.funnel-step:last-child::after {
  display: none;
}

.funnel-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.funnel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.funnel-links span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(23, 20, 16, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.92rem;
}

.editorial-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.8rem;
  border-top: 1px solid var(--line);
}

.editorial-point {
  padding: 1.35rem 0 1.6rem;
  border-bottom: 1px solid var(--line);
}

.editorial-point h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.statement-band {
  display: grid;
  gap: 1rem;
  align-items: start;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.statement-band p {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
}

.recognition-list,
.resource-paths {
  display: grid;
  gap: 0.8rem 1.5rem;
  margin: 1rem 0 0;
}

.recognition-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  list-style: none;
}

.recognition-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.recognition-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--accent-dark);
}

.compact-stack {
  display: grid;
  gap: 0.85rem;
}

.compact-stack p {
  margin: 0;
}

.resource-paths {
  grid-template-columns: 1fr;
}

.resource-path {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.resource-path strong {
  font-size: 1.05rem;
  font-weight: 600;
}

.resource-path span {
  color: var(--muted);
}

.layer-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(23, 20, 16, 0.08);
  background: rgba(255, 255, 255, 0.48);
}

.layer-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: linear-gradient(140deg, rgba(129, 45, 16, 0.14), rgba(240, 156, 62, 0.24));
  color: var(--accent-dark);
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: start;
}

.split-copy,
.split-panel {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
}

.checklist {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}

.checklist li {
  margin-bottom: 0.7rem;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.embed-shell {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.embed-frame {
  display: grid;
  place-items: center;
  min-height: 18rem;
  margin-top: 1rem;
  border: 1px dashed rgba(129, 45, 16, 0.28);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(240, 156, 62, 0.16), transparent 44%),
    rgba(255, 255, 255, 0.36);
  text-align: center;
  padding: 1.5rem;
}

.embed-frame strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.embed-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-lg);
  background: #000;
}

.post-stack {
  display: grid;
  gap: 1rem;
}

.social-platform {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.insight-card .micro-label,
.resource-card .micro-label,
.learn-card .micro-label,
.topic-card .micro-label {
  margin-bottom: 0.8rem;
  display: inline-block;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

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

.faq-list p {
  margin: 0.8rem 0 0;
}

.compact-hero {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.compact-hero h1 {
  max-width: 11ch;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.topic-pill,
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(23, 20, 16, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 1.2rem;
}

.article-body {
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 251, 245, 0.82);
  box-shadow: var(--shadow);
}

.article-body h2 {
  margin-top: 2rem;
  font-family: var(--font-sans);
}

.article-body h3 {
  margin-top: 1.3rem;
  font-family: var(--font-sans);
}

.article-body ul,
.article-body ol {
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.72;
}

.article-sidebar {
  display: grid;
  gap: 1rem;
  align-self: start;
  position: sticky;
  top: 7rem;
}

.article-sidebar-card h3 {
  font-size: 1.05rem;
}

.article-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  max-width: 10ch;
}

.article-summary {
  max-width: 58ch;
  margin-top: 1rem;
  font-size: var(--text-lg);
}

.resource-list {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.resource-list li {
  margin-bottom: 0.6rem;
}

.cta-band {
  padding: 2.6rem 1.6rem;
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(240, 156, 62, 0.18), transparent 34%),
    var(--surface);
}

.cta-band h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 12ch;
  margin-inline: auto;
}

.cta-band p {
  max-width: 44rem;
  margin: 1rem auto 1.4rem;
}

.newsletter-shell {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    radial-gradient(circle at top right, rgba(36, 82, 90, 0.16), transparent 30%),
    var(--surface);
  box-shadow: var(--shadow);
}

.home-page .content-layers {
  grid-template-columns: 1.15fr 1fr 1fr;
  align-items: start;
}

.home-page .content-layers > :first-child {
  transform: translateY(-0.75rem);
}

.home-page .service-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.1rem;
}

.home-page .service-grid > * {
  grid-column: span 4;
}

.home-page .service-grid > :nth-child(1),
.home-page .service-grid > :nth-child(2) {
  grid-column: span 6;
}

.home-page .layer-card,
.home-page .service-card,
.home-page .topic-card {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 1.2rem 0 0;
}

.home-page .layer-card,
.home-page .service-card {
  min-height: 0;
}

.home-page .card[style*="margin-top"],
.home-page .section > .card:not(.split-copy):not(.insight-card) {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 1.2rem 0 0;
}

.home-page .topic-grid {
  gap: 1.25rem 2rem;
}

.home-page .topic-card {
  padding-top: 1rem;
}

.content-page .compact-hero.page-hero {
  padding: clamp(2rem, 4vw, 3rem);
}

.content-page .cluster-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem 1.5rem;
}

.content-page .cluster-grid > * {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 1rem 0 0;
}

.resource-page .topic-grid,
.resource-page .resource-grid {
  gap: 1.4rem 1.5rem;
}

.resource-page .topic-card,
.resource-page .resource-card {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 1.1rem 0 0;
}

.resource-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem 1.6rem;
}

.category-link,
.article-index-item {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.category-link:hover,
.article-index-item:hover {
  color: inherit;
}

.category-link h3,
.article-index-item h3 {
  margin: 0;
  font-size: 1.15rem;
}

.category-link p,
.article-index-item p,
.category-link span,
.article-index-item span {
  margin: 0;
  color: var(--muted);
}

.category-link strong,
.article-index-item strong {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.resource-library {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 1.6rem;
  align-items: start;
}

.article-index {
  display: grid;
  gap: 1.1rem;
}

.article-index-item {
  gap: 0.45rem;
}

.library-panel {
  display: grid;
  gap: 1rem;
  align-self: start;
}

.library-panel .article-sidebar-card {
  position: sticky;
  top: 7rem;
}

.resource-article-page .article-body h2 {
  font-size: 1.3rem;
}

.resource-article-page .article-body section + section {
  margin-top: 1.8rem;
}

.resource-article-page .article-body ul {
  margin-top: 0.8rem;
}

.service-page .page-shell--narrow {
  width: min(calc(100% - 2rem), 1140px);
}

.service-page .compact-hero.page-hero {
  position: relative;
  gap: 1.2rem;
  padding: clamp(2.1rem, 4vw, 3rem);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 240, 232, 0.88) 62%, rgba(240, 156, 62, 0.08)),
    var(--surface);
}

.service-page .compact-hero.page-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -28%;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 156, 62, 0.1), transparent 64%);
  pointer-events: none;
}

.service-page .compact-hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.service-page main > section.split-layout {
  position: relative;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 2.6vw, 3rem);
  align-items: center;
  padding: clamp(1.4rem, 2.8vw, 2rem);
  border: 1px solid rgba(23, 20, 16, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.18)),
    transparent;
  box-shadow: 0 18px 42px rgba(73, 47, 22, 0.05);
}

.service-page main > section.split-layout:nth-of-type(even) {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.service-page main > section.split-layout:nth-of-type(even) > :first-child {
  order: 2;
}

.service-page main > section.split-layout:nth-of-type(even) > :last-child {
  order: 1;
}

.service-page main > section.split-layout > .split-copy.card {
  padding: 0.25rem 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.service-page main > section.split-layout > .split-panel,
.service-page main > section.split-layout > .stats-panel {
  padding: clamp(1.4rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(73, 47, 22, 0.08);
}

.service-page main > section.split-layout > .dark-panel {
  background:
    linear-gradient(175deg, rgba(42, 47, 53, 0.98), rgba(51, 57, 64, 0.94));
}

.service-page .split-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 13ch;
}

.service-page .section > .section-header {
  max-width: 72rem;
  margin-bottom: 2.3rem;
}

.service-page .page-hero,
.service-page .compact-hero,
.service-page .split-copy,
.service-page .section-header {
  max-width: none;
}

.service-page .page-hero > p:not(.eyebrow):not(.meta-note),
.service-page .compact-hero > p:not(.eyebrow):not(.meta-note) {
  max-width: 62ch;
}

.service-page .section-header > p,
.service-page .split-copy > p,
.service-page .cta-band p,
.service-page .meta-note {
  max-width: 68ch;
}

.service-page .cluster-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.35rem 1.45rem;
  align-items: start;
}

.service-page .cluster-grid > :first-child {
  grid-row: span 2;
}

.service-page .cluster-grid > :nth-child(2) {
  transform: translateY(1.15rem);
}

.service-page .cluster-grid > :nth-child(4) {
  transform: translateY(-1.15rem);
}

.service-page .learn-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  gap: 1.3rem 1.45rem;
}

.service-page .learn-grid > :first-child {
  background:
    linear-gradient(180deg, rgba(240, 156, 62, 0.12), rgba(255, 255, 255, 0.82)),
    var(--surface);
}

.service-page .media-grid {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 1.3rem;
  align-items: start;
}

.service-page .embed-shell {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 242, 235, 0.82)),
    var(--surface);
}

.page-shell--service .service-grid,
.page-shell--service .insight-grid,
.page-shell--service .content-layers {
  gap: 1.25rem 1.4rem;
}

.page-shell--medium .page-hero > p:not(.eyebrow),
.page-shell--medium .section-header > p,
.page-shell--medium .split-copy > p,
.page-shell--medium .contact-panel p,
.page-shell--medium .meta-note {
  max-width: 68ch;
}

.page-shell--reading .article-body {
  width: 100%;
  max-width: 72ch;
  margin-right: auto;
}

.service-page .cta-band.section {
  margin-inline: calc(50% - 50vw);
  padding:
    clamp(3.2rem, 6vw, 4.8rem)
    max(1rem, calc((100vw - 1040px) / 2));
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 228, 213, 0.94));
}

.service-page .cta-band h2 {
  max-width: 13ch;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.newsletter-form input {
  flex: 1 1 18rem;
  min-height: 3.2rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}

.newsletter-form button {
  cursor: pointer;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.contact-panel {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

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

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

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

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

.field-group label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
}

.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

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

.field-group input:focus-visible,
.field-group textarea:focus-visible,
.field-group select:focus-visible {
  outline: 2px solid rgba(187, 83, 39, 0.18);
  border-color: rgba(129, 45, 16, 0.28);
}

.form-trust {
  display: grid;
  gap: 0.55rem;
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
}

.contact-method {
  display: grid;
  gap: 0.18rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(23, 20, 16, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
}

.contact-method strong {
  font-size: 1rem;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.inline-list span {
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
  color: var(--muted);
  font-size: 0.9rem;
}

.share-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.share-button:hover,
.share-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.78);
}

.share-button[data-copy-state="copied"] {
  border-color: rgba(36, 82, 90, 0.32);
  color: var(--teal);
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-note {
  font-size: 0.92rem;
}

.footer-disclaimer {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

[data-reveal="left"] {
  transform: translate3d(-28px, 0, 0);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .home-hero,
  .split-layout,
  .media-grid,
  .article-layout,
  .process-grid,
  .stats-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .hero-image-frame {
    min-height: clamp(20rem, 62vw, 32rem);
  }

  .service-page main > section.split-layout:nth-of-type(even) > :first-child,
  .service-page main > section.split-layout:nth-of-type(even) > :last-child {
    order: initial;
  }
}

@media (max-width: 920px) {
  .trust-grid,
  .service-grid,
  .architecture-grid,
  .insight-grid,
  .resource-grid,
  .cluster-grid,
  .topic-grid,
  .learn-grid,
  .content-layers,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1,
  .hero-copy h1,
  .compact-hero h1,
  .article-title {
    max-width: none;
  }

  .home-page .content-layers,
  .home-page .service-grid,
  .service-page .cluster-grid,
  .service-page .learn-grid,
  .recognition-list {
    grid-template-columns: 1fr;
  }

  .resource-categories,
  .resource-library {
    grid-template-columns: 1fr;
  }

  .page-shell--service .cluster-grid,
  .page-shell--service .topic-grid {
    grid-template-columns: 1fr;
  }

  .home-page .content-layers > :first-child,
  .home-page .service-grid > * ,
  .service-page .cluster-grid > :first-child,
  .service-page .cluster-grid > :nth-child(2),
  .service-page .cluster-grid > :nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    transform: none;
  }
}

@media (max-width: 768px) {
  .page-shell,
  .page-shell--wide,
  .page-shell--service,
  .page-shell--medium,
  .page-shell--reading,
  .page-shell--narrow {
    width: 100%;
    max-width: 100%;
    padding-inline: 1rem;
  }

  .section-container,
  .section-header,
  .service-grid,
  .cluster-grid,
  .card-actions,
  .service-card,
  .card,
  .split-layout,
  .content-layers,
  .resource-library,
  .resource-categories {
    width: 100%;
    max-width: 100%;
  }

  .site-header {
    top: 0.5rem;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0.65rem 0 1.25rem;
    padding: 0.85rem 1rem;
    border-radius: 28px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 0.65rem;
    min-width: 0;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
  }

  .brand-logo--header {
    height: 2rem;
  }

  .brand-name {
    font-size: 0.76rem;
  }

  .brand-tag {
    font-size: 0.6rem;
  }

  .menu-toggle {
    display: inline-block;
    margin-left: 0;
    padding: 0.15rem;
  }

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

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

  .site-nav,
  .social-links--header,
  .header-phone {
    display: none;
    width: 100%;
    margin-left: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.6rem 0;
    font-size: 1rem;
  }

  .social-links--header {
    justify-content: flex-start;
    gap: 0.45rem;
  }

  .site-nav.is-open,
  .social-links--header.is-open,
  .header-phone.is-open {
    display: flex;
  }

  .header-phone {
    justify-content: flex-start;
    min-height: 3rem;
    padding: 0.8rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 1rem;
  }

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

  .section {
    padding: 0 0 3rem;
  }

  #services .service-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    gap: 1.25rem;
  }

  #services .service-grid > * {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  #services .service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    padding-top: 1.2rem;
  }

  #services .service-card > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  #services .service-card .micro-label,
  #services .service-card h3,
  #services .service-card p,
  #services .service-card .text-link {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  #services .service-card .micro-label {
    align-self: flex-start;
    width: auto;
    max-width: 100%;
    margin-bottom: 0.7rem;
  }

  #services .service-card h3,
  #services .service-card p {
    width: 100%;
    max-width: 100%;
  }

  #services .service-card .card-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 0.85rem;
  }

  #services .service-card .text-link {
    display: inline-block;
    width: auto;
    max-width: 100%;
  }

  .home-page .service-grid,
  .home-page .content-layers,
  .service-page .cluster-grid {
    grid-template-columns: 1fr;
  }

  .home-page .service-grid > *,
  .home-page .content-layers > *,
  .service-page .cluster-grid > * {
    grid-column: 1 / -1;
    width: 100%;
    transform: none;
  }

  .service-page .page-shell--narrow {
    width: 100%;
    max-width: 100%;
  }

  .library-panel .article-sidebar-card {
    position: static;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0.5rem 0 2.5rem;
    gap: 1.25rem;
  }

  .home-hero > :first-child {
    order: 1;
  }

  .home-hero > :last-child {
    order: 2;
  }

  .hero-copy {
    display: grid;
    gap: 0.7rem;
  }

  .hero-copy h1,
  .page-hero h1,
  .compact-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
    line-height: 0.98;
  }

  .home-page .hero-copy .hero-subheadline,
  .hero-copy p,
  .page-hero p,
  .compact-hero p {
    max-width: none;
  }

  .home-page .hero-copy .hero-subheadline,
  .hero-copy p,
  .page-hero p,
  .compact-hero p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
  }

  .hero-copy .eyebrow,
  .page-hero .eyebrow,
  .compact-hero .eyebrow {
    margin-bottom: 0.15rem;
  }

  .hero-image-frame {
    min-height: 24rem;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .button-row,
  .hero-actions,
  .card-actions,
  .newsletter-form,
  .share-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .cta-band .button,
  .button-row .button,
  .newsletter-form .button,
  .share-button {
    width: 100%;
  }

  .button {
    min-height: 3.35rem;
  }

  .page-hero,
  .compact-hero,
  .hero-panel,
  .card,
  .insight-card,
  .service-card,
  .resource-card,
  .topic-card,
  .learn-card,
  .article-body,
  .article-sidebar-card,
  .split-panel,
  .split-copy,
  .embed-shell,
  .cta-band {
    padding: 1.3rem;
  }

  .service-page main > section.split-layout {
    padding: 1.3rem;
  }

  .card,
  .insight-card,
  .service-card,
  .resource-card,
  .topic-card,
  .learn-card,
  .split-panel,
  .split-copy,
  .embed-shell,
  .cta-band {
    border-radius: 20px;
  }

  .service-card p,
  .resource-card p,
  .topic-card p,
  .learn-card p,
  .card p,
  .insight-card p,
  .checklist li,
  .resource-list li,
  .faq-list p,
  .cta-band p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .contact-layout,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-group--full {
    grid-column: auto;
  }

  .contact-form {
    gap: 0.85rem;
  }

  .field-group {
    gap: 0.4rem;
  }

  .field-group input,
  .field-group textarea,
  .field-group select,
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .resource-library,
  .resource-categories,
  .recognition-list,
  .editorial-points {
    grid-template-columns: 1fr;
  }

  .micro-label,
  .text-link,
  .service-card h3,
  .card h3 {
    overflow-wrap: normal;
    word-break: normal;
    white-space: normal;
  }

  .strip {
    margin: 0 calc(50% - 50vw) 2.6rem;
    padding: 0.8rem 0;
  }

  .strip-track {
    gap: 1.3rem;
  }

  .strip-track span {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .service-page .cta-band.section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .page-shell,
  .page-shell--wide,
  .page-shell--service,
  .page-shell--medium,
  .page-shell--reading,
  .page-shell--narrow {
    width: 100%;
    max-width: 100%;
    padding-inline: 0.75rem;
  }

  .section-container,
  .section-header,
  .service-grid,
  .cluster-grid,
  .card-actions,
  .service-card,
  .card {
    width: 100%;
    max-width: 100%;
  }

  .site-header {
    top: 0.35rem;
    gap: 0.55rem;
    margin: 0.65rem 0 1.4rem;
    padding: 0.75rem 0.9rem;
    border-radius: 22px;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.86rem;
  }

  .brand-logo--header {
    height: 1.8rem;
  }

  .brand-name {
    font-size: 0.74rem;
  }

  .brand-tag {
    font-size: 0.58rem;
  }

  .section {
    padding: 0 0 2.5rem;
  }

  .section-header {
    margin-bottom: 1.45rem;
  }

  .home-hero {
    padding: 0.25rem 0 2rem;
    gap: 1rem;
  }

  .hero-copy {
    gap: 0.55rem;
  }

  .meta-strip {
    gap: 0.5rem;
    margin-top: 0.7rem;
  }

  .hero-copy h1,
  .page-hero h1,
  .compact-hero h1 {
    font-size: clamp(2rem, 10.5vw, 3rem);
    line-height: 1;
  }

  .home-page .hero-copy {
    gap: 0.5rem;
  }

  .home-page .hero-copy .hero-subheadline {
    max-width: none;
  }

  .hero-image-frame {
    min-height: 15rem;
  }

  .hero-panel--minimal {
    gap: 0.9rem;
  }

  .hero-panel-lines {
    gap: 0.75rem;
  }

  .hero-panel-lines p {
    padding-top: 0.75rem;
    font-size: 0.94rem;
  }

  .hero-copy p,
  .page-hero p,
  .compact-hero p {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .section-header p,
  .card p,
  .insight-card p,
  .checklist li,
  .resource-list li,
  .faq-list p,
  .cta-band p {
    font-size: 0.93rem;
    line-height: 1.56;
  }

  .button-row,
  .hero-actions,
  .card-actions {
    gap: 0.7rem;
  }

  .button {
    width: 100%;
    min-height: 3rem;
    padding: 0.85rem 1rem;
  }

  .page-hero,
  .compact-hero,
  .hero-panel,
  .card,
  .insight-card,
  .service-card,
  .resource-card,
  .topic-card,
  .learn-card,
  .article-body,
  .article-sidebar-card,
  .split-panel,
  .split-copy,
  .embed-shell,
  .cta-band,
  .newsletter-shell {
    padding: 1.1rem;
  }

  .service-page main > section.split-layout {
    padding: 1.1rem;
  }

  .site-nav a {
    padding: 0.7rem 0;
  }

  .header-phone {
    padding: 0.72rem 0;
  }

  .social-links--header {
    gap: 0.35rem;
  }

  .social-links--header .social-link {
    width: 2rem;
    height: 2rem;
  }

  .strip {
    margin-bottom: 2.5rem;
    padding: 0.8rem 0;
  }

  .strip-track {
    gap: 0.95rem;
  }

  .strip-track span {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .footer-links {
    gap: 0.75rem;
  }

  .topic-pill,
  .stat-pill {
    padding: 0.5rem 0.7rem;
    font-size: 0.68rem;
  }
}

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

  .strip-track,
  [data-reveal] {
    animation: none;
    transition: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
