/* ============================================================================
   IPBases — Marketing Site Stylesheet
   ============================================================================
   Aesthetic direction: editorial precision + law-firm trustworthiness.
   Navy primary, amber accent (used sparingly, only on the most important CTAs
   and decorative flourishes). Display font is Fraunces (a modern serif with
   character); body is Inter Tight. The combination signals "established,
   serious, but contemporary" — exactly what trademark partners expect.
   ============================================================================ */

:root {
  /* ── Color tokens ─────────────────────────────────────────────────────── */
  /* Primary palette: deep navy → ink black. Used for backgrounds and text. */
  --c-ink:        #0a1628;   /* darkest, used for hero/footer */
  --c-navy:       #142849;   /* main brand */
  --c-navy-soft:  #1e3a6b;
  --c-navy-50:    #f5f7fb;   /* tinted bg */

  /* Accent — used SPARINGLY, only on hero CTA and key flourishes */
  --c-amber:      #c69963;   /* warm amber, refined not garish */
  --c-amber-deep: #a07640;
  --c-amber-soft: #f4ead6;   /* tinted bg for callout cards */

  /* Neutrals */
  --c-white:      #fefdfb;   /* off-white, warmer than pure white */
  --c-paper:      #faf8f3;   /* paper texture base */
  --c-line:       #e6e2d8;   /* hairline divider */
  --c-line-soft:  #f0ece2;
  --c-text:       #1a2237;
  --c-text-muted: #5a6378;
  --c-text-light: #8b94a8;

  /* Functional */
  --c-success:    #2d7a5f;
  --c-warning:    #b8860b;
  --c-error:      #a34040;

  /* ── Typography ───────────────────────────────────────────────────────── */
  --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-body:    'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', monospace;

  /* ── Layout ───────────────────────────────────────────────────────────── */
  --max-w:        1240px;
  --max-w-prose:  680px;
  --gutter:       clamp(20px, 5vw, 64px);
  --section-pad:  clamp(64px, 9vw, 128px);

  /* ── Effects ──────────────────────────────────────────────────────────── */
  --shadow-sm:  0 1px 2px rgba(10,22,40,.04), 0 0 0 1px rgba(10,22,40,.04);
  --shadow-md:  0 4px 16px rgba(10,22,40,.06), 0 0 0 1px rgba(10,22,40,.04);
  --shadow-lg:  0 12px 40px rgba(10,22,40,.10), 0 0 0 1px rgba(10,22,40,.04);
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-paper);
  font-feature-settings: "ss01", "cv11";  /* Inter Tight stylistic alternates */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--c-navy); text-decoration: none; transition: color 120ms ease; }
a:hover { color: var(--c-amber-deep); }

/* ── Typography scale ──────────────────────────────────────────────────── */
.h-display {
  font-family: var(--font-display);
  font-weight: 400;     /* Fraunces looks best at 400-500, NOT bold */
  font-style: normal;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;  /* Fraunces axes */
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--c-ink);
}
h1.h-display, .h-1 {
  font-size: clamp(40px, 6vw, 76px);
}
h2.h-display, .h-2 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
}
h3.h-display, .h-3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-amber-deep);
  display: inline-block;
  margin-bottom: 16px;
}

p { color: var(--c-text); max-width: 65ch; }
p.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--c-text-muted);
}

/* ── Containers ───────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-prose {
  max-width: var(--max-w-prose);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
section.tight { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 80px); }

/* ── Header / nav ─────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Dark navy ink, same as footer — gives the amber shield maximum contrast */
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(254, 253, 251, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  /* Hover state is handled on the logo itself; no text color change here */
}
.brand:hover { opacity: 0.85; }
.brand-logo {
  height: 72px;
  width: auto;
  display: block;
  /* Subtle transition for any future hover treatments */
  transition: opacity 160ms ease;
}
@media (max-width: 600px) {
  .brand-logo { height: 56px; }
}
/* Footer logo sits inside .footer-brand which is on a dark bg — slightly larger
   for prominence, and we use the light variant via different src */
.site-footer .brand-logo { height: 80px; margin-bottom: 12px; }
nav.nav-primary { display: flex; align-items: center; gap: 36px; }
nav.nav-primary ul { display: flex; gap: 32px; list-style: none; }
nav.nav-primary a {
  color: rgba(254, 253, 251, 0.78);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
nav.nav-primary a:hover { color: var(--c-amber); }
nav.nav-primary a.active { color: var(--c-amber); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(254, 253, 251, 0.2);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  color: rgba(254, 253, 251, 0.85);
}

@media (max-width: 880px) {
  nav.nav-primary ul { display: none; }
  nav.nav-primary.is-open ul {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--c-ink);
    padding: 20px var(--gutter);
    gap: 16px;
    border-bottom: 1px solid rgba(254, 253, 251, 0.08);
    box-shadow: var(--shadow-md);
  }
  .nav-toggle { display: inline-flex; align-items: center; gap: 6px; }
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 160ms ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-ink);
  color: var(--c-paper);
}
.btn-primary:hover {
  background: var(--c-navy);
  color: var(--c-amber-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-amber {
  background: var(--c-amber);
  color: var(--c-ink);
  font-weight: 600;
}
.btn-amber:hover {
  background: var(--c-amber-deep);
  color: var(--c-paper);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(198, 153, 99, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line);
}
.btn-ghost:hover {
  background: var(--c-ink);
  color: var(--c-paper);
  border-color: var(--c-ink);
}
.btn-link {
  color: var(--c-navy);
  padding: 0;
  font-weight: 500;
  border: 0;
  background: none;
}
.btn-link::after { content: " →"; transition: transform 160ms ease; display: inline-block; }
.btn-link:hover { color: var(--c-amber-deep); }
.btn-link:hover::after { transform: translateX(4px); }

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── Cards ────────────────────────────────────────────────────────────── */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 200ms ease;
}
.card:hover {
  border-color: var(--c-navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.card h3 { font-family: var(--font-display); font-weight: 500; font-size: 22px; margin-bottom: 12px; color: var(--c-ink); letter-spacing: -0.01em; }
.card p { color: var(--c-text-muted); font-size: 15px; line-height: 1.55; }
.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--c-amber-soft);
  color: var(--c-amber-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  padding-top: clamp(60px, 9vw, 120px);
  padding-bottom: clamp(60px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* Subtle paper-grain texture for warmth, not a flat solid */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(198, 153, 99, 0.08), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(20, 40, 73, 0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: italic;
  color: var(--c-amber-deep);
  font-weight: 400;
}
.hero .lead { margin-bottom: 32px; max-width: 56ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 40px;
  font-size: 13px;
  color: var(--c-text-light);
  letter-spacing: 0.02em;
}
.hero-trust strong { color: var(--c-text); font-weight: 500; }

/* Hero visual — minimalist mock dashboard */
.hero-mock {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transition: transform 400ms ease;
}
.hero-mock:hover { transform: perspective(1200px) rotateY(0) rotateX(0); }
.hero-mock-bar {
  background: var(--c-ink);
  color: var(--c-amber);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.hero-mock-bar::before {
  content: "● ● ●";
  color: rgba(198, 153, 99, 0.4);
  letter-spacing: 2px;
  margin-right: 12px;
}
.hero-mock-body { padding: 24px; }

/* ── Hero timeline (live-animating activity feed) ───────────────────────── */
.hero-timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-tl-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--c-paper);
  border-left: 2px solid transparent;
  opacity: 0;
  transform: translateY(8px);
  animation: hero-tl-in 600ms ease forwards;
}
.hero-tl-row[data-delay="0"]    { animation-delay: 200ms; }
.hero-tl-row[data-delay="800"]  { animation-delay: 1000ms; }
.hero-tl-row[data-delay="1600"] { animation-delay: 1800ms; }
.hero-tl-row[data-delay="2400"] { animation-delay: 2600ms; }
.hero-tl-row[data-delay="3200"] { animation-delay: 3400ms; }

@keyframes hero-tl-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-tl-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono, ui-monospace, monospace);
}
.hero-tl-content { flex: 1; min-width: 0; }
.hero-tl-meta {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.hero-tl-meta span:first-child { letter-spacing: 0.06em; }
.hero-tl-text {
  font-size: 12px;
  color: var(--c-text);
  line-height: 1.4;
}
.hero-tl-text strong {
  font-weight: 600;
  background: var(--c-amber-soft);
  padding: 0 4px;
  border-radius: 3px;
  color: var(--c-amber-deep);
}

@media (prefers-reduced-motion: reduce) {
  .hero-tl-row { animation: none; opacity: 1; transform: none; }
}

/* ── Sections ─────────────────────────────────────────────────────────── */
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head .h-2 { margin-bottom: 16px; }
.section-head p.lead { margin-top: 8px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .feature-grid-3 { grid-template-columns: 1fr; } }

/* Inline icon set — single-color line icons */
.f-icon {
  width: 28px; height: 28px; stroke: currentColor; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

/* ── Two-up split ─────────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 2; }
}
.split-text h2 { margin-bottom: 20px; }
.split-text p { margin-bottom: 16px; color: var(--c-text-muted); }
.split-text ul {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.split-text ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--c-text);
}
.split-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 2px;
  background: var(--c-amber);
}

/* ── Banded sections (alternating background) ─────────────────────────── */
.band-ink {
  background: var(--c-ink);
  color: var(--c-paper);
}
.band-ink h2, .band-ink h3, .band-ink .h-display { color: var(--c-paper); }
.band-ink .eyebrow { color: var(--c-amber); }
.band-ink p { color: rgba(254, 253, 251, 0.7); }
.band-ink a:not(.btn) { color: var(--c-amber); }
.band-ink .card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--c-paper);
}
.band-ink .card h3 { color: var(--c-paper); }
.band-ink .card p { color: rgba(254, 253, 251, 0.65); }
.band-ink .card .icon {
  background: rgba(198, 153, 99, 0.15);
  color: var(--c-amber);
}
.band-ink .card:hover { background: rgba(255, 255, 255, 0.05); border-color: var(--c-amber); transform: translateY(-2px); }

.band-paper { background: var(--c-paper); }
.band-white { background: var(--c-white); }
.band-amber { background: var(--c-amber-soft); }

/* ── Stat row ─────────────────────────────────────────────────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 40px 0;
}
.stat {
  text-align: left;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  line-height: 1;
  color: var(--c-ink);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--c-text-muted);
  letter-spacing: 0.02em;
}

/* ── Quote / pull ──────────────────────────────────────────────────────── */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.3;
  font-style: italic;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  border-left: 3px solid var(--c-amber);
  padding-left: 32px;
  max-width: 800px;
}

/* ── CTA band (used at bottom of every page) ──────────────────────────── */
.cta-band {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: clamp(48px, 7vw, 96px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(198, 153, 99, 0.12), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(198, 153, 99, 0.08), transparent 50%);
  pointer-events: none;
}
.cta-band > .container { position: relative; }
.cta-band h2 { color: var(--c-paper); margin-bottom: 16px; }
.cta-band p { color: rgba(254, 253, 251, 0.75); max-width: 600px; margin: 0 auto 32px; }
.cta-band .btn-primary { background: var(--c-amber); color: var(--c-ink); }
.cta-band .btn-primary:hover { background: var(--c-paper); color: var(--c-ink); }

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-ink);
  color: rgba(254, 253, 251, 0.6);
  padding: 72px 0 32px;
  font-size: 14px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-brand { grid-column: 1 / -1; }
}
.site-footer h6 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer a {
  color: rgba(254, 253, 251, 0.7);
  font-size: 14.5px;
}
.site-footer a:hover { color: var(--c-amber); }
.site-footer .footer-brand .brand { margin-bottom: 16px; }
.site-footer .footer-brand .brand:hover { opacity: 0.85; }
.site-footer .footer-brand p { color: rgba(254, 253, 251, 0.55); max-width: 360px; font-size: 14px; }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(254, 253, 251, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

/* ── Pricing table ────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin: 48px auto 0;
  max-width: 760px;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--c-ink);
  background: var(--c-ink);
  color: var(--c-paper);
  position: relative;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured h3 { color: var(--c-paper); }
.price-card.featured .price-amount { color: var(--c-amber); }
.price-card.featured .price-cycle { color: rgba(254, 253, 251, 0.55); }
.price-card.featured ul li { color: rgba(254, 253, 251, 0.85); }
.price-card.featured .pop-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-amber);
  color: var(--c-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--c-ink);
}
.price-card .price-tag-line {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: var(--c-ink);
  letter-spacing: -0.03em;
}
.price-cycle { font-size: 14px; color: var(--c-text-muted); margin-bottom: 32px; }
.price-card ul {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.price-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--c-text);
}
.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-amber-deep);
  font-weight: 700;
}
.price-card.featured ul li::before { color: var(--c-amber); }

/* ── Form styles ──────────────────────────────────────────────────────── */
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--c-text);
  letter-spacing: -0.005em;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--c-navy);
  box-shadow: 0 0 0 3px rgba(20, 40, 73, 0.08);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row .help { font-size: 12px; color: var(--c-text-light); margin-top: 6px; }

/* ── Misc utilities ───────────────────────────────────────────────────── */
.text-amber { color: var(--c-amber-deep); }
.text-muted { color: var(--c-text-muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-3 { margin-bottom: 24px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* Small badge for inline labels */
.badge {
  display: inline-block;
  background: var(--c-amber-soft);
  color: var(--c-amber-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 10px;
}
.badge-ink { background: var(--c-ink); color: var(--c-amber); }

/* ── Animation: gentle fade-up on scroll ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 600ms cubic-bezier(0.16, 1, 0.3, 1) both; }
.fade-up-2 { animation: fadeUp 600ms 100ms cubic-bezier(0.16, 1, 0.3, 1) both; }
.fade-up-3 { animation: fadeUp 600ms 200ms cubic-bezier(0.16, 1, 0.3, 1) both; }
.fade-up-4 { animation: fadeUp 600ms 300ms cubic-bezier(0.16, 1, 0.3, 1) both; }

/* Scroll-triggered reveals (managed by JS) */
.reveal-pending {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-pending.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0ms !important;
    transition-duration: 0ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Print: keep things clean for any printable contracts/invoices ────── */
@media print {
  .site-header, .site-footer, .cta-band { display: none; }
  body { background: white; color: black; }
}
