/* =========================================================
   ROMANESCO GROUP — Landing Page
   Rebuilt to match the live Elementor build exactly
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,300;6..72,400&family=Inter:wght@300;400;500;600;700&family=Inter+Tight:wght@300;400;500&display=swap');

/* ── Design tokens (from Elementor globals) ─────────────── */
:root {
  --green-dark:   #354634;   /* 87d124e — buttons, dark sections */
  --green-hover:  #395F37;
  --ink:          #21251F;   /* primary — headings/text on light */
  --cream:        #FAF8F3;   /* secondary / 61bffd0 — page + section bg */
  --cream-card:   #FFFEFB;   /* services section bg */
  --cream-soft:   #FFFAF5;   /* light text on dark */
  --cream-65:     rgba(255,250,245,0.58);
  --cream-ab:     rgba(255,250,245,0.67); /* hero body */
  --cream-9e:     rgba(255,250,245,0.62); /* card body on dark */
  --gray-text:    #525252;   /* problem intro */
  --line:         rgba(0,0,0,0.13);   /* #00000021 borders */
  --line-soft:    rgba(53,70,52,0.16);
  --divider:      #5E7F5C;
  --accent-green: #09AA00;
  --cta-box:      #B8B09C;

  --font-serif: 'Newsreader', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-tight: 'Inter Tight', 'Inter', sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);

  --img: https://nonso.com.ng/wp-content/uploads/2026/06;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Layout primitives ──────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}
.section { padding: 80px 0; }

/* ── Shared atoms ───────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-tight);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}
.eyebrow--light { color: var(--cream-65); }

.h-serif {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  color: #000;
  margin-top: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  background: var(--green-dark);
  color: var(--cream-soft);
  padding: 20px 15px;
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(53,70,52,0.18);
  transition: background 0.2s, transform 0.15s;
}
.btn { position: relative; overflow: hidden; z-index: 0; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--divider);          /* lighter green wipe */
  transform: translateX(101%);          /* parked off the right edge */
  transition: transform .45s var(--ease);
}
.btn:hover::before { transform: translateX(0); }   /* sweeps right → left */
.btn:hover { transform: translateY(-1px); }
.btn--cream { background: var(--cream-soft); color: var(--green-dark); }
.btn--cream::before { background: #ece6da; }
.btn .arr {
  display: inline-block;
  margin-left: 8px;
  transition: transform .35s var(--ease);
}
.btn:hover .arr { transform: translateX(4px); }

.divider-line {
  width: 71px;
  height: 1px;
  background: var(--divider);
  border: 0;
}

/* Reveal on scroll */
.reveal-in { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal-in.visible { opacity: 1; transform: none; }

/* ─────────────────────────────────────────────────────────
   1. HEADER
   ───────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(33,37,31,0.07); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav__logo { width: 253px; height: auto; }

/* ─────────────────────────────────────────────────────────
   2. HERO
   ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: #2c3a2b;
  overflow: hidden;
  padding: 100px 0;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(40,52,38,0.62) 0%, rgba(40,52,38,0.84) 100%);
}
.hero__orb {
  position: absolute;
  top: 8%;
  right: 2%;
  width: 46%;
  max-width: 620px;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}
.hero__orb #spiral {
  width: 100%;
  height: auto;
  overflow: visible;
}
.spiral-glow {
  position: absolute;
  inset: 6%;
  background: radial-gradient(circle, rgba(94,127,92,0.30), transparent 62%);
  filter: blur(26px);
  z-index: -1;
}
.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
}
.hero__col {
  width: 51.9%;
}
.hero__eyebrow {
  font-family: var(--font-tight);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-65);
  margin-bottom: 26px;
}
.hero__headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.1;
  color: var(--cream-soft);
  margin-bottom: 28px;
}
.hero__body {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--cream-ab);
  max-width: 560px;
  margin-bottom: 28px;
}

/* ─────────────────────────────────────────────────────────
   3. MARQUEE
   ───────────────────────────────────────────────────────── */
.marquee-sec { background: var(--cream); padding: 20px 0; }
.marquee-full { width: 100%; }
.marquee-label {
  font-family: var(--font-sans);
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 18px;
}
.marquee {
  display: flex;
  overflow: hidden;
  gap: 0;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee:hover .marquee__group { animation-play-state: paused; }
.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 60s linear infinite reverse;
}
.marquee__group span {
  font-family: var(--font-tight);
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--ink);
  padding: 0 26px;
  position: relative;
}
.marquee__group span::after {
  content: "\25C6";            /* ◆ */
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--divider);
  font-size: 7px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ─────────────────────────────────────────────────────────
   4. PROBLEM
   ───────────────────────────────────────────────────────── */
.problem {
  position: relative;
  background: var(--cream);
  padding: 80px 0 70px;
  overflow: hidden;
}
.problem::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 640px;
  height: 430px;
  max-width: 55%;
  background: url('../assets/fading-arrow.png') no-repeat left bottom;
  background-size: contain;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
.problem > .container { position: relative; z-index: 1; }
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.problem__heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  color: #000;
  margin-top: 14px;
}
.problem__intro {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 18px;
}
.problem__sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 28px;
}
.problem__list { display: flex; flex-direction: column; }
.problem__item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 8px;
  align-items: center;
  border-top: 1px solid var(--line-soft);
  padding: 16px 8px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  transition: background .3s var(--ease), padding-left .3s var(--ease);
}
.problem__item:hover {
  background: rgba(53,70,52,0.07);
  padding-left: 18px;
}
.problem__num { color: var(--ink); }
.problem__item .tick {
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--line-soft);
  border-radius: 50%;
  transition: .3s var(--ease);
}
.problem__item:hover .tick {
  background: var(--divider);
  border-color: var(--divider);
  box-shadow: 0 0 0 4px rgba(94,127,92,0.16);
}

/* ─────────────────────────────────────────────────────────
   5. SERVICES (What Romanesco Does)
   ───────────────────────────────────────────────────────── */
.services { background: var(--cream-card); padding: 80px 0; }
.services__head { margin-bottom: 40px; max-width: 760px; }
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-card {
  position: relative;
  border: 1px solid var(--line);
  padding: 50px;
  transition: background .35s var(--ease);
}
.service-card:hover { background: var(--cream-card); }
.service-card .bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--green-dark);
  transition: height .4s var(--ease);
}
.service-card:hover .bar { height: 100%; }
.service-card__num {
  font-family: var(--font-tight);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.service-card__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 27px;
  line-height: 1.15;
  color: #000;
  margin-bottom: 16px;
}
.service-card__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
}

/* ─────────────────────────────────────────────────────────
   6. HOW IT WORKS
   ───────────────────────────────────────────────────────── */
.how { background: var(--cream-card); padding: 80px 0; }
.how__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}
.how__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.step-card--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(20,28,18,0) 35%, rgba(20,28,18,0.55) 100%);
}
/* Fixed top spacer keeps every card's divider + title at the same Y,
   sized so the content block sits toward the bottom of each card */
.step-card__body { position: relative; z-index: 1; padding: 360px 22px 30px; }
.step-card .divider-line { width: 71%; margin-bottom: 14px; }
.step-card__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 27px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.step-card__desc { font-size: 15px; font-weight: 300; line-height: 1.55; }
/* dark cards (1 & 3) */
.step-card--dark { background-image: url('../assets/bg-a.png'); }
.step-card--dark .step-card__title { color: var(--cream-soft); }
.step-card--dark .step-card__desc  { color: var(--cream-9e); }
/* light cards (2 & 4) */
.step-card--light { background-image: url('../assets/bg-2.png'); }
.step-card--light .step-card__title { color: var(--ink); }
.step-card--light .step-card__desc  { color: var(--ink); }
.step-card__texture {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}

/* ─────────────────────────────────────────────────────────
   7. WHAT YOU RECEIVE / mockup
   ───────────────────────────────────────────────────────── */
.receive { background: var(--cream); padding: 80px 0 0; }
.receive__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 56px;
}
.receive__bold {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--gray-text);
  margin-bottom: 16px;
}
.receive__sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
}
.receive__mockup-wrap { text-align: center; }
.receive__doc {
  width: 100%;
  max-width: 640px;
  margin: 0 auto -84px;
  position: relative;
  z-index: 2;
  text-align: left;
}

/* Coded assessment report card (replaces the mockup image) */
.doc-frame {
  position: relative;
  background: linear-gradient(160deg, #2c3a2b, #1c2a1b);
  padding: 34px;
  border: 1px solid rgba(250,248,243,0.12);
  border-radius: 6px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.55);
}
.doc-frame::before {
  content: "OPERATIONAL ASSESSMENT";
  position: absolute;
  top: -9px;
  left: 24px;
  background: var(--green-dark);
  color: var(--cream-soft);
  font-family: var(--font-tight);
  font-size: 10px;
  letter-spacing: 1.4px;
  padding: 4px 10px;
  border-radius: 2px;
}
.report {
  background: var(--cream);
  border-radius: 3px;
  padding: 30px 30px 26px;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0,0,0,.4);
}
.report-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.rt-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
}
.rt-sub {
  font-family: var(--font-tight);
  font-size: 10px;
  color: var(--gray-text);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.rt-tag {
  font-family: var(--font-tight);
  font-size: 9.5px;
  color: var(--green-dark);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 3px 7px;
  white-space: nowrap;
  letter-spacing: .5px;
}
.r-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 18px;
}
.r-metric {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 15px 14px;
}
.r-metric .v {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}
.r-metric .l {
  font-family: var(--font-tight);
  font-size: 8.5px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-top: 6px;
}
.r-label {
  font-family: var(--font-tight);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin: 4px 0 8px;
}
.finding {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.finding .sev { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.finding .ftxt { font-size: 14.5px; color: var(--ink); line-height: 1.35; }
.finding .fscore { font-family: var(--font-tight); font-size: 11px; color: var(--gray-text); }
.sev.hi { background: #C0552E; }
.sev.md { background: var(--green-dark); }
.sev.lo { background: #9DA77F; }
.receive-spacer {
  background: var(--green-dark);
  padding-top: 6%;
}

/* ─────────────────────────────────────────────────────────
   8. WHY ROMANESCO
   ───────────────────────────────────────────────────────── */
.founder {
  background: var(--green-dark);
  padding: 72px 0 88px;
}
.founder__inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.founder__left { width: 45%; flex: none; }
.founder__heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.15;
  color: var(--cream-soft);
  margin-top: 14px;
}
.founder__right { flex: 1; padding-top: 20px; max-width: 640px; }
.founder__lead {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--cream-soft);
  margin-bottom: 18px;
}
.founder__text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cream-soft);
  margin-bottom: 18px;
}
.founder__trust {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-soft);
  margin-top: 26px;
  max-width: 560px;
}

/* ─────────────────────────────────────────────────────────
   9. DIFFERENT (Technology is the tool)
   ───────────────────────────────────────────────────────── */
.different { background: var(--cream); padding: 80px 0; }
.different__head { margin-bottom: 30px; max-width: 760px; }
.different__row { display: flex; gap: 40px; flex-wrap: wrap; }
.different__col { flex: 1 1 380px; }
.different__sub {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 27px;
  line-height: 1.25;
  color: #000;
  max-width: 68%;
  margin-top: 24px;
}
.different__bold {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--gray-text);
  margin-bottom: 16px;
}
.different__text {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--gray-text);
}

/* ─────────────────────────────────────────────────────────
   10. OUTCOMES
   ───────────────────────────────────────────────────────── */
.outcomes { background: var(--cream); padding: 0 0 80px; }
.outcomes__card { border: 1px solid var(--line); padding: 50px; }
.outcomes__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(30px, 3.4vw, 40px);
  color: #000;
  margin-top: 12px;
}
.outcomes__intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  margin: 14px 0 30px;
  max-width: 720px;
}
.outcomes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
}
.outcome {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
  font-size: 16px;
  color: var(--ink);
}
.outcome::before {
  content: '';
  width: 26px; height: 1px;
  background: var(--green-dark);
}

/* ─────────────────────────────────────────────────────────
   11. CTA
   ───────────────────────────────────────────────────────── */
.cta { position: relative; overflow: hidden; background: var(--green-dark); padding: 80px 0 90px; }
.cta > .container { position: relative; z-index: 2; }
.cta-spiral {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: auto;
  opacity: .4;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
@media (max-width: 760px) { .cta-spiral { display: none; } }
.cta__head { width: 51.9%; margin-bottom: 28px; }
.cta__heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(34px, 4vw, 47px);
  line-height: 1.15;
  color: var(--cream-soft);
  margin-top: 14px;
}
.cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--cta-box);
  border-radius: 26px;
  padding: 32px;
}
.cta__box-text {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 64%;
}

/* ─────────────────────────────────────────────────────────
   12. FOOTER
   ───────────────────────────────────────────────────────── */
.footer { background: var(--cream); padding: 10px 0; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer__logo { width: 253px; height: auto; }
.footer__copy { font-size: 16px; color: var(--ink); }

.footer__details { text-align: right; }
.footer__tagline,
.footer__contact { color: var(--ink); font-size: 14px; margin-top: 4px; }
.footer__contact a { color: var(--ink); text-decoration: none; }
.footer__contact a:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .how__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero { padding: 70px 0; }
  .hero__col { width: 100%; }
  .hero__orb { display: none; }
  .problem__grid,
  .receive__top { grid-template-columns: 1fr; gap: 32px; }
  .services__grid { grid-template-columns: 1fr; }
  .founder__inner { flex-direction: column; gap: 18px; }
  .founder__left { width: 100%; }
  .founder__right { padding-top: 0; }
  .different__sub { max-width: 100%; }
  .outcomes__grid { grid-template-columns: 1fr; }
  .cta__head { width: 100%; }
  .cta__box { flex-direction: column; align-items: flex-start; }
  .cta__box-text { max-width: 100%; }
  .how__head { flex-direction: column; align-items: flex-start; }
}

/* Mobile body-text scale (15–17px) — matches the live build */
@media (max-width: 767px) {
  .hero__body        { font-size: 16px; }
  .problem__intro    { font-size: 17px; }
  .problem__sub      { font-size: 16px; }
  .problem__item     { font-size: 14px; }
  .service-card__desc{ font-size: 15px; }
  .receive__bold     { font-size: 17px; }
  .receive__sub      { font-size: 16px; }
  .founder__lead     { font-size: 17px; }
  .founder__text,
  .founder__trust    { font-size: 15px; }
  .different__bold,
  .different__text   { font-size: 16px; }
  .outcomes__intro   { font-size: 15px; }
  .outcome           { font-size: 15px; }
  .cta__box-text     { font-size: 16px; }
  .marquee__group span { font-size: 15px; }
}
@media (max-width: 600px) {
  .how__cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .step-card { min-height: 440px; }
  .step-card__body { padding: 220px 18px 24px; }
  .service-card { padding: 32px; }
  .outcomes__card { padding: 28px; }

  /* Header — compact button matching the live mobile build */
  .nav__inner { gap: 12px; }
  .nav__logo { width: 150px; }
  .nav .btn {
    font-size: 12px;
    padding: 10px 12px;
    line-height: 1.25;
    max-width: 175px;
    text-align: center;
    box-shadow: none;
  }

  /* Footer — keep two-column row, compact copyright */
  .footer__inner { gap: 12px; }
  .footer__logo { width: 150px; }
  .footer__copy { font-size: 12px; text-align: right; }
  .footer__tagline,
  .footer__contact { font-size: 11px; }
}
@media (max-width: 430px) {
  .how__cards { grid-template-columns: 1fr; }
}

/* ── Mobile spacing + report-card fit (≤640px) ────────────── */
@media (max-width: 640px) {
  /* Trim oversized section padding so sections aren't separated by
     huge dead space when everything stacks to one column. */
  .hero        { padding: 52px 0; }
  .problem     { padding: 44px 0 36px; }
  .services    { padding: 44px 0; }
  .how         { padding: 44px 0; }
  .receive     { padding: 44px 0 0; }
  .different   { padding: 44px 0; }
  .outcomes    { padding: 0 0 44px; }
  .cta         { padding: 44px 0 52px; }
  .founder     { padding: 40px 0 44px; }
  /* Dark band the assessment card overlaps into — % height collapses on
     narrow screens, so give it a fixed gap before the Why Romanesco section. */
  .receive-spacer { padding-top: 96px; }
  .marquee-sec { padding: 14px 0; }
  .services__head,
  .different__head { margin-bottom: 26px; }
  .receive__top { margin-bottom: 32px; }

  /* Report card: fit the phone width, no horizontal overflow */
  .receive__doc { max-width: 100%; margin: 0 auto -48px; }
  .doc-frame { padding: 18px; border-radius: 5px; }
  .doc-frame::before { left: 16px; font-size: 9px; }
  .report { padding: 20px 16px 16px; }
  .r-metrics { gap: 7px; }
  .r-metric { padding: 10px 9px; }
  .r-metric .v { font-size: 21px; }
  .r-metric .l { font-size: 7.5px; letter-spacing: .4px; }
  .rt-title { font-size: 16px; }
  .finding .ftxt { font-size: 13px; }
  .finding { gap: 10px; padding: 9px 0; }
}
