:root {
  --ink: #12110f;
  --coal: #171512;
  --coal-2: #211f1a;
  --graphite: #3f3d38;
  --muted: #6d685f;
  --paper: #f4efe5;
  --paper-soft: #fffaf0;
  --gold: #c98f31;
  --gold-strong: #9a6716;
  --line: rgba(18, 17, 15, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --display: "Libre Baskerville", Georgia, serif;
  --body: "DM Sans", "Helvetica Neue", sans-serif;
  --wide: 1360px;
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 48px);
  --section: clamp(56px, 7vw, 104px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

ul,
ol {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 60;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-shell {
  overflow: hidden;
  background: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 14px max(var(--gutter), calc((100vw - var(--wide)) / 2));
  color: #fff;
  background: rgba(23, 21, 18, 0.9);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
}

.brand-mark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand strong {
  display: inline-flex;
  gap: 8px;
  max-width: none;
  color: #fff;
  font-size: clamp(1.26rem, 1.82vw, 2.0rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand strong span {
  font-weight: 900;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.button,
.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary,
.nav-cta {
  background: var(--gold);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(18, 17, 15, 0.22);
  background: transparent;
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero,
.section,
.metric-band,
.cta-ribbon,
.footer-inner,
.page-hero-inner,
.redirect-panel {
  width: min(var(--wide), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
}

.home-hero,
.page-hero,
.redirect-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(201, 143, 49, 0.22), transparent 26rem),
    linear-gradient(135deg, var(--coal), #0f0e0c);
  color: #fff;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  min-height: 650px;
  padding: clamp(58px, 7vw, 96px) max(var(--gutter), calc((100vw - var(--wide)) / 2)) clamp(70px, 8vw, 110px);
}

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

.eyebrow,
.section-kicker,
.tag,
.card-number {
  display: inline-flex;
  width: fit-content;
  color: var(--gold-strong);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-hero .eyebrow,
.page-hero .eyebrow,
.redirect-panel .eyebrow,
.cta-ribbon .section-kicker {
  color: #f0bd63;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
}

h3 {
  font-size: clamp(1.22rem, 1.6vw, 1.55rem);
  font-weight: 900;
  line-height: 1.16;
}

h1 {
  max-width: 780px;
  margin-top: 14px;
  font-size: clamp(2.35rem, 4.1vw, 4.1rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(1.8rem, 2.9vw, 3.2rem);
}

.lede {
  max-width: 650px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.hero-actions,
.action-row,
.section-action,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-trust span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-portrait {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--coal-2);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.36);
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  pointer-events: none;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 56% center;
}

.hero-portrait figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(18, 17, 15, 0.84);
  color: #fff;
  backdrop-filter: blur(14px);
}

.hero-portrait figcaption strong {
  color: #f0bd63;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.94;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -42px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--paper-soft);
  box-shadow: 0 24px 62px rgba(18, 17, 15, 0.14);
}

.metric-band div {
  min-height: 142px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.metric-band div:last-child {
  border-right: 0;
}

.metric-band strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 900;
  line-height: 0.96;
  white-space: nowrap;
}

.metric-band span {
  color: var(--graphite);
  font-size: 0.98rem;
}

.section {
  padding: var(--section) 0;
}

.section+.section {
  border-top: 1px solid var(--line);
}

.section-heading,
.section-head,
.intro-split,
.contact-strip,
.split {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.section-heading,
.section-head {
  margin-bottom: clamp(28px, 4vw, 52px);
}

.section-heading>div,
.section-head>div {
  display: grid;
  gap: 14px;
}

.section-head-stacked {
  grid-template-columns: 1fr;
  gap: 16px;
}

.section-head-stacked>div {
  max-width: 860px;
}

.section-head h2 {
  max-width: 760px;
}

.section-heading p:not(.section-kicker),
.section-head p,
.intro-copy,
.bio-copy p,
.service-card p,
.case-card p,
.contact-strip p,
.plain-list li,
.contact-card p,
.timeline-card p,
.proof-card p {
  color: var(--graphite);
}

.intro-split {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  padding-top: calc(var(--section) + 16px);
}

.intro-split h2 {
  max-width: 760px;
  font-size: clamp(2.05rem, 3.2vw, 3.55rem);
}

.intro-copy {
  display: grid;
  gap: 20px;
  max-width: 620px;
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
  color: var(--gold-strong);
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(4.1em, auto) auto;
  min-width: 0;
  min-height: 410px;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-soft);
}

.contact-card::before,
.timeline-card::before {
  content: "";
  position: absolute;
  right: -62px;
  top: -62px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(201, 143, 49, 0.14);
}

.card-media {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 17px;
  background: var(--coal);
}

.service-card .card-number {
  margin-top: 6px;
}

.service-card .text-link {
  margin-top: auto;
}

.cta-ribbon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 10%, rgba(201, 143, 49, 0.2), transparent 20rem),
    var(--coal);
  color: #fff;
}

.cta-ribbon p {
  grid-column: 1 / -1;
  color: #f0bd63;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-ribbon h2 {
  color: #fff;
  font-size: clamp(2rem, 3.1vw, 3.5rem);
}

.case-grid,
.contact-grid,
.proof-grid,
.timeline-grid,
.deliverable-grid,
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card,
.contact-card,
.proof-card,
.timeline-card,
.deliverable-card,
.flow-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-soft);
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
  background: var(--coal);
}

.case-card>div,
.contact-card,
.proof-card,
.timeline-card,
.deliverable-card,
.flow-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.case-card h3,
.contact-card h3,
.proof-card h3,
.timeline-card h3,
.deliverable-card h3,
.flow-card h3 {
  color: var(--ink);
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(154, 103, 22, 0.55), transparent);
}

.process-flow li {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 230px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-soft);
  text-align: center;
}

.flow-index {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-strong);
  font-weight: 900;
}

.flow-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  place-items: center;
  border: 2px solid rgba(18, 17, 15, 0.72);
  border-radius: 50%;
  background: var(--gold);
}

.flow-icon img {
  width: 32px;
  height: 32px;
}

.process-flow h3 {
  margin-bottom: 10px;
}

.contact-strip {
  align-items: center;
}

.contact-strip h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding: 46px 0;
  background: var(--coal);
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, 0.56fr));
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.footer-brand,
.footer-col {
  display: grid;
  gap: 10px;
}

.footer-brand strong {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-col h2 {
  color: #f0bd63;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-inner a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-inner a:hover {
  color: #fff;
}

.page-hero {
  padding: clamp(56px, 7vw, 96px) 0;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.page-hero h1,
.redirect-panel h1 {
  color: #fff;
  font-size: clamp(2.05rem, 3.2vw, 3.25rem);
}

.page-hero .lede,
.redirect-panel .lede {
  color: rgba(255, 255, 255, 0.8);
}

.page-visual {
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: var(--coal-2);
}

.page-visual img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
}

.plain-list {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.page-hero .plain-list li {
  color: rgba(255, 255, 255, 0.82);
  border-bottom-color: var(--line-dark);
}

.bio-copy {
  display: grid;
  gap: 16px;
}

.split {
  grid-template-columns: minmax(330px, 0.46fr) minmax(0, 0.8fr);
}

.bio-copy h2 {
  max-width: 560px;
  font-size: clamp(2.2rem, 3.2vw, 3.65rem);
}

.journey-copy {
  display: grid;
  gap: 18px;
  max-width: 780px;
  color: var(--graphite);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.bio-copy .lede {
  margin-top: 0;
  color: var(--graphite);
}

.timeline-card {
  min-height: 210px;
}

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

.about-experience .section-head {
  margin-bottom: 34px;
}

.about-experience .section-head h2 {
  max-width: 740px;
  font-size: clamp(2rem, 3vw, 3.35rem);
}

.about-experience .service-card {
  min-height: 380px;
}

.about-experience .service-card h3 {
  min-height: 0;
  align-self: start;
}

.timeline-card>*,
.contact-card>* {
  position: relative;
  z-index: 1;
}

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

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

.proof-grid-rich .proof-card {
  min-width: 0;
  min-height: 250px;
  align-content: end;
  padding: clamp(20px, 2.3vw, 30px);
  background:
    radial-gradient(circle at 90% 0%, rgba(201, 143, 49, 0.18), transparent 9rem),
    var(--paper-soft);
}

.proof-grid-rich .proof-card-featured {
  grid-column: span 2;
  grid-row: span 2;
  background:
    radial-gradient(circle at 92% 8%, rgba(201, 143, 49, 0.34), transparent 12rem),
    linear-gradient(135deg, var(--coal), #0f0e0c);
}

.proof-card span {
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-grid-rich .proof-card-featured strong {
  color: #f0bd63;
  font-size: clamp(3rem, 5.1vw, 5.2rem);
}

.proof-grid-rich .proof-card-featured p {
  color: rgba(255, 255, 255, 0.84);
}

.proof-card strong,
.metric-number {
  display: block;
  color: var(--ink);
  max-width: 100%;
  overflow-wrap: normal;
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: 900;
  line-height: 0.96;
  white-space: nowrap;
}

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

.product-card {
  display: grid;
  min-width: 0;
  min-height: 460px;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper-soft);
}

.product-card-featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 143, 49, 0.2), transparent 15rem),
    var(--paper-soft);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 20px;
  background: var(--coal);
}

.product-copy {
  display: grid;
  gap: 10px;
}

.product-copy h3 {
  max-width: 540px;
  font-size: clamp(1.35rem, 1.65vw, 1.85rem);
}

.product-copy p {
  max-width: 560px;
  color: var(--graphite);
}

.offer-number {
  color: var(--gold-strong);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(18, 17, 15, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--graphite);
  font-size: 0.8rem;
  font-weight: 800;
}

.topic-rail {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  padding-bottom: 0;
}

.topic-card {
  display: grid;
  min-width: 0;
  min-height: 280px;
  align-content: end;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 143, 49, 0.18), transparent 10rem),
    var(--paper-soft);
}

.topic-card-featured {
  grid-row: span 2;
  min-width: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 143, 49, 0.28), transparent 15rem),
    linear-gradient(135deg, var(--coal), #0f0e0c);
  color: #fff;
}

.topic-card h3 {
  overflow-wrap: anywhere;
  font-size: clamp(1.32rem, 1.7vw, 1.75rem);
}

.topic-card span {
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.topic-card-featured span {
  color: #f0bd63;
}

.topic-card p {
  color: var(--graphite);
}

.topic-card-featured p {
  color: rgba(255, 255, 255, 0.78);
}

.topic-card-featured .text-link {
  color: #fff;
}

.topic-card .text-link {
  margin-top: 8px;
}

.post-list {
  display: grid;
  gap: 18px;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper-soft);
}

.post-card a {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  min-height: 300px;
  color: inherit;
  text-decoration: none;
}

.post-card figure {
  min-height: 100%;
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 143, 49, 0.24), transparent 13rem),
    var(--coal);
}

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

.post-card-content {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 40px);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-meta span {
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(154, 103, 22, 0.24);
  border-radius: 999px;
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card h3 {
  max-width: 720px;
  font-size: clamp(1.35rem, 1.8vw, 2.05rem);
}

.post-card p {
  max-width: 720px;
  color: var(--graphite);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
}

.post-card .text-link {
  margin-top: 4px;
}

.post-card a:hover .text-link,
.post-card a:focus-visible .text-link {
  color: var(--gold-strong);
}

.article-shell {
  width: min(880px, calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) 0;
}

.article-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold-strong);
  font-weight: 900;
  text-decoration: none;
}

.article-back::before {
  content: "<";
  margin-right: 8px;
}

.article-header {
  padding-bottom: clamp(28px, 5vw, 54px);
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  max-width: 780px;
  font-size: clamp(2.05rem, 3.8vw, 3.8rem);
}

.article-header .lede {
  max-width: 760px;
  margin-top: 20px;
  color: var(--graphite);
}

.article-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.article-meta-line span {
  padding: 8px 10px;
  border: 1px solid rgba(154, 103, 22, 0.24);
  border-radius: 999px;
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-body {
  display: grid;
  gap: 22px;
  padding-top: clamp(30px, 5vw, 56px);
  color: var(--graphite);
  font-size: clamp(1.03rem, 1.2vw, 1.18rem);
  line-height: 1.75;
}

.article-body h2 {
  margin-top: clamp(16px, 3vw, 34px);
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  padding-left: 1.25rem;
}

.article-body li::marker {
  color: var(--gold-strong);
  font-weight: 900;
}

.article-body blockquote {
  margin: 14px 0;
  padding: clamp(22px, 4vw, 34px);
  border-left: 6px solid var(--gold);
  border-radius: 0 22px 22px 0;
  background: var(--paper-soft);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.45;
}

.article-cta {
  display: grid;
  gap: 10px;
  margin-top: clamp(20px, 4vw, 42px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-soft);
}

.article-cta p {
  color: var(--ink);
  font-weight: 900;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-study-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 143, 49, 0.18), transparent 10rem),
    var(--paper-soft);
}

.case-study-grid h3 {
  margin-top: 48px;
  margin-bottom: 12px;
}

.case-flow {
  margin-top: 14px;
}

.deliverable-card {
  min-height: 220px;
  align-content: end;
  padding-top: 70px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 143, 49, 0.2), transparent 10rem),
    var(--paper-soft);
}

.deliverable-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 52px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.deliverable-card:nth-child(2n) {
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 45, 82, 0.12), transparent 10rem),
    var(--paper-soft);
}

.deliverable-card:nth-child(3n) {
  background:
    radial-gradient(circle at 100% 0%, rgba(23, 21, 18, 0.13), transparent 10rem),
    var(--paper-soft);
}

.deliverable-card:nth-child(3n)::before {
  background: #002d52;
}

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

.flow-card {
  min-height: 190px;
}

.simple-contact .section-head,
.compact-section .section-head {
  margin-bottom: 24px;
}

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

.contact-card {
  min-height: 190px;
}

.contact-card h3 {
  overflow-wrap: anywhere;
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
}

.contact-card .text-link {
  margin-top: 4px;
}

.redirect-panel {
  display: grid;
  min-height: 54vh;
  align-content: center;
  padding: var(--section) 0;
}

.back-to-top {
  position: fixed;
  right: max(18px, calc((100vw - var(--wide)) / 2 + 18px));
  bottom: 22px;
  z-index: 55;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: var(--coal);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 18px 42px rgba(18, 17, 15, 0.26);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--gold);
  color: var(--ink);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1120px) {

  .home-hero,
  .page-hero-inner,
  .section-heading,
  .section-head,
  .intro-split,
  .contact-strip,
  .split {
    grid-template-columns: 1fr;
  }

  .service-showcase,
  .metric-band,
  .case-grid,
  .contact-grid,
  .case-study-grid,
  .deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-grid,
  .proof-grid,
  .proof-grid-rich,
  .product-grid,
  .topic-rail,
  .footer-inner,
  .process-flow,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid-rich .proof-card-featured,
  .product-card-featured,
  .topic-card-featured {
    grid-column: span 2;
    grid-row: auto;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .post-card a {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .post-card img {
    min-height: 250px;
    aspect-ratio: 1.45;
  }

  .menu-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .site-nav {
    position: fixed;
    inset: 76px var(--gutter) auto;
    display: none;
    align-items: stretch;
    justify-content: stretch;
    padding: 22px;
    border: 1px solid var(--line-dark);
    border-radius: 24px;
    background: rgba(23, 21, 18, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  }

  .site-nav.is-open {
    display: grid;
  }
}

@media (max-width: 660px) {
  :root {
    --gutter: 16px;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }

  h2,
  .page-hero h1,
  .redirect-panel h1 {
    font-size: clamp(1.75rem, 8vw, 2.6rem);
  }

  .home-hero {
    min-height: auto;
    padding-top: 34px;
    gap: 28px;
  }

  .hero-portrait,
  .hero-portrait img {
    min-height: 390px;
  }

  .hero-portrait {
    border-radius: 22px;
  }

  .hero-portrait figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .metric-band,
  .service-showcase,
  .case-grid,
  .contact-grid,
  .case-study-grid,
  .timeline-grid,
  .deliverable-grid,
  .proof-grid,
  .proof-grid-rich,
  .product-grid,
  .topic-rail,
  .footer-inner,
  .process-flow,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid-rich .proof-card-featured,
  .product-card-featured,
  .topic-card-featured {
    grid-column: span 1;
  }

  .proof-grid-rich .proof-card,
  .product-card {
    min-height: auto;
  }

  .proof-card strong,
  .metric-number {
    white-space: normal;
  }

  .metric-band {
    margin-top: -24px;
  }

  .metric-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-band div:last-child {
    border-bottom: 0;
  }

  .process-flow::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-1px);
    background: linear-gradient(180deg, transparent, rgba(154, 103, 22, 0.48), transparent);
  }

  .cta-ribbon {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    border-radius: 22px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}
