/* ============================================================
   MONDAY MORNING MARKETING — Design System v3
   Sunrise on ink · deep navy night · glowing coral-amber dawn
   ============================================================ */

:root {
  --ink: #141B2E;            /* deep ink navy — dominant */
  --ink-deep: #0E1322;       /* footer / depths */
  --ink-raised: #1C2540;     /* elevated panels */
  --dawn: #FFF9F2;           /* warm white — light sections */
  --dawn-soft: #FBF1E5;      /* warmer wash */
  --text-on-ink: #F4EFE7;
  --muted-on-ink: rgba(244, 239, 231, 0.66);
  --text-on-dawn: #1C2135;
  --muted-on-dawn: #5C617A;
  --coral: #FF6B4A;
  --amber: #FFA94D;
  --gold: #FFD166;
  --sunrise: linear-gradient(100deg, #FF6B4A 0%, #FFA94D 55%, #FFD166 100%);
  --line: rgba(244, 239, 231, 0.14);
  --line-dawn: rgba(28, 33, 53, 0.12);
  --glass: rgba(244, 239, 231, 0.05);
  --glow: 0 10px 40px rgba(255, 107, 74, 0.28);
  --shadow-dawn: 0 14px 36px rgba(28, 33, 53, 0.1);
  --radius: 22px;
  --font-display: 'Fraunces', serif;
  --font-body: 'Figtree', sans-serif;

  /* Consistent type scale */
  --h1: clamp(2.7rem, 5.2vw, 4.4rem);
  --h2: clamp(1.9rem, 3.2vw, 2.8rem);
  --h3: 1.35rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text-on-ink);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--coral); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
.serif-it {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  background: var(--sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--muted-on-ink);
  line-height: 1.75;
  max-width: 62ch;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 19, 34, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.logo .sun {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sunrise);
  box-shadow: 0 0 18px rgba(255, 138, 61, 0.55);
  flex-shrink: 0;
}
.logo em {
  font-style: italic;
  font-weight: 500;
  background: var(--sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--muted-on-ink);
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-links a:hover { background: rgba(255, 169, 77, 0.14); color: var(--gold); }
.nav-links a.active { color: var(--text-on-ink); font-weight: 600; }
.nav-links a.nav-cta {
  background: var(--sunrise);
  color: #2A1608;
  margin-left: 12px;
  font-weight: 700;
}
.nav-links a.nav-cta:hover { box-shadow: var(--glow); color: #2A1608; transform: translateY(-1px); }
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span { width: 22px; height: 2px; border-radius: 2px; background: var(--text-on-ink); display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s, color 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.btn-primary { background: var(--sunrise); color: #2A1608; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glow); }
.btn-dark { background: var(--sunrise); color: #2A1608; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--glow); }
.btn-ghost {
  background: transparent;
  color: var(--text-on-ink);
  border: 1.5px solid rgba(244, 239, 231, 0.35);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--gold); transform: translateY(-3px); }
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero, .page-hero {
  padding: clamp(76px, 9vw, 128px) 0 clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero::before, .page-hero::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -46vw;
  transform: translateX(-50%);
  width: 92vw; height: 92vw;
  min-width: 900px; min-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%,
    rgba(255, 209, 102, 0.5) 0%,
    rgba(255, 169, 77, 0.34) 22%,
    rgba(255, 107, 74, 0.2) 42%,
    rgba(255, 107, 74, 0.06) 58%,
    transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--sunrise);
  filter: blur(2px);
  box-shadow: 0 0 80px 30px rgba(255, 138, 61, 0.45);
  pointer-events: none;
}
.hero .wrap, .page-hero .wrap { position: relative; z-index: 1; }
.hero h1 { max-width: 17ch; }
.page-hero h1 { max-width: 18ch; }
.hero-sub { margin-top: 30px; }
.page-hero .lede { margin-top: 26px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }
.page-hero { border-bottom: 1px solid var(--line); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink-deep);
  color: var(--muted-on-ink);
  overflow: hidden;
  padding: 15px 0;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: inline-flex;
  gap: 44px;
  animation: marquee 38s linear infinite;
  padding-right: 44px;
}
.marquee-track span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 44px;
}
.marquee-track span::after { content: '✦'; color: var(--amber); font-size: 11px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 8vw, 108px) 0; }
.section-head { margin-bottom: clamp(36px, 4.5vw, 56px); }
.section-head h2 { max-width: 24ch; }

/* Dawn (light) sections — the sun has come up */
.section-dark { background: var(--dawn); color: var(--text-on-dawn); }
.section-dark .lede { color: var(--muted-on-dawn); }
.section-dark .eyebrow { color: #E05A38; }

/* Elevated ink */
.section-tint { background: var(--ink-raised); }

/* ---------- Split (dual audience) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-card {
  border-radius: var(--radius);
  padding: clamp(34px, 4vw, 52px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.split-card:hover { transform: translateY(-5px); }
.split-card.card-ink {
  background: var(--dawn);
  color: var(--text-on-dawn);
}
.split-card.card-ink:hover { box-shadow: var(--shadow-dawn); }
.split-card.card-ink p { color: var(--muted-on-dawn); }
.split-card.card-accent {
  background: linear-gradient(140deg, #FF6B4A 0%, #FF8A3D 55%, #FFA94D 100%);
  color: #2A1608;
}
.split-card.card-accent:hover { box-shadow: var(--glow); }
.split-card h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); }
.split-card p { opacity: 0.92; max-width: 46ch; }
.split-card .tag {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.split-card .card-list { display: grid; gap: 10px; margin: 4px 0 10px; }
.split-card .card-list li { display: flex; gap: 12px; font-size: 15px; }
.split-card .card-list li::before { content: '→'; font-weight: 700; }
.card-ink .card-list li::before { color: #E05A38; }
.split-card .btn { margin-top: auto; align-self: flex-start; }
.card-ink .btn { background: var(--ink); color: var(--text-on-ink); }
.card-ink .btn:hover { box-shadow: 0 12px 30px rgba(20, 27, 46, 0.35); }
.card-accent .btn { background: var(--ink); color: var(--text-on-ink); }
.card-accent .btn:hover { background: var(--ink-deep); }
.split-card .big-glyph { display: none; }
/* gradient text inside coloured cards falls back to card ink */
.card-accent .serif-it { background: none; color: #4A1F0A !important; }

/* ---------- Numbered rows ---------- */
.rows { display: grid; gap: 14px; }
.row-item {
  display: grid;
  grid-template-columns: 64px 1.1fr 1.6fr auto;
  gap: 26px;
  align-items: center;
  padding: 26px 30px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 0.3s ease, border-color 0.3s, background 0.3s;
}
.row-item:hover { transform: translateY(-3px); border-color: rgba(255, 169, 77, 0.5); background: rgba(255, 169, 77, 0.07); }
.row-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  background: var(--sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.row-title { font-family: var(--font-display); font-weight: 560; font-size: 1.3rem; }
.row-desc { color: var(--muted-on-ink); font-size: 15.5px; }
.row-pill {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: rgba(255, 209, 102, 0.12);
  border: 1px solid rgba(255, 209, 102, 0.3);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
}
.section-dark .row-item { background: #fff; border-color: var(--line-dawn); }
.section-dark .row-item:hover { border-color: rgba(255, 107, 74, 0.45); background: #fff; box-shadow: var(--shadow-dawn); }
.section-dark .row-desc { color: var(--muted-on-dawn); }
.section-dark .row-pill { color: #C2410C; background: rgba(255, 107, 74, 0.1); border-color: rgba(255, 107, 74, 0.28); }

/* ---------- Card grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s ease, border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 169, 77, 0.5);
  background: rgba(255, 169, 77, 0.06);
}
.card .icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: rgba(255, 169, 77, 0.14);
  border: 1px solid rgba(255, 169, 77, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.card h3 { font-size: var(--h3); margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--muted-on-ink); }
.section-dark .card { background: #fff; border-color: var(--line-dawn); }
.section-dark .card:hover { border-color: rgba(255, 107, 74, 0.4); box-shadow: var(--shadow-dawn); background: #fff; }
.section-dark .card p { color: var(--muted-on-dawn); }
.section-dark .card .icon { background: var(--dawn-soft); border-color: rgba(255, 107, 74, 0.2); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  line-height: 1.1;
  background: var(--sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .label { font-size: 14.5px; margin-top: 10px; color: var(--muted-on-ink); }
.section-dark .stat { background: #fff; border-color: var(--line-dawn); }
.section-dark .stat .label { color: var(--muted-on-dawn); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  transition: transform 0.3s ease, border-color 0.3s;
}
.step:hover { transform: translateY(-5px); border-color: rgba(255, 169, 77, 0.5); }
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 21px;
  color: #2A1608;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--sunrise);
  box-shadow: 0 0 22px rgba(255, 138, 61, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted-on-ink); }
.section-dark .step { background: #fff; border-color: var(--line-dawn); }
.section-dark .step:hover { box-shadow: var(--shadow-dawn); }
.section-dark .step p { color: var(--muted-on-dawn); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote .mark {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 0.4;
  margin-top: 12px;
  background: var(--sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.quote p { font-family: var(--font-display); font-style: italic; font-weight: 460; font-size: 18px; line-height: 1.6; }
.quote .who { margin-top: auto; font-size: 14px; font-weight: 700; }
.quote .who span { display: block; font-weight: 400; color: var(--muted-on-ink); margin-top: 2px; }

/* ---------- Big CTA — full sunrise ---------- */
.big-cta {
  background:
    radial-gradient(circle at 50% 130%, rgba(255, 249, 242, 0.35) 0%, transparent 45%),
    linear-gradient(150deg, #FF6B4A 0%, #FF8A3D 45%, #FFB65C 100%);
  color: #2A1608;
  border-radius: 28px;
  padding: clamp(50px, 7vw, 84px) clamp(32px, 5vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(255, 107, 74, 0.35);
}
.big-cta h2 { font-size: var(--h2); position: relative; }
.big-cta .serif-it { background: none; color: #5C1E06 !important; }
.big-cta p { max-width: 54ch; margin: 20px auto 32px; opacity: 0.85; position: relative; }
.big-cta .btn { background: var(--ink); color: var(--text-on-ink); position: relative; }
.big-cta .btn:hover { background: var(--ink-deep); box-shadow: 0 14px 34px rgba(20, 27, 46, 0.4); }
.big-cta .btn-ghost { background: transparent; border: 1.5px solid rgba(42, 22, 8, 0.4); color: #2A1608; }
.big-cta .btn-ghost:hover { border-color: #2A1608; background: rgba(42, 22, 8, 0.08); color: #2A1608; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 46px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15.5px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: rgba(14, 19, 34, 0.6);
  color: var(--text-on-ink);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(244, 239, 231, 0.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 169, 77, 0.16);
}
.field textarea { resize: vertical; min-height: 120px; }
.section-dark .form-card { background: #fff; border-color: var(--line-dawn); box-shadow: var(--shadow-dawn); }
.section-dark .field label { color: var(--text-on-dawn); }
.section-dark .field input, .section-dark .field select, .section-dark .field textarea {
  background: var(--dawn);
  border-color: var(--line-dawn);
  color: var(--text-on-dawn);
}
.section-dark .field input::placeholder, .section-dark .field textarea::placeholder { color: rgba(28, 33, 53, 0.38); }
.section-dark .field input:focus, .section-dark .field select:focus, .section-dark .field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.14);
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 0.25s;
}
.faq details[open] { border-color: rgba(255, 169, 77, 0.5); }
.faq summary {
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 18px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.25s;
}
.faq summary:hover { color: var(--gold); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 24px; font-weight: 400; color: var(--amber); transition: transform 0.3s; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 26px 24px; color: var(--muted-on-ink); max-width: 72ch; }
.section-dark .faq details { background: #fff; border-color: var(--line-dawn); }
.section-dark .faq details[open] { border-color: rgba(255, 107, 74, 0.4); }
.section-dark .faq summary:hover { color: #E05A38; }
.section-dark .faq .faq-body { color: var(--muted-on-dawn); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-deep);
  color: var(--text-on-ink);
  padding: clamp(56px, 7vw, 90px) 0 40px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -60vw;
  transform: translateX(-50%);
  width: 100vw; height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 138, 61, 0.14) 0%, transparent 55%);
  pointer-events: none;
}
.footer .wrap { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-links { display: grid; gap: 12px; }
.footer-links a { font-size: 15px; opacity: 0.72; transition: opacity 0.25s, color 0.25s; }
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer .blurb { opacity: 0.66; font-size: 15px; max-width: 34ch; margin-top: 16px; }
.footer-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  padding: 8px 0;
  user-select: none;
  background: var(--sunrise);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13.5px;
  opacity: 0.55;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Misc ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px); align-items: start; }
.two-col h2 { font-size: var(--h2) !important; }
.check-list { display: grid; gap: 16px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; }
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sunrise);
  color: #2A1608;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-row span {
  font-size: 13.5px;
  font-weight: 500;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  color: var(--muted-on-ink);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: default;
}
.pill-row span:hover { background: rgba(255, 169, 77, 0.12); color: var(--gold); border-color: rgba(255, 169, 77, 0.4); }

/* Inline mailto links */
a[href^="mailto"] { color: var(--gold); }
.section-dark a[href^="mailto"] { color: #E05A38; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .split, .grid-3, .grid-2, .quotes, .two-col { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .row-item { grid-template-columns: 40px 1fr; }
  .row-desc { grid-column: 2; }
  .row-pill { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ink-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    gap: 6px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; }
  .nav-links a.nav-cta { margin-left: 0; text-align: center; }
  .burger { display: flex; }
}
@media (max-width: 560px) {
  .steps, .stats { grid-template-columns: 1fr; }
}
