/* ============================================================
   RITMO AGENCY — Design System v2
   Botanical green × near-black × warm amber
   Fonts: Big Shoulders Display / Nunito Sans
   Colors: OKLCH throughout — no hex
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700;900&family=Nunito+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Backgrounds */
  --bg:        oklch(0.09 0.000  0);
  --surface:   oklch(0.14 0.000  0);
  --surface-2: oklch(0.20 0.000  0);
  --border:    oklch(0.22 0.000  0);

  /* Brand */
  --primary:       oklch(0.70 0.150  58);
  --primary-dark:  oklch(0.59 0.145  58);
  --primary-glow:  oklch(0.70 0.150  58 / 0.22);
  --accent:        oklch(0.60 0.180 355);

  /* Text */
  --ink:           oklch(0.96 0.000  0);
  --ink-muted:     oklch(0.62 0.000  0);
  --ink-dim:       oklch(0.44 0.000  0);

  /* Typography */
  --font-display: 'Big Shoulders Display', system-ui, sans-serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;

  /* Spacing */
  --section-py:    64px;
  --container-px:  20px;

  /* Misc */
  --radius:    8px;
  --radius-lg: 14px;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 640px) {
  :root {
    --section-py:   96px;
    --container-px: 32px;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Reserve space for sticky mobile CTA */
@media (max-width: 639px) {
  body { padding-bottom: 70px; }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2 {
  font-family: var(--font-display);
  line-height: 1.0;
  text-wrap: balance;
}

h3, h4 {
  font-family: var(--font-body);
  line-height: 1.3;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.8rem, 9vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 700;
}

h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

p {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 65ch;
}

p + p { margin-top: 14px; }

.text-primary { color: var(--primary); }
.text-accent  { color: var(--accent); }
.text-ink     { color: var(--ink); }
.text-center  { text-align: center; }

/* ---------- Layout ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

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

.section--surface {
  background: var(--surface);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: oklch(0.09 0.000 0 / 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border);
  box-shadow: 0 2px 24px oklch(0 0 0 / 0.5);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--container-px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.nav__logo-sub {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 2px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-muted);
  transition: color 0.25s ease;
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile .nav__link {
  padding: 18px var(--container-px);
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 20px var(--primary-glow);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink-muted);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

.btn--dark:hover {
  background: var(--surface);
  border-color: var(--surface);
  transform: translateY(-1px);
}

.btn--outline-accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--outline-accent:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-1px);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  background-image:
    linear-gradient(
      to bottom,
      oklch(0.09 0.000 0 / 0.70) 0%,
      oklch(0.09 0.000 0 / 0.88) 55%,
      oklch(0.09 0.000 0 / 0.97) 100%
    ),
    url('https://images.unsplash.com/photo-1555489401-79c274997434?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center 30%;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__title {
  color: var(--ink);
  margin-bottom: 20px;
}

.hero__title .highlight {
  color: var(--primary);
  display: block;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--ink-muted);
  margin: 0 auto 32px;
  max-width: 460px;
  text-wrap: pretty;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 14px;
}

.hero__cta-group .btn {
  width: 100%;
  max-width: 380px;
  font-size: 1.05rem;
  padding: 18px 32px;
}

.hero__trust {
  font-size: 0.78rem;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ---------- Proof Strip ---------- */
.proof-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}

.proof-strip__track {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
  overflow-x: auto;
  padding: 0 var(--container-px);
  scrollbar-width: none;
}

.proof-strip__track::-webkit-scrollbar { display: none; }

.proof-strip__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  opacity: 0.7;
}

.proof-strip__count {
  color: var(--primary);
}

/* ---------- Problem Statements ---------- */
.problems {
  padding: var(--section-py) 0;
}

.problems__heading {
  margin-bottom: 48px;
}

.statement-list {
  border-top: 1px solid var(--border);
}

.statement-block {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.statement-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.statement-block__body {
  color: var(--ink-muted);
  font-size: 0.94rem;
  max-width: 58ch;
}

/* ---------- Steps (How It Works) ---------- */
.steps {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.steps__header {
  margin-bottom: 56px;
}

.steps__header p {
  margin-top: 12px;
  max-width: 480px;
}

.steps__list {
  display: flex;
  flex-direction: column;
  max-width: 660px;
}

.step {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.step:last-child {
  border-bottom: 1px solid var(--border);
}

.step__marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  margin-bottom: 20px;
}

.step__content h3 {
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step__content p {
  font-size: 0.94rem;
}

/* ---------- Service Rows (homepage preview) ---------- */
.services-preview {
  padding: var(--section-py) 0;
}

.services-preview__header {
  margin-bottom: 48px;
}

.services-preview__header p {
  margin-top: 12px;
}

.services-preview__footer {
  margin-top: 40px;
  text-align: center;
}

.service-list {
  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.service-row__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.service-row__desc {
  color: var(--ink-muted);
  font-size: 0.9rem;
  max-width: 60ch;
}

.service-row__link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
  margin-top: 2px;
}

.service-row__link:hover { gap: 10px; }

/* ---------- Pull Quotes (Testimonials) ---------- */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--surface);
}

.testimonials__header {
  margin-bottom: 56px;
}

.pull-quote-list {
  border-top: 1px solid var(--border);
}

.pull-quote {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.pull-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  max-width: 820px;
}

.pull-quote__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pull-quote__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}

.pull-quote__studio {
  font-size: 0.8rem;
  color: var(--ink-dim);
}

/* ---------- CTA Band (drenched green) ---------- */
.cta-band {
  background: var(--primary);
  padding: var(--section-py) 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--bg);
  margin-bottom: 12px;
}

.cta-band > .container > p {
  color: oklch(0.12 0.000 0 / 0.72);
  margin: 0 auto 36px;
  max-width: 440px;
}

.cta-band__btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-band__btn-wrap .btn {
  width: 100%;
  max-width: 380px;
  font-size: 1.05rem;
  padding: 18px 32px;
}

.cta-band__fine {
  margin-top: 14px;
  font-size: 0.75rem;
  color: oklch(0.12 0.000 0 / 0.50);
  letter-spacing: 0.03em;
}

/* ---------- Full Services List (services page) ---------- */
.service-full-list {
  border-top: 1px solid var(--border);
}

.service-full-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.service-full-item__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.05;
}

.service-full-item__name.is-featured {
  color: var(--accent);
}

.service-full-item p {
  font-size: 0.95rem;
  max-width: 65ch;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 440px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 32px var(--primary-glow);
}

.pricing-card--featured {
  border-color: var(--primary);
  background: oklch(0.14 0.012  58);
  padding-top: 52px;
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--bg);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card__cadence {
  font-size: 0.8rem;
  color: var(--ink-dim);
  margin-bottom: 28px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.pricing-card__feature::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--border);
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.25s ease;
  touch-action: manipulation;
}

.faq-question:hover { color: var(--primary); }

.faq-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.25s ease;
  color: var(--primary);
}

.faq-item.open .faq-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 22px;
}

.faq-answer p { font-size: 0.93rem; }

.faq-item.open .faq-answer { display: block; }

/* ---------- About Page ---------- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.about-photo {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-photo__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ink-dim);
  text-align: center;
  padding: 24px;
  line-height: 1.5;
}

.why-point {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.why-point:first-child { border-top: 1px solid var(--border); }

.why-point__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  padding-top: 2px;
}

.why-point__content h3 {
  color: var(--ink);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

/* Narrative band (replaces stats-banner) */
.narrative-band {
  background: var(--primary);
  padding: 64px 0;
}

.narrative-band blockquote {
  max-width: 700px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--bg);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.narrative-band cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  color: oklch(0.12 0.000 0 / 0.62);
  font-weight: 700;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 16px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ink-dim);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-submit-btn {
  width: 100%;
  font-size: 1.05rem;
  padding: 18px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--ink-dim);
  margin-top: 10px;
  text-align: center;
}

.contact-info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}

.contact-info-box h3 {
  color: var(--ink);
  margin-bottom: 24px;
}

.contact-info-item {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.contact-info-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-info-item__value {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.contact-info-item__value a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-quote-box {
  margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.contact-quote-box p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 12px;
  max-width: none;
}

.contact-quote-box cite {
  font-size: 0.78rem;
  font-style: normal;
  color: var(--primary);
  font-weight: 700;
}

.call-agenda {
  margin-top: 20px;
  padding: 24px;
  background: oklch(0.14 0.012  58);
  border: 1px solid oklch(0.70 0.150  58 / 0.25);
  border-radius: var(--radius-lg);
}

.call-agenda h4 {
  color: var(--ink);
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.call-agenda ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.call-agenda li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.call-agenda li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.reassurance-strip {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  text-align: center;
}

.reassurance-item h4 {
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 1rem;
}

.reassurance-item p {
  font-size: 0.875rem;
  max-width: 26ch;
  margin: 0 auto;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 136px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  margin-top: 8px;
  margin-bottom: 16px;
  max-width: 760px;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 520px;
  margin-top: 16px;
}

.page-hero .text-primary {
  color: var(--primary);
}

/* ---------- Footer ---------- */
.footer {
  background: oklch(0.06 0.000 0);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer__brand {
  grid-column: 1 / -1;
}

.footer__brand p {
  font-size: 0.875rem;
  color: var(--ink-dim);
  margin-top: 10px;
  max-width: 260px;
  line-height: 1.6;
}

.footer__col-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--ink-dim);
  transition: color 0.25s ease;
}

.footer__links a:hover { color: var(--primary); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.footer__copy {
  font-size: 0.75rem;
  color: oklch(0.38 0.000 0);
}

/* ---------- Sticky CTA Bar ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--primary);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  border-top: 1px solid var(--primary-dark);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cta__text strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
}

.sticky-cta .btn {
  padding: 10px 18px;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ---------- Hero Entrance Animation ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__title    { animation: rise 0.7s var(--ease-out) both; }
.hero__subtitle { animation: rise 0.7s 0.12s var(--ease-out) both; }
.hero__cta-group { animation: rise 0.7s 0.22s var(--ease-out) both; }
.hero__trust    { animation: rise 0.7s 0.30s var(--ease-out) both; }

/* Section Reveals */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero__title, .hero__subtitle, .hero__cta-group, .hero__trust {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .sticky-cta {
    transition: none;
  }
}

/* =====================================================
   RESPONSIVE — 640px and above
   ===================================================== */
@media (min-width: 640px) {

  /* Nav */
  .nav__links    { display: flex; }
  .nav__hamburger { display: none; }
  .nav__mobile   { display: none !important; }

  /* Hero */
  .hero__content { text-align: left; }
  .hero__subtitle { margin-left: 0; }
  .hero__trust   { text-align: left; }
  .hero__cta-group { flex-direction: row; }
  .hero__cta-group .btn { width: auto; }

  /* Statement blocks */
  .statement-block {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: start;
    gap: 32px;
  }

  .statement-block__body {
    margin-top: 4px;
    max-width: none;
  }

  /* Service rows */
  .service-row {
    grid-template-columns: 1.5fr 2fr auto;
    align-items: center;
    gap: 28px;
  }

  .service-row__link { margin-top: 0; }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
  }

  /* About story */
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    margin: 0;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer__brand { grid-column: auto; }

  /* Reassurance */
  .reassurance-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Sticky CTA hidden on desktop */
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* =====================================================
   RESPONSIVE — 900px and above
   ===================================================== */
@media (min-width: 900px) {

  .steps__list { max-width: 700px; }

  .pull-quote__text {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  }
}
