:root {
  color-scheme: light;
  --ink: #15201d;
  --muted: #5c6965;
  --line: #dfe6e2;
  --paper: #fbfbf8;
  --soft: #eef4f1;
  --teal: #0f766e;
  --amber: #b7791f;
  --wine: #7a2f44;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(21, 32, 29, .12);
  --strong-shadow: 0 32px 90px rgba(21, 32, 29, .18);
}

* { box-sizing: border-box; }

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, #fbfbf8 0, #f3f7f4 46rem, #fbfbf8 100%);
  color: var(--ink);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 32, 29, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 32, 29, .03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.45), transparent 36rem);
  content: "";
}

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

a:hover {
  color: var(--teal);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: .7rem 1rem;
  background: var(--ink);
  color: var(--white);
}

.skip:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(251, 251, 248, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header::before {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 1rem 0 0 var(--teal);
  content: "";
}

.brand {
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: 0;
  margin-right: auto;
}

.brand span { color: var(--teal); }

nav {
  display: flex;
  align-items: center;
  gap: clamp(.7rem, 2vw, 1.4rem);
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}

.site-header nav a {
  position: relative;
  padding: .35rem 0;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

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

.breadcrumb {
  padding: 1rem clamp(1rem, 4vw, 4rem) 0;
  color: var(--muted);
  font-size: .85rem;
}

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

.breadcrumb [aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 64vh;
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1rem, 4vw, 4rem);
  overflow: hidden;
}

.hero:not(.hero-home) {
  background:
    linear-gradient(135deg, rgba(238, 244, 241, .95), rgba(251, 251, 248, .96) 48%, rgba(255, 255, 255, .9)),
    radial-gradient(circle at 82% 26%, rgba(183, 121, 31, .14), transparent 32rem);
  border-bottom: 1px solid var(--line);
}

.hero-home {
  background:
    linear-gradient(90deg, rgba(251, 251, 248, .98) 0%, rgba(251, 251, 248, .9) 42%, rgba(251, 251, 248, .26) 74%),
    var(--soft);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: .98;
  letter-spacing: 0;
  max-width: 13ch;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 .65rem;
  font-size: 1.08rem;
  line-height: 1.2;
}

.lead {
  max-width: 42rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(21, 32, 29, .18);
}

.button.ghost {
  background: rgba(255, 255, 255, .7);
}

.hero-media {
  width: min(58vw, 48rem);
  height: auto;
  max-width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-home .hero-media {
  transform: rotate(.4deg);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 34px 90px rgba(21, 32, 29, .2);
}

.intent-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(244, 247, 245, .96));
  box-shadow: var(--strong-shadow);
}

.expert-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intent-card strong,
.intent-card span,
.intent-card small {
  display: block;
}

.intent-card strong {
  color: var(--amber);
  font-size: .82rem;
  text-transform: uppercase;
}

.intent-card span {
  margin: .8rem 0;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 850;
  line-height: 1.05;
}

.intent-card small {
  color: var(--muted);
  font-size: 1rem;
}

.expert-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  margin: 1.3rem 0 0;
}

.expert-card dl div {
  padding: .75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .72);
}

.expert-card dt {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.expert-card dd {
  margin: .15rem 0 0;
  color: var(--ink);
  font-weight: 850;
}

.band,
.split,
.article,
.faq,
.contact-panel,
.topic-map {
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.human-note {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 4rem);
  background: #15201d;
  color: var(--white);
}

.human-note h2 {
  max-width: 15ch;
  color: var(--white);
}

.note-card {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  box-shadow: 0 32px 90px rgba(0, 0, 0, .18);
}

.note-card::before {
  position: absolute;
  top: 1.15rem;
  right: 1.2rem;
  color: rgba(232, 195, 125, .72);
  font-size: 3.4rem;
  line-height: 1;
  content: "“";
}

.note-card p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.note-card span {
  display: block;
  margin-top: 1.4rem;
  color: #e8c37d;
  font-weight: 850;
}

.signature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signature-strip span {
  min-height: 8rem;
  padding: 1.15rem;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 850;
}

.signature-strip strong {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--amber);
  font-size: .78rem;
  letter-spacing: .08em;
}

.section-head {
  max-width: 62rem;
  margin-bottom: 1.35rem;
}

.section-head h2 {
  max-width: 16ch;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.topic-map {
  background: #f4f7f5;
  border-top: 1px solid var(--line);
}

.topic-head {
  max-width: 54rem;
  margin-bottom: 1.5rem;
}

.topic-head p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.topic-card {
  min-height: 100%;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.topic-card p {
  color: var(--muted);
  font-size: .95rem;
}

.topic-card ul {
  display: grid;
  gap: .6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.topic-card a {
  display: block;
  padding: .65rem .75rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--paper);
  font-weight: 800;
  line-height: 1.25;
}

.topic-card a[aria-current="page"] {
  border-color: rgba(15, 118, 110, .5);
  background: rgba(15, 118, 110, .08);
  color: var(--teal);
}

.card {
  display: block;
  height: 100%;
  min-height: 12rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card h3::after,
.mini h3::after,
.process-step h3::after {
  display: block;
  width: 2.2rem;
  height: 2px;
  margin-top: .7rem;
  background: var(--amber);
  content: "";
}

a.card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, .45);
  box-shadow: 0 16px 45px rgba(21, 32, 29, .08);
}

.card p,
.article p,
.split p,
footer p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, .7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.diagnostic-board {
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 4rem);
  background:
    linear-gradient(180deg, #f9fbf9, #eef4f1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.signal {
  position: relative;
  min-height: 14rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 45px rgba(21, 32, 29, .06);
}

.signal::before {
  display: block;
  width: .55rem;
  height: .55rem;
  margin-bottom: 2.2rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 1rem 0 0 var(--amber), 2rem 0 0 rgba(122, 47, 68, .75);
  content: "";
}

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

.founder-split {
  background: var(--white);
}

.pricing-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .55fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 4rem);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-intro h2 {
  max-width: 16ch;
}

.pricing-intro p:not(.eyebrow) {
  max-width: 58rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.proof-rail {
  display: grid;
  gap: .75rem;
  align-content: start;
}

.proof-rail span {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: .8rem;
  align-items: center;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 820;
}

.proof-rail strong {
  color: var(--amber);
  font-size: .82rem;
  letter-spacing: .08em;
}

.pricing-band,
.deliverables {
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.pricing-band {
  background:
    linear-gradient(180deg, #14201d 0%, #1d2d29 100%);
  color: var(--white);
}

.pricing-band .eyebrow,
.pricing-band .section-head h2 {
  color: var(--white);
}

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

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 31rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .18);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .1);
  color: var(--white);
}

.offer-card.featured {
  border-color: rgba(183, 121, 31, .8);
  background:
    linear-gradient(180deg, rgba(183, 121, 31, .22), rgba(255, 255, 255, .08));
}

.offer-kicker {
  color: #e8c37d;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin-top: 1.2rem;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.offer-card strong {
  color: #f4efe4;
  font-size: 1rem;
}

.offer-card p {
  color: rgba(255, 255, 255, .78);
}

.offer-card ul {
  display: grid;
  gap: .55rem;
  margin: 1rem 0 1.2rem;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, .9);
}

.offer-card li::before {
  position: absolute;
  left: 0;
  color: #e8c37d;
  content: "•";
}

.offer-link {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #e8c37d;
  font-weight: 850;
}

.premium-split {
  background: var(--paper);
}

.metric-panel {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.metric-panel > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--wine);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.metric-panel dl {
  display: grid;
  gap: .8rem;
  margin: 0;
}

.metric-panel dl div {
  padding: .85rem 0;
  border-top: 1px solid var(--line);
}

.metric-panel dt {
  font-weight: 850;
}

.metric-panel dd {
  margin: .1rem 0 0;
  color: var(--muted);
}

.deliverables {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.mini {
  min-height: 13rem;
  padding: 1.15rem;
  border-top: 4px solid var(--teal);
  background: var(--paper);
}

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

.decision-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 4rem);
  background: #f8efe3;
  border-top: 1px solid #ead9c2;
  border-bottom: 1px solid #ead9c2;
}

.decision-band div {
  max-width: 56rem;
}

.decision-band p:not(.eyebrow) {
  color: #5f5141;
  font-size: 1.08rem;
}

.checklist {
  display: grid;
  gap: .65rem;
}

.checklist span {
  padding: .85rem 1rem;
  border-left: 4px solid var(--teal);
  background: var(--white);
  font-weight: 800;
}

.article {
  max-width: 58rem;
  margin: 0 auto;
}

.article h2 + p {
  font-size: 1.08rem;
}

.article-expert {
  max-width: 64rem;
}

.article-brief {
  margin: 0 0 2rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(21, 32, 29, .06);
}

.article-brief span,
.article-next span {
  display: block;
  margin-bottom: .55rem;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-brief p {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 760;
}

.article-sections {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.article-sections section {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.article-next {
  margin-top: 2.4rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, .13), rgba(183, 121, 31, .12)),
    var(--white);
  border: 1px solid var(--line);
}

.article-next h2 {
  max-width: 16ch;
}

.article-next p {
  max-width: 46rem;
}

.faq {
  max-width: 58rem;
  margin: 0 auto;
}

details {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 850;
}

.contact-panel {
  max-width: 48rem;
  margin: 0 auto;
}

.contact-studio {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(20rem, .82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 4rem);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .88), rgba(244, 247, 245, .96)),
    var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-copy {
  position: sticky;
  top: 6rem;
}

.contact-copy h2 {
  max-width: 14ch;
}

.contact-copy p:not(.eyebrow) {
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.contact-signals {
  display: grid;
  gap: .75rem;
  margin-top: 1.6rem;
}

.contact-signals span {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: .9rem;
  align-items: center;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 850;
}

.contact-signals strong {
  color: var(--amber);
  letter-spacing: .08em;
}

.contact-form {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--strong-shadow);
}

.form-head {
  margin-bottom: .6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.form-head span {
  display: block;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-head p {
  margin: .35rem 0 0;
  color: var(--muted);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: .35rem;
  color: var(--muted);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus,
select:focus,
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(15, 118, 110, .22);
  outline-offset: 3px;
}

.process-band {
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 4rem);
  background: var(--paper);
}

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

.process-step {
  position: relative;
  min-height: 14rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-step::before {
  counter-increment: process;
  content: "0" counter(process);
  display: block;
  margin-bottom: 2.2rem;
  color: var(--amber);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.process-step p {
  color: var(--muted);
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #14201d;
}

.credibility-strip span {
  min-height: 6rem;
  padding: 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .84);
  font-weight: 850;
}

.site-footer {
  scroll-margin-top: 5.5rem;
  background: #111b18;
  color: var(--white);
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 4vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, .28), rgba(122, 47, 68, .18)),
    #14201d;
}

.footer-cta div {
  max-width: 62rem;
}

.footer-cta h2 {
  max-width: 18ch;
  color: var(--white);
}

.footer-cta p:not(.eyebrow) {
  max-width: 58rem;
  color: rgba(255, 255, 255, .74);
  font-size: 1.08rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(16rem, .7fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 4vw, 4rem);
}

.footer-brand {
  max-width: 32rem;
}

.footer-brand .brand {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, .72);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.4rem;
}

.footer-badges span {
  padding: .5rem .65rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .84);
  font-size: .82rem;
  font-weight: 800;
}

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

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

.site-footer nav h3 {
  margin-bottom: .6rem;
  color: #e8c37d;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer nav a {
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
  line-height: 1.3;
}

.site-footer nav a:hover {
  color: var(--white);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .64);
}

.footer-meta div {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}

.footer-meta strong {
  color: var(--white);
}

.footer-meta nav {
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
  gap: .85rem;
}

@media (max-width: 880px) {
  .site-header,
  .footer-cta,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split,
  .pricing-intro,
  .contact-studio,
  .human-note {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    width: 100%;
  }

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

  .topic-grid,
  .footer-main,
  .offer-grid,
  .deliverable-grid,
  .process-grid,
  .credibility-strip,
  .board-grid,
  .signature-strip {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

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

  .decision-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.4rem;
  }

  .button {
    width: 100%;
  }

  .expert-card dl {
    grid-template-columns: 1fr;
  }

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

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