/* ==========================================================================
   PrimeReach Digital — styles.css
   Mobile-first. Palette: near-black / warm ivory / champagne gold (sparingly).
   ========================================================================== */

:root {
  --black:        #0B0B0B;
  --black-soft:   #111111;
  --black-raised: #171717;
  --ivory:        #F5F3EE;
  --ivory-deep:   #EDEAE2;
  --gold:         #B89B5E;
  --gold-soft:    #C9B183;

  --ink:          #1A1A18;   /* body text on ivory */
  --ink-muted:    #5C5A54;
  --ink-faint:    #8A877F;

  --on-dark:      #F2F0EA;
  --on-dark-mute: #A7A49C;
  --on-dark-faint:#6E6B64;

  --line-dark:    rgba(245, 243, 238, 0.12);
  --line-light:   rgba(26, 26, 24, 0.12);

  --font-display: "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --radius:       14px;
  --radius-sm:    10px;

  --wrap:         1140px;
  --gutter:       22px;

  --ease:         cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.022em;
  margin: 0;
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

ul, ol { margin: 0; padding: 0; list-style: none; }

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

::selection { background: var(--gold); color: #0B0B0B; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--black);
  color: var(--on-dark);
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap-narrow { max-width: 800px; }

.section { padding: 72px 0; }

.section-dark {
  background: var(--black);
  color: var(--on-dark);
}
.section-light {
  background: var(--ivory);
  color: var(--ink);
}

.section-head { max-width: 660px; margin-bottom: 44px; }

.section-title {
  font-size: clamp(1.75rem, 5.4vw, 2.6rem);
  margin-bottom: 0;
}
.section-head .section-title + .section-lede { margin-top: 18px; }

.section-lede {
  font-size: 1.03rem;
  color: var(--ink-muted);
  max-width: 58ch;
}
.section-dark .section-lede { color: var(--on-dark-mute); }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.eyebrow-dark { color: #8A7333; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
              border-color 0.18s var(--ease), color 0.18s var(--ease), opacity 0.18s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold);
  color: #14120C;
}
.btn-primary:hover { background: var(--gold-soft); }

.btn-quiet {
  background: transparent;
  color: var(--on-dark);
  border-color: var(--line-dark);
}
.btn-quiet:hover { border-color: rgba(245,243,238,0.34); background: rgba(245,243,238,0.05); }

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

.btn-sm { padding: 9px 17px; font-size: 0.85rem; }
.btn-block { width: 100%; padding: 16px 26px; }
.btn[disabled] { opacity: 0.55; cursor: default; }

.link-arrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: #8A7333;
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 115, 51, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease);
}
.link-arrow span { display: inline-block; transition: transform 0.18s var(--ease); }
.link-arrow:hover { border-color: #8A7333; }
.link-arrow:hover span { transform: translateX(4px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line-dark);
  background: rgba(11, 11, 11, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--on-dark);
  margin-right: auto;
}
.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: none;
  border: 1.4px solid rgba(245, 243, 238, 0.5);
  border-radius: 9px;
  font-family: "Playfair Display", var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--gold-soft);
}
.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-word {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: -0.008em;
}
.brand-prime { color: var(--on-dark); font-weight: 500; }
.brand-reach { color: var(--gold-soft); font-weight: 600; font-style: italic; }
.brand-caption {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}

.nav { display: none; }
.nav-list { display: flex; gap: 30px; }
.nav-list a {
  font-size: 0.92rem;
  color: var(--on-dark-mute);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}
.nav-list a:hover { color: var(--on-dark); }

.header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--on-dark);
  transition: transform 0.22s var(--ease), opacity 0.18s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* mobile drawer */
@media (max-width: 899px) {
  .nav-list {
    position: fixed;
    inset: 66px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--black-soft);
    border-bottom: 1px solid var(--line-dark);
    padding: 6px var(--gutter) 18px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .nav-list.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-list li { border-top: 1px solid var(--line-dark); }
  .nav-list a { display: block; padding: 15px 2px; font-size: 1rem; color: var(--on-dark); }
  .nav { display: block; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--black);
  color: var(--on-dark);
  padding: 56px 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 420px at 82% 18%, rgba(184, 155, 94, 0.15), transparent 68%),
    radial-gradient(900px 600px at 12% 96%, rgba(184, 155, 94, 0.05), transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; }

.hero-title {
  font-size: clamp(2.05rem, 8.2vw, 3.35rem);
  letter-spacing: -0.032em;
  margin-bottom: 22px;
  max-width: 17ch;
}

.hero-sub {
  font-size: 1.06rem;
  color: var(--on-dark-mute);
  max-width: 50ch;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-actions .btn { flex: 1 1 auto; }

.hero-note {
  font-size: 0.87rem;
  color: var(--on-dark-faint);
  max-width: 44ch;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 54px;
  padding: 20px 0 26px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  font-family: var(--font-display);
  font-weight: 500;
}

/* ---------- the orb ---------- */
.hero-visual {
  display: flex;
  justify-content: center;
  margin: 46px 0 6px;
}

.orb-stage {
  position: relative;
  width: min(300px, 76vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orb-core {
  position: relative;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #FBF4E2 0%, #E4CE9B 18%, var(--gold) 44%, #7A6231 76%, #3A2F17 100%);
  box-shadow:
    0 0 46px rgba(184, 155, 94, 0.34),
    0 0 110px rgba(184, 155, 94, 0.16),
    inset -8px -12px 26px rgba(0, 0, 0, 0.5);
  animation: orb-breathe 7s ease-in-out infinite;
}

.orb-glow {
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 155, 94, 0.2) 0%, rgba(184, 155, 94, 0.05) 42%, transparent 68%);
  animation: orb-breathe 7s ease-in-out infinite reverse;
}

.orb-ring {
  position: absolute;
  border: 1px solid rgba(184, 155, 94, 0.2);
  border-radius: 50%;
  animation: orb-spin linear infinite;
}
.orb-ring-1 { width: 66%;  aspect-ratio: 1; animation-duration: 26s; }
.orb-ring-2 { width: 86%;  aspect-ratio: 1; animation-duration: 40s; animation-direction: reverse; border-color: rgba(184,155,94,0.15); }
.orb-ring-3 { width: 100%; aspect-ratio: 1; animation-duration: 58s; border-color: rgba(245,243,238,0.07); }

.orb-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 12px rgba(184, 155, 94, 0.75);
}
.orb-dot-sm { width: 6px; height: 6px; margin-left: -3px; top: -3px; }
.orb-dot-xs { width: 4px; height: 4px; margin-left: -2px; top: -2px; background: rgba(245,243,238,0.6); box-shadow: 0 0 8px rgba(245,243,238,0.4); }

@keyframes orb-spin { to { transform: rotate(360deg); } }
@keyframes orb-breathe {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(1.045); opacity: 0.93; }
}

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

/* ==========================================================================
   PROBLEM
   ========================================================================== */
.problem { padding-bottom: 28px; }
.problem .section-title { font-size: clamp(1.6rem, 5vw, 2.15rem); }
.problem-body { margin-top: 22px; color: var(--ink-muted); }
.problem-body p { max-width: 60ch; }
.problem-kicker {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.04rem;
  line-height: 1.45;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin-top: 26px;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { padding-top: 44px; }

.service {
  padding: 34px 0;
  border-top: 1px solid var(--line-light);
}
.service:first-of-type { border-top: none; padding-top: 0; }

.service-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}

.service-name {
  font-size: clamp(1.4rem, 4.6vw, 1.85rem);
  margin-bottom: 14px;
}

.service-lede {
  color: var(--ink-muted);
  max-width: 46ch;
  margin-bottom: 18px;
}

.service-detail {
  margin-top: 26px;
  background: var(--ivory-deep);
  border-radius: var(--radius);
  padding: 24px 22px;
}

.detail-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}

.checks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.96rem;
  color: var(--ink);
}
.checks li:last-child { margin-bottom: 0; }
.checks li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 9px;
  height: 5px;
  border-left: 1.6px solid var(--gold);
  border-bottom: 1.6px solid var(--gold);
  transform: rotate(-45deg);
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process { padding-top: 20px; }

.step {
  position: relative;
  padding: 26px 0 26px 0;
  border-top: 1px solid var(--line-light);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  width: 26px;
  height: 26px;
  border: 1px solid rgba(184, 155, 94, 0.4);
  border-radius: 50%;
  margin-bottom: 14px;
}

.step-title { font-size: 1.22rem; margin-bottom: 10px; }
.step p { color: var(--ink-muted); max-width: 54ch; font-size: 0.98rem; }
.step-out { margin-top: 12px; color: var(--ink) !important; font-size: 0.94rem; }
.step-out strong { font-weight: 600; }

/* ==========================================================================
   AUTOMATION (AI add-ons)
   ========================================================================== */
.automation .section-head { max-width: 62ch; }

.addons {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.addon {
  background: var(--black);
  padding: 26px 22px;
  transition: background-color 0.22s var(--ease);
}
.addon:hover { background: var(--black-raised); }

.addon-name {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--on-dark);
}
.addon p {
  color: var(--on-dark-mute);
  font-size: 0.95rem;
  max-width: 46ch;
}

.addon-foot {
  margin-top: 26px;
  color: var(--on-dark-faint);
  font-size: 0.92rem;
  max-width: 58ch;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { border-top: 1px solid var(--line-light); }

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 34px 20px 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: -0.012em;
  transition: color 0.18s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #8A7333; }

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  border-right: 1.6px solid var(--gold);
  border-bottom: 1.6px solid var(--gold);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.22s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(2px) rotate(-135deg); }

.faq-item p {
  color: var(--ink-muted);
  font-size: 0.97rem;
  max-width: 66ch;
  padding: 0 0 22px;
  margin: -4px 0 0;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-intro .section-title { margin-bottom: 18px; }

.contact-direct {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}
.contact-direct p { margin-bottom: 6px; }

.contact-direct-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  margin-bottom: 14px !important;
}

.contact-link {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;      /* long addresses can't push the page sideways */
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 4vw, 1.06rem);
  font-weight: 500;
  color: var(--on-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 155, 94, 0.45);
  padding-bottom: 2px;
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.contact-link:hover { color: var(--gold); border-color: var(--gold); }

.contact-hours {
  margin-top: 16px !important;
  font-size: 0.87rem;
  color: var(--on-dark-faint);
}

/* ---------- form ---------- */
.contact-form {
  margin-top: 42px;
  background: var(--black-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px 20px;
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--on-dark-mute);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: rgba(245, 243, 238, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--on-dark);
  font-size: 1rem;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.field textarea { resize: vertical; min-height: 108px; }

.field input::placeholder,
.field textarea::placeholder { color: var(--on-dark-faint); }

.field input:hover,
.field textarea:hover { border-color: rgba(245, 243, 238, 0.22); }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245, 243, 238, 0.06);
}

.field.has-error input,
.field.has-error textarea { border-color: #C4695B; }

.field-error {
  margin: 7px 0 0;
  font-size: 0.82rem;
  color: #D98A7D;
  display: none;
}
.field.has-error .field-error { display: block; }

.field-row { display: grid; gap: 0; }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 16px 0 0;
  font-size: 0.92rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-error { color: #D98A7D; }
.form-status.is-success { color: var(--gold-soft); }

.form-fine {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--on-dark-faint);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--black);
  color: var(--on-dark-mute);
  border-top: 1px solid var(--line-dark);
  padding: 52px 0 26px;
}

.footer-inner { display: grid; gap: 38px; }

.footer-tag {
  margin-top: 16px;
  font-size: 0.94rem;
  color: var(--on-dark-mute);
  max-width: 34ch;
}
.footer-domain {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.footer-head {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  margin-bottom: 14px;
}

.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  font-size: 0.92rem;
  overflow-wrap: anywhere;
  color: var(--on-dark-mute);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}
.footer-nav a:hover { color: var(--on-dark); }

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: 0.83rem;
  color: var(--on-dark-faint);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--on-dark-mute); }

/* ==========================================================================
   BREAKPOINTS
   ========================================================================== */
@media (min-width: 620px) {
  .section { padding: 90px 0; }
  .hero-actions .btn { flex: 0 0 auto; }
  .field-row { grid-template-columns: 1fr 1fr; gap: 0 16px; }
  .contact-form { padding: 32px 28px; }
  .service-detail { padding: 28px 30px; }
  .addon { padding: 30px 28px; }
  /* five add-ons, two columns — let the last one span so there's no empty cell */
  .addons { grid-template-columns: 1fr 1fr; }
  .addon:last-child { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  html { scroll-padding-top: 90px; }

  .nav { display: block; }
  .nav-toggle { display: none; }
  .header-cta { display: inline-flex; }
  .nav { margin-right: 26px; }

  .section { padding: 116px 0; }

  .hero { padding-top: 40px; }
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: 40px;
    min-height: 560px;
  }
  .hero-title { font-size: clamp(2.5rem, 3.7vw, 3.2rem); max-width: 18ch; }
  .hero-visual { margin: 0; }
  .orb-stage { width: min(420px, 38vw); }
  .hero-strip { margin-top: 30px; gap: 10px 42px; }

  .problem { padding-bottom: 40px; }
  .problem-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 56px;
  }
  .problem-body { margin-top: 0; }

  .services { padding-top: 60px; padding-bottom: 72px; }
  .service {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    padding: 52px 0;
    align-items: start;
  }
  .service-detail { margin-top: 0; }

  .process { padding-top: 40px; }
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 36px;
  }
  .step { padding: 30px 0 0; }

  /* six-column track so the five add-ons sit 3-up then 2-up, evenly */
  .addons { grid-template-columns: repeat(6, 1fr); }
  .addon { grid-column: span 2; }
  .addon:nth-child(4), .addon:nth-child(5) { grid-column: span 3; }

  .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 64px;
    align-items: start;
  }
  .contact-form { margin-top: 0; }

  .footer-inner { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 60px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 40px; justify-items: start; }
}

@media (min-width: 1080px) {
  .footer-nav { justify-items: end; }
}
