:root {
  --charcoal: #15130F;
  --charcoal-2: #1E1A13;
  --cream: #FAF6EE;
  --cream-2: #F1EAD9;
  --ember: #FF5A1F;
  --ember-dark: #E8480F;
  --ink-muted-dark: #8C8779;
  --ink-muted-light: #726C5E;
  --line-dark: rgba(250, 246, 238, 0.14);
  --line-light: rgba(21, 19, 15, 0.12);
  --font-display: 'Anton', Impact, 'Arial Narrow', sans-serif;
  --font-accent: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

/* ---------- Typography & Utility with Breathing Room ---------- */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 36px;
  width: 100%;
}

.text-ember {
  color: var(--ember);
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.12);
  border: 1px solid rgba(255, 90, 31, 0.28);
  color: var(--ember);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  max-width: 100%;
}

.hero-pill {
  margin-bottom: 28px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseGreen 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ember);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--ember-dark);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background: transparent;
  border-color: var(--line-dark);
  color: var(--cream);
}

.btn-ghost-dark:hover {
  border-color: var(--ember);
  color: var(--ember);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  border-color: var(--line-light);
  color: var(--charcoal);
}

.btn-ghost-light:hover {
  border-color: var(--ember);
  color: var(--ember-dark);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(21, 19, 15, 0.0);
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
  max-width: 100vw;
}

header.scrolled {
  background: rgba(21, 19, 15, 0.94);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
  min-width: 0;
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.brand-word {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
}

.brand-word span {
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--ember);
  margin-top: 4px;
}

nav.links {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav.links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity .2s ease, color .2s ease;
}

nav.links a:hover {
  opacity: 1;
  color: var(--ember);
}

/* Hamburger & Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  padding: 8px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 120;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--cream);
  border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease, background-color .2s ease;
  transform-origin: center;
}

.nav-toggle:hover .bar {
  background-color: var(--ember);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
}

/* ---------- Hero Section (Spacious, Confident, Editorial) ---------- */
.hero {
  background: var(--charcoal);
  color: var(--cream);
  padding: 180px 0 130px;
  position: relative;
  overflow: hidden;
  max-width: 100vw;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 64px;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.4vw, 84px);
  line-height: 1.0;
  letter-spacing: 0.5px;
  margin: 0 0 28px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-copy h1 .highlight {
  color: var(--ember);
}

.hero-copy p.lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-muted-dark);
  max-width: 48ch;
  margin: 0 0 42px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-proof-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.avatars-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.avatar-chip {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--charcoal);
  margin-left: -8px;
  background-size: cover;
  background-position: center;
}

.avatar-chip:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 14px;
  color: var(--ink-muted-dark);
}

.proof-text strong {
  color: var(--cream);
}

/* Clean Hero Media Showcase with Zero Visual Clutter */
.hero-media-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.hero-media-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  background: var(--charcoal-2);
  width: 100%;
  transition: transform .3s ease;
}

.hero-media-card:hover {
  transform: translateY(-4px);
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 19, 15, 0.0) 0%, rgba(21, 19, 15, 0.6) 100%);
}

.hero-card-caption {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--charcoal-2);
  border-top: 1px solid var(--line-dark);
}

.caption-title {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--cream);
}

.caption-sub {
  font-size: 13px;
  color: var(--ink-muted-dark);
  margin-top: 2px;
}

/* ---------- Metrics Strip (Charcoal-2, Generous Breathing Room) ---------- */
.metrics-strip {
  background: var(--charcoal-2);
  color: var(--cream);
  padding: 64px 0;
  border-bottom: 1px solid var(--line-dark);
  max-width: 100vw;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.metric-item {
  text-align: left;
  border-left: 2px solid var(--ember);
  padding-left: 22px;
}

.metric-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  color: var(--cream);
  margin-bottom: 8px;
}

.metric-number span {
  color: var(--ember);
}

.metric-label {
  font-size: 14px;
  color: var(--ink-muted-dark);
  line-height: 1.5;
  margin: 0;
}

/* ---------- Positioning Strip (Cream-2, Airy) ---------- */
.strip {
  background: var(--cream-2);
  padding: 104px 0;
  border-bottom: 1px solid var(--line-light);
  max-width: 100vw;
}

.strip .wrap {
  max-width: 880px;
}

.strip p {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.35;
  letter-spacing: 0.2px;
  margin: 0;
  color: var(--charcoal);
  overflow-wrap: break-word;
  word-break: break-word;
}

.strip p em {
  font-style: normal;
  color: var(--ember-dark);
}

/* ---------- Section Shared (140px Padding for Luxury Negative Space) ---------- */
section {
  padding: 140px 0;
  max-width: 100vw;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  margin-bottom: 72px;
  align-items: end;
}

.section-head.center {
  text-align: center;
  display: block;
  max-width: 760px;
  margin: 0 auto 72px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.04;
  margin: 14px 0 0;
  color: var(--charcoal);
  overflow-wrap: break-word;
}

.section-head p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink-muted-light);
  max-width: 52ch;
  margin: 0;
}

/* ---------- Visual Portfolio Showcase (Cream, Clean Photography) ---------- */
.portfolio-section {
  background: var(--cream);
  border-bottom: 1px solid var(--line-light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.portfolio-card {
  position: relative;
  background: var(--cream-2);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--ember);
  box-shadow: 0 16px 36px rgba(21, 19, 15, 0.08);
}

.portfolio-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--charcoal-2);
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.04);
}

.portfolio-details {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.portfolio-category {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember-dark);
}

.portfolio-stat {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  color: var(--charcoal);
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
}

.portfolio-details h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0 0 12px;
  letter-spacing: 0.3px;
  color: var(--charcoal);
  overflow-wrap: break-word;
}

.portfolio-details p {
  font-size: 15.5px;
  color: var(--ink-muted-light);
  line-height: 1.65;
  margin: 0 0 24px;
}

.portfolio-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.portfolio-tag {
  font-size: 12.5px;
  color: var(--ink-muted-light);
  background: var(--cream);
  padding: 5px 12px;
  border-radius: 3px;
  border: 1px solid var(--line-light);
}

/* ---------- The 4-Step Revenue Engine (Cream-2) ---------- */
.process-section {
  background: var(--cream-2);
  border-bottom: 1px solid var(--line-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-card {
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 40px 32px;
  transition: transform .25s ease, border-color .25s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--ember);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--ember-dark);
  margin-bottom: 18px;
  line-height: 1;
}

.process-card h3 {
  font-family: var(--font-accent);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--charcoal);
  overflow-wrap: break-word;
}

.process-card p {
  font-size: 15px;
  color: var(--ink-muted-light);
  line-height: 1.65;
  margin: 0;
}

/* ---------- Interactive Calculator (Cream) ---------- */
.calculator-section {
  background: var(--cream);
  border-bottom: 1px solid var(--line-light);
}

.calc-box {
  background: var(--cream-2);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-width: 0;
}

.calc-slider-group {
  min-width: 0;
}

.calc-slider-group label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--charcoal);
  gap: 12px;
}

.calc-slider-group label span.val-display {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  color: var(--ember-dark);
  flex-shrink: 0;
}

.range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #DDD5C2;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 2px 8px rgba(255, 90, 31, 0.4);
  cursor: pointer;
  transition: transform .15s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-result-card {
  background: var(--charcoal);
  color: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  padding: 44px 36px;
  text-align: center;
  min-width: 0;
}

.calc-result-title {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted-dark);
  font-family: var(--font-accent);
  margin-bottom: 12px;
}

.calc-result-amount {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  color: var(--ember);
  line-height: 1;
  margin-bottom: 10px;
}

.calc-result-subtitle {
  font-size: 14px;
  color: var(--ink-muted-dark);
  margin-bottom: 26px;
  line-height: 1.6;
}

/* ---------- Services Section (Cream) ---------- */
.services {
  background: var(--cream);
  border-bottom: 1px solid var(--line-light);
}

.service-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  padding: 44px 0;
  border-top: 1px solid var(--line-light);
  align-items: baseline;
}

.service-row:last-child {
  border-bottom: 1px solid var(--line-light);
}

.service-row h3 {
  font-family: var(--font-display);
  font-size: 27px;
  margin: 0;
  letter-spacing: 0.3px;
  color: var(--charcoal);
  overflow-wrap: break-word;
}

.service-row p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-muted-light);
  max-width: 60ch;
  margin: 0;
}

/* ---------- About Founder Section (Dark Charcoal) ---------- */
.about {
  background: var(--charcoal);
  color: var(--cream);
  border-bottom: 1px solid var(--line-dark);
}

.about .wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.about-visual-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  width: 100%;
}

.about-visual-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(21, 19, 15, 0.95) 100%);
}

.about-copy p.big {
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.52;
  font-weight: 400;
  margin: 0 0 28px;
  color: var(--cream);
}

.about-copy p.big strong {
  color: var(--ember);
  font-weight: 600;
}

.about-copy p.body-sub {
  font-size: 16.5px;
  color: var(--ink-muted-dark);
  line-height: 1.72;
  margin-bottom: 34px;
}

.about-signoff {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.about-signoff .name {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 17px;
  color: var(--cream);
}

.about-signoff .role {
  font-size: 14px;
  color: var(--ink-muted-dark);
}

/* ---------- Pricing Section (Cream-2) ---------- */
.pricing {
  background: var(--cream-2);
  border-bottom: 1px solid var(--line-light);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.price-card {
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
}

.price-card.featured {
  border-color: var(--ember);
  border-width: 2px;
}

.price-card.featured::before {
  content: "Best for one location building momentum";
  position: absolute;
  top: -13px;
  left: 24px;
  max-width: calc(100% - 48px);
  background: var(--ember);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-name {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 6px 0 8px;
  color: var(--charcoal);
  overflow-wrap: break-word;
}

.price-for {
  font-size: 15px;
  color: var(--ink-muted-light);
  margin: 0 0 28px;
  min-height: 44px;
  line-height: 1.5;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  margin: 0 0 2px;
  color: var(--charcoal);
}

.price-amount sup {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  vertical-align: 7px;
  margin-right: 2px;
  color: var(--charcoal);
}

.price-cadence {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink-muted-light);
  margin: 0 0 32px;
}

.price-features {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  flex-grow: 1;
}

.price-features li {
  font-size: 15px;
  line-height: 1.6;
  padding: 12px 0;
  border-top: 1px solid var(--line-light);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-features li::before {
  content: "✓";
  color: var(--ember-dark);
  font-weight: bold;
}

.price-features li:first-child {
  border-top: none;
}

.price-note {
  text-align: center;
  font-size: 14.5px;
  color: var(--ink-muted-light);
  margin: 48px auto 0;
  max-width: 680px;
  line-height: 1.6;
}

/* ---------- FAQ Section (Cream) ---------- */
.faq-section {
  background: var(--cream);
  border-bottom: 1px solid var(--line-light);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--cream-2);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .2s ease;
}

.faq-item.active {
  border-color: var(--ember);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--charcoal);
  padding: 24px 32px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.faq-toggle-icon {
  font-size: 20px;
  color: var(--ember-dark);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--ink-muted-light);
  font-size: 16px;
  line-height: 1.7;
  padding: 0 32px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 32px 26px;
}

/* ---------- Contact / Free Audit (Cream) ---------- */
.contact {
  background: var(--cream);
}

.contact .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
}

.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.03;
  margin: 0 0 24px;
  color: var(--charcoal);
  overflow-wrap: break-word;
}

.contact-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-muted-light);
  max-width: 44ch;
  margin: 0 0 24px;
}

.contact-copy a.email {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--ember-dark);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.audit-perks {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audit-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-muted-light);
}

.audit-perk-item svg {
  color: var(--ember-dark);
  flex-shrink: 0;
}

form.contact-form {
  background: var(--cream-2);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink-muted-light);
}

input,
textarea,
select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: 3px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color .2s ease, background .2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--ember);
  background: #FFF;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  margin-top: 8px;
  align-self: flex-start;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ember-dark);
  margin-top: 8px;
}

.form-success.show {
  display: flex;
}

/* ---------- Footer (Dark Charcoal) ---------- */
footer {
  background: var(--charcoal);
  color: var(--ink-muted-dark);
  padding: 56px 0;
  border-top: 1px solid var(--line-dark);
  max-width: 100vw;
}

footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand svg {
  width: 26px;
  height: 26px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--cream);
  letter-spacing: 0.4px;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  opacity: 0.85;
  transition: color .2s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--ember);
}

/* ---------- Signature Scroll-Tied Badge ---------- */
.scroll-badge {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  z-index: 90;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}

.scroll-badge.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-badge-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--charcoal);
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.scroll-badge svg {
  width: 26px;
  height: 26px;
}

#scrollRotor {
  transform-origin: 120px 120px;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 900px) {
  .wrap {
    padding: 0 24px;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-media-showcase {
    order: -1;
    margin-bottom: 16px;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .calc-box {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 24px;
  }

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

  .about .wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .price-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .price-card.featured::before {
    left: 20px;
    max-width: calc(100% - 40px);
    font-size: 11px;
    padding: 3px 8px;
  }

  .contact .wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0;
  }

  /* Mobile Navigation Slide-Out */
  nav.links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .35s ease, visibility .35s ease;
    border-left: 1px solid var(--line-dark);
    z-index: 100;
  }

  nav.links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  nav.links a {
    font-size: 20px;
    opacity: 1;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 95;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
  }

  .nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  section {
    padding: 84px 0;
  }

  .strip {
    padding: 72px 0;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }

  .hero-copy p.lead {
    font-size: 16.5px;
    margin-bottom: 28px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 36px;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 14px 20px;
  }

  .hero-proof-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

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

  .calc-box {
    padding: 30px 18px;
  }

  form.contact-form {
    padding: 28px 20px;
  }

  .contact-form button {
    width: 100%;
  }

  .scroll-badge {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }

  .scroll-badge svg {
    width: 22px;
    height: 22px;
  }

  footer .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 380px) {
  .brand-word {
    font-size: 16px;
  }
  .brand-mark {
    width: 28px;
    height: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}