/* ============================================================
   Space Now Limited — marketing site stylesheet
   See /DESIGN_NOTES.md for the full design rationale.
   Palette: navy + amber, ivory paper. Type: IBM Plex Sans/Serif.
   ============================================================ */

:root {
  /* Core palette */
  --ink: #0E1F3A;
  --ink-2: #22324F;
  --ink-soft: #5A6781;
  --paper: #FBFBFA;
  --paper-2: #F2F4F8;
  --paper-3: #E8ECF3;
  --line: #DEE3EC;
  --line-strong: #C6CEDD;

  /* Accents */
  --accent: #C77A2E;
  --accent-hover: #B26A1E;
  --accent-soft: #F4E6D2;
  --accent-ink: #8A4F15;

  /* Status */
  --positive: #1E7A55;
  --negative: #A8331E;

  /* Layout tokens */
  --max-width: 1140px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(14, 31, 58, 0.04), 0 1px 1px rgba(14, 31, 58, 0.03);
  --shadow-md: 0 6px 18px -6px rgba(14, 31, 58, 0.10), 0 2px 4px rgba(14, 31, 58, 0.04);
  --shadow-lg: 0 18px 40px -16px rgba(14, 31, 58, 0.18), 0 4px 10px -2px rgba(14, 31, 58, 0.06);

  /* Type */
  --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-serif: 'IBM Plex Serif', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
}

/* ----- Reset ----- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "ss01" 1;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--accent); }
ul, ol { padding-left: 0; }
button { font-family: inherit; }

::selection { background: var(--accent-soft); color: var(--ink); }

/* Focus state — always visible, always accent */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 0;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
  background: rgba(251, 251, 250, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-line {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.brand-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a { color: var(--ink-soft); }
.site-nav a:hover { color: var(--ink); }
.nav-cta {
  padding: 9px 18px;
  background: var(--ink);
  color: var(--paper) !important;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, transform 0.1s ease;
}
.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .site-header { padding: 12px 20px; }
  .site-nav { gap: 14px; font-size: 13px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .brand-sub { display: none; }
}

/* ----- Hero ----- */
.hero {
  padding: 96px 28px 80px;
  background:
    radial-gradient(ellipse at top right, rgba(199, 122, 46, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(14, 31, 58, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* Subtle grid line backdrop — Stripe/Linear style */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center center;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0 0 24px;
  padding: 6px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(199, 122, 46, 0.18);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 24px;
  color: var(--ink);
  max-width: 16ch;
}
.serif-accent {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 36px;
}

/* Dual-audience hero CTAs */
.hero-segments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0 0 40px;
  max-width: 620px;
}
.segment-card {
  display: grid;
  grid-template-areas:
    "eyebrow arrow"
    "title   arrow";
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 14px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-sm);
}
.segment-card:hover {
  border-color: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.segment-eyebrow {
  grid-area: eyebrow;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  font-weight: 600;
}
.segment-title {
  grid-area: title;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.segment-arrow {
  grid-area: arrow;
  font-size: 1.2rem;
  color: var(--ink-soft);
  transition: transform 0.15s ease, color 0.15s ease;
}
.segment-card:hover .segment-arrow {
  transform: translateX(3px);
  color: var(--accent);
}
.segment-card-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.segment-card-primary .segment-eyebrow { color: rgba(255,255,255,0.7); }
.segment-card-primary .segment-title { color: var(--paper); }
.segment-card-primary .segment-arrow { color: var(--accent); }
.segment-card-primary:hover {
  background: var(--ink-2);
  border-color: var(--ink-2);
  color: var(--paper);
}

/* Hero proof strip */
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  max-width: 760px;
}
.hero-proof li {
  padding: 0 22px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-proof li:first-child { padding-left: 0; }
.hero-proof li:last-child { padding-right: 0; border-right: none; }
.proof-key {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--accent-ink);
}
.proof-val {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.4;
}

@media (max-width: 720px) {
  .hero { padding: 72px 20px 56px; }
  .hero-segments { grid-template-columns: 1fr; }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; }
  .hero-proof li { padding: 14px 0 0; border-right: none; border-top: 1px solid var(--line); }
  .hero-proof li:first-child { border-top: none; padding-top: 0; }
}

/* ----- Buttons (generic) ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
  box-shadow: 0 1px 2px rgba(199, 122, 46, 0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--paper);
}

/* ----- Sections ----- */
.section { padding: 96px 28px; }
.section-alt {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.container { max-width: var(--max-width); margin: 0 auto; }

.section-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-ink);
  margin: 0 0 14px;
}
.section h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 22ch;
}
.section-lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 70ch;
  margin: 0 0 48px;
}

@media (max-width: 720px) {
  .section { padding: 64px 20px; }
}

/* ----- Audience cards ----- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 24px;
}
@media (max-width: 800px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 34px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.audience-card-featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  position: relative;
  overflow: hidden;
}
.audience-card-featured::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(199, 122, 46, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.audience-head { margin-bottom: 18px; }
.audience-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.audience-tag-featured {
  color: var(--accent);
  background: rgba(199, 122, 46, 0.16);
}
.audience-card h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.audience-card-featured h3 { color: var(--paper); }

.audience-blurb {
  font-size: 1.02rem;
  margin: 0 0 22px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.audience-card-featured .audience-blurb { color: rgba(251, 251, 250, 0.78); }

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.audience-list li {
  padding: 0 0 0 28px;
  position: relative;
  font-size: 0.97rem;
  line-height: 1.5;
}
.audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.audience-card-featured .audience-list li::before { background: var(--accent); }

.audience-foot {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0 0 22px;
  font-style: italic;
}

.audience-quote {
  margin: 0 0 24px;
  padding: 18px 20px 18px 24px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(251, 251, 250, 0.92);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  position: relative;
}
.quote-mark {
  font-size: 1.8rem;
  line-height: 0;
  color: var(--accent);
  margin-right: 4px;
  vertical-align: -0.2em;
  font-family: var(--font-serif);
}

.audience-cta {
  align-self: flex-start;
  margin-top: auto;
  padding: 11px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent-ink);
  border-bottom: 1px solid var(--accent);
  transition: gap 0.15s ease, color 0.15s ease;
}
.audience-cta:hover { color: var(--accent); }
.audience-cta-featured {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.audience-cta-featured:hover { color: var(--accent-soft); border-bottom-color: var(--accent-soft); }

/* ----- Services grid ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.service-icon {
  width: 32px;
  height: 32px;
  color: var(--ink);
  flex-shrink: 0;
}
.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}

/* ----- Steps ----- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.step-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.step-card p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.55;
  margin: 0;
}
.step-card-highlight {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--paper) 100%);
  border-color: var(--accent);
  border-width: 1.5px;
  position: relative;
}
.step-card-highlight .step-num {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}
.step-flag {
  margin-top: 14px;
  align-self: flex-start;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent-ink);
  background: rgba(255, 255, 255, 0.65);
  padding: 5px 9px;
  border-radius: 4px;
  border: 1px solid rgba(199, 122, 46, 0.3);
}

/* ----- Trust cards ----- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.trust-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  border-top: 3px solid var(--accent);
}
.trust-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.trust-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
}

/* ----- Contact ----- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

.contact-direct {
  position: sticky;
  top: 96px;
}
.contact-direct h3 {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.contact-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "label arrow"
    "value arrow";
  align-items: center;
  gap: 4px 14px;
  padding: 18px 22px;
  margin-bottom: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-sm);
}
.contact-btn:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.contact-btn-label {
  grid-area: label;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  font-weight: 600;
}
.contact-btn-value {
  grid-area: value;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  word-break: break-all;
}
.contact-btn-arrow {
  grid-area: arrow;
  font-size: 1.1rem;
  color: var(--accent);
  transition: transform 0.15s ease;
}
.contact-btn:hover .contact-btn-arrow { transform: translateX(3px); }

.contact-meta {
  margin: 28px 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.contact-meta-row:last-child { border-bottom: 1px solid var(--line); }
.contact-meta-row dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 2px 0 0;
}
.contact-meta-row dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}
.contact-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ----- Form ----- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.contact-form label > span {
  font-weight: 500;
  color: var(--ink);
  font-size: 0.92rem;
}
.contact-form label em {
  font-style: normal;
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 0.85em;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover { border-color: var(--ink-soft); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(199, 122, 46, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form button[type="submit"] { margin-top: 4px; align-self: flex-start; padding: 14px 32px; }

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status { font-size: 14px; min-height: 1.4em; margin: 0; }
.form-status.ok { color: var(--positive); font-weight: 500; }
.form-status.error { color: var(--negative); font-weight: 500; }

.form-fineprint {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 540px) {
  .contact-form { padding: 24px 20px; }
}

/* ----- Footer ----- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 28px 36px;
  margin-top: 0;
}
.site-footer a { color: var(--paper); }
.site-footer a:hover { color: var(--accent); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 32px;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-brand strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.footer-tag {
  font-size: 0.88rem;
  color: rgba(251, 251, 250, 0.6);
  margin: 2px 0 0;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
}
.footer-sep { color: rgba(251, 251, 250, 0.4); }
.footer-fineprint {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 251, 250, 0.1);
  font-size: 0.82rem;
  color: rgba(251, 251, 250, 0.55);
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .btn:hover,
  .segment-card:hover,
  .audience-card:hover,
  .service-card:hover,
  .contact-btn:hover,
  .nav-cta:hover { transform: none; }
}
