:root {
  --bg: #f4eee6;
  --surface: #fbf7f1;
  --surface-strong: #e8dccb;
  --ink: #171310;
  --muted: #676055;
  --accent: #c7a15a;
  --accent-soft: rgba(199, 161, 90, 0.15);
  --line: rgba(23, 19, 16, 0.12);
  --white: #fffdf9;
  --dark: #221e1a;
  --dark-soft: #2b2520;
  --shadow: 0 12px 28px rgba(23, 19, 16, 0.05);
  --hero-overlay: linear-gradient(110deg, rgba(17, 15, 13, 0.9) 0%, rgba(17, 15, 13, 0.62) 50%, rgba(17, 15, 13, 0.24) 100%);
  --radius-lg: 12px;
  --radius-md: 6px;
  --radius-sm: 4px;
  --max: 1180px;
  --nav-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

code {
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
  background: rgba(23, 21, 19, 0.08);
  font-size: 0.9em;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-height);
  background: rgba(29, 24, 20, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(29, 24, 20, 0.98);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(23, 19, 16, 0.16);
}

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

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.84rem;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--white);
}

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

.brand-note {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 253, 249, 0.72);
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-current,
.mobile-panel a.is-current {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.2rem;
  border-radius: 2px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  transform: translateY(0);
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: var(--nav-height) 16px auto;
  z-index: 35;
  padding: 22px;
  border-radius: 28px;
  background: rgba(34, 30, 26, 0.98);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-panel a {
  padding: 0.6rem 0;
  color: rgba(255, 253, 249, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-panel a:last-child {
  border-bottom: 0;
}

.button-row,
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.98rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.button-primary {
  background: var(--accent);
  color: var(--dark);
}

.button-secondary {
  border: 1px solid rgba(23, 19, 16, 0.15);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

.button-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(199, 161, 90, 0.7);
}

.eyebrow-dark {
  color: var(--accent);
}

.eyebrow-dark::before,
.kicker-gold::before {
  background: rgba(199, 161, 90, 0.72);
}

.page-hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: stretch;
  overflow: clip;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, rgba(18, 16, 14, 0.56), transparent 40%);
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.72fr);
  gap: 44px;
  align-items: end;
}

.hero-copy {
  max-width: 700px;
}

.hero-copy h1,
.intro h1 {
  margin: 18px 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--white);
}

.hero-copy p {
  max-width: 600px;
  font-size: 1.12rem;
  color: rgba(255, 253, 249, 0.82);
  margin: 0 0 30px;
}

.hero-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(250, 245, 237, 0.14);
  border: 1px solid rgba(255, 253, 249, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  color: var(--white);
}

.hero-panel-title {
  margin: 0 0 18px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 253, 249, 0.72);
}

.hero-panel ul {
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-panel li {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.14);
}

.hero-panel li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-panel strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.hero-panel span {
  color: rgba(255, 253, 249, 0.76);
  font-size: 0.95rem;
}

.intro {
  padding: 112px 0 28px;
}

.intro h1 {
  color: var(--ink);
  margin-top: 0;
}

.intro p {
  max-width: 720px;
  font-size: 1.1rem;
  color: var(--muted);
}

.content-block,
.split-feature,
.stat-band,
.cta-band,
.section,
.footer-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(239, 227, 210, 0.52), rgba(251, 247, 241, 0));
}

.section-light {
  background: rgba(251, 247, 241, 0.32);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark .section-intro,
.section-dark .content-block h2,
.section-dark .kicker,
.section-dark .cta-copy p,
.section-dark .footer-tag {
  color: rgba(255, 253, 249, 0.76);
}

.section h2,
.content-block h2,
.split-copy h2,
.cta-copy h2,
.hero-shell__copy h1,
.band-inner h2 {
  margin: 0 0 18px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.hero-shell__copy h1 {
  max-width: 860px;
  font-size: clamp(4.1rem, 7.2vw, 6.6rem);
}

.band-inner h2 {
  font-size: clamp(2.9rem, 4.8vw, 4.8rem);
  max-width: 780px;
}

.section-intro,
.split-copy p,
.offer-copy p,
.cta-copy p,
.card p,
.list-column p,
.process-item p,
.price-card p,
.audit-notice p,
.footer-tag {
  color: var(--muted);
}

.hero-shell {
  padding: 42px 0 100px;
}

.hero-shell--center .hero-shell__inner {
  grid-template-columns: 1fr;
}

.hero-shell--center .hero-shell__copy {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 0 22px;
  text-align: center;
}

.hero-shell--center .hero-lede {
  margin-left: auto;
  margin-right: auto;
}

.hero-shell--center .hero-actions {
  justify-content: center;
}

.hero-shell__inner,
.band-inner,
.cta-slab {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero-shell__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero-shell__copy {
  padding: 38px 0 18px;
}

.hero-shell__copy h1 {
  margin-top: 14px;
}

.hero-lede {
  max-width: 640px;
  margin: 0 0 30px;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-shell__panel {
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: var(--white);
  padding: 28px;
  display: grid;
  align-content: center;
}

.panel-label,
.service-board__title,
.niche-label,
.offer-index {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.panel-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 18px;
}

.panel-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.panel-list span {
  color: rgba(255, 253, 249, 0.56);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.panel-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.panel-list p {
  margin: 0;
  color: rgba(255, 253, 249, 0.74);
}

.statement-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 110px;
}

.band-inner {
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
}

.band-inner h2 {
  max-width: 780px;
}

.band-copy {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

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

.signal-card {
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.signal-card strong {
  display: block;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.signal-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.offer-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.offer-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
}

.offer-card h3,
.niche-card h3,
.hero-shell__copy h1,
.cta-copy h2 {
  font-weight: 800;
}

.offer-card h3,
.niche-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
}

.section-dark .service-board {
  margin-top: 44px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-board__list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.service-board__list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.service-board__list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-board__note {
  margin: 18px 0 0;
  max-width: 700px;
  color: rgba(255, 253, 249, 0.72);
}

.niche-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.niche-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--dark);
  color: var(--white);
  border-color: rgba(23, 19, 16, 0.18);
}

.niche-card--featured {
  background: var(--dark);
  border-color: rgba(199, 161, 90, 0.35);
}

.niche-card p:last-child {
  margin-bottom: 0;
}

.niche-card p {
  color: rgba(255, 253, 249, 0.72);
}

.kicker-gold {
  color: var(--accent);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: rgba(23, 19, 16, 0.28);
}

.section-dark .kicker::before {
  background: rgba(255, 253, 249, 0.34);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: start;
}

.list-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.list-column {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.list-column h3,
.offer-copy h3,
.price-card h3,
.card h3,
.process-item h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.list-column ul,
.offer-copy ul,
.process-list,
.bullet-list,
.price-card ul,
.audit-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list,
.offer-copy ul,
.price-card ul,
.audit-list {
  display: grid;
  gap: 12px;
}

.bullet-list li,
.offer-copy li,
.price-card li,
.audit-list li {
  position: relative;
  padding-left: 18px;
}

.bullet-list li::before,
.offer-copy li::before,
.price-card li::before,
.audit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.impact-grid,
.price-grid,
.spotlight-grid,
.process-grid,
.audit-grid,
.service-stack-grid,
.service-detail-grid {
  display: grid;
  gap: 24px;
}

.impact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
}

.service-stack-grid {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  margin-top: 42px;
}

.service-stack-board {
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}

.service-stack-board p {
  margin: 0 0 18px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-stack-board ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.service-stack-board li {
  padding: 12px 0;
  border-top: 1px solid rgba(23, 21, 19, 0.08);
  color: var(--ink);
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.service-stack-copy {
  display: grid;
  align-content: center;
  gap: 20px;
}

.service-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.service-detail-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
}

.service-detail-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.service-label {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.agent-meta {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.agent-meta strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.agent-meta p,
.agent-meta ul {
  margin: 0;
}

.agent-meta ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 7px;
  color: var(--muted);
}

.agent-meta li {
  position: relative;
  padding-left: 16px;
}

.agent-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.template-card {
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
}

.template-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

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

.template-card .button {
  margin-top: 16px;
}

.card,
.price-card,
.process-item,
.audit-notice,
.timeline-panel {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
}

.card,
.process-item,
.audit-notice,
.timeline-panel {
  padding: 28px;
}

.card-number,
.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 38px;
  align-items: stretch;
}

.split-visual {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: clip;
  box-shadow: var(--shadow);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-visual::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 1px;
  background: rgba(255, 253, 249, 0.32);
}

.split-copy {
  padding: 30px 0;
}

.split-copy .kicker {
  color: var(--accent);
}

.kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.spotlight-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
}

.spotlight-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: var(--white);
}

.spotlight-panel p,
.spotlight-panel li {
  color: rgba(255, 253, 249, 0.8);
}

.spotlight-panel ul {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.spotlight-panel li {
  border-top: 1px solid rgba(255, 253, 249, 0.12);
  padding-top: 12px;
}

.spotlight-image {
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: clip;
  box-shadow: var(--shadow);
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 46px;
}

.stat-band {
  padding: 96px 0 84px;
}

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

.stat-tile {
  padding: 28px;
  border-top: 1px solid var(--line);
}

.stat-tile strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 3.4vw, 3.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.stat-tile span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-panel h3 {
  margin: 0 0 10px;
}

.timeline-panel p {
  margin: 0;
}

.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.price-card {
  padding: 30px;
}

.price-card.featured {
  background: rgba(199, 161, 90, 0.08);
  border-color: rgba(199, 161, 90, 0.32);
}

.price-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 0.36rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.7rem, 3.4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.price small {
  font-size: 1rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.cta-band {
  padding: 0 0 110px;
}

.cta-slab {
  border-radius: calc(var(--radius-lg) + 6px);
  background: var(--dark);
  color: var(--white);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.cta-copy p {
  max-width: 580px;
  color: rgba(255, 253, 249, 0.76);
}

.site-footer {
  padding: 0 0 56px;
  background: var(--dark);
  color: var(--white);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 253, 249, 0.72);
}

.footer-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.site-footer .brand-mark,
.site-footer .footer-tag {
  color: var(--white);
}

.site-footer .brand-mark span {
  color: var(--accent);
}

.audit-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

.audit-form {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.88rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.98rem 1rem;
  border-radius: 2px;
  border: 1px solid rgba(23, 21, 19, 0.14);
  background: var(--white);
  color: var(--ink);
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(199, 161, 90, 0.18);
  border-color: rgba(199, 161, 90, 0.36);
}

.form-note,
.form-feedback {
  font-size: 0.92rem;
  color: var(--muted);
}

.form-feedback {
  min-height: 1.4em;
}

.minimal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.minimal-links a {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .editorial-grid,
  .split-feature,
  .spotlight-grid,
  .audit-grid,
  .cta-slab,
  .service-stack-grid,
  .hero-shell__inner,
  .offer-grid,
  .niche-grid,
  .signal-row {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .process-grid,
  .price-grid,
  .stat-grid,
  .list-columns,
  .service-detail-grid,
  .template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-visual,
  .spotlight-image {
    min-height: 440px;
  }

  .hero-shell__panel {
    order: 2;
  }

  .hero-shell__copy {
    padding-top: 24px;
  }
}

@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }

  .nav-wrap,
  .content-block,
  .split-feature,
  .stat-band,
  .cta-band,
  .section,
  .footer-wrap,
  .hero-shell__inner,
  .band-inner,
  .cta-slab {
    width: min(var(--max), calc(100% - 24px));
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
  }

  .mobile-panel {
    inset: var(--nav-height) 12px auto;
    text-align: center;
  }

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

  .hero-grid {
    padding: 42px 0 32px;
    gap: 24px;
  }

  .hero-copy h1,
  .intro h1,
  .hero-shell__copy h1 {
    font-size: clamp(2.9rem, 14vw, 4.4rem);
    line-height: 0.98;
  }

  .section h2,
  .content-block h2,
  .split-copy h2,
  .cta-copy h2,
  .band-inner h2 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .hero-copy p,
  .intro p {
    font-size: 1rem;
  }

  .section,
  .intro,
  .stat-band,
  .hero-shell,
  .statement-band {
    padding: 74px 0;
  }

  .cta-band {
    padding-bottom: 78px;
  }

  .impact-grid,
  .process-grid,
  .price-grid,
  .stat-grid,
  .list-columns,
  .form-row,
  .service-detail-grid,
  .template-grid,
  .offer-grid,
  .niche-grid,
  .signal-row {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .process-grid,
  .price-grid,
  .stat-grid,
  .list-columns,
  .form-row,
  .service-detail-grid,
  .template-grid,
  .offer-grid,
  .niche-grid,
  .signal-row {
    gap: 16px;
  }

  .cta-slab,
  .card,
  .process-item,
  .price-card,
  .hero-panel,
  .audit-notice,
  .timeline-panel {
    padding: 24px;
  }

  .split-visual,
  .spotlight-image {
    min-height: 360px;
  }

  .hero-shell__copy,
  .band-inner,
  .intro .content-block,
  .editorial-grid > div,
  .split-copy,
  .cta-copy,
  .stat-tile,
  .signal-card,
  .list-column,
  .footer-wrap {
    text-align: center;
  }

  .hero-shell__panel,
  .service-stack-board,
  .service-detail-card,
  .template-card,
  .service-board,
  .offer-card,
  .niche-card,
  .audit-form {
    padding: 22px;
  }

  .band-inner {
    padding-top: 28px;
  }

  .hero-actions,
  .cta-actions,
  .minimal-links,
  .footer-links {
    justify-content: center;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
    max-width: 320px;
  }

  .hero-lede,
  .band-copy,
  .service-board__note,
  .section-intro,
  .split-copy p,
  .cta-copy p {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .audit-grid > div:first-child {
    text-align: center;
  }

  .audit-grid > div:first-child .audit-list {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-wrap {
    justify-content: center;
  }

  .site-header {
    height: 72px;
  }

  :root {
    --nav-height: 72px;
  }
}
