/* ==========================================================================
   The Ironing King — Marketing Site Stylesheet
   One stylesheet for the whole site. Mobile-first, no build step.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --blue-50:  #E8F1FF;
  --blue-100: #D6E5FF;

  /* Ink / neutrals */
  --ink-900: #111827;
  --ink-800: #1F2937;
  --ink-700: #374151;
  --ink-600: #6B7280;
  --ink-500: #7B8597;
  --ink-400: #9CA3AF;
  --ink-300: #D1D5DB;

  --surface: #F9FAFB;
  --surface-2: #F3F4F6;
  --white:   #FFFFFF;
  --border:  #E5E7EB;
  --border-strong: #D1D5DB;

  --success: #22C55E;
  --warning: #F59E0B;
  --error:   #EF4444;

  /* A warm cream used very sparingly as an editorial backdrop */
  --cream:   #F5F0E8;
  --cream-2: #EFE7D8;

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card:  0 4px 10px rgba(17, 24, 39, 0.05);
  --shadow-float: 0 8px 24px rgba(17, 24, 39, 0.08);
  --shadow-lift:  0 18px 40px -18px rgba(37, 99, 235, 0.35);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --section-pad: clamp(4rem, 8vw, 8rem);

  /* Typography stacks */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-serif: "Fraunces", "Instrument Serif", "Times New Roman", Georgia, serif;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --dur-fast: 160ms;
  --dur-base: 240ms;
  --dur-slow: 480ms;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

a:hover { color: var(--blue-600); }

/* Selection */
::selection { background: var(--blue-500); color: var(--white); }

/* Focus rings */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.005em;
  line-height: 1.35;
}

h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
}

p { margin: 0 0 1rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blue-500);
}

.eyebrow--muted { color: var(--ink-500); }
.eyebrow--muted::before { background: var(--ink-300); }

.serif { font-family: var(--font-serif); }
.italic { font-style: italic; }
.muted { color: var(--ink-600); }

.lede {
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.25rem);
  color: var(--ink-700);
  line-height: 1.6;
  max-width: 56ch;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-block: var(--section-pad);
}

.section--surface { background: var(--surface); }
.section--cream   { background: var(--cream); }
.section--ink     { background: var(--ink-900); color: var(--white); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink p { color: rgba(255,255,255,0.78); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { color: var(--ink-600); margin-top: 1rem; max-width: 56ch; }

/* Two-column grid building block */
.split {
  display: grid;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 0.95fr; }
  .split--reverse > :first-child { order: 2; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-fast) var(--ease);
  will-change: transform;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink-900);
  color: var(--white);
  box-shadow: 0 2px 0 rgba(17,24,39,0.04);
}
.btn-primary:hover {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: var(--shadow-lift);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink-900);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--ink-900);
  color: var(--ink-900);
}

.btn-blue {
  background: var(--blue-500);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: var(--shadow-lift);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-sm { padding: 0.6rem 1.05rem; font-size: 0.85rem; }
.btn-lg { padding: 1.05rem 1.75rem; font-size: 1rem; }

.btn-icon-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--dur-fast) var(--ease);
}
.btn:hover .btn-icon-arrow { transform: translateX(3px); }

/* ---------- Site header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.96);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 76px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}

.nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  background: var(--blue-500);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--radius-pill);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.nav-links a:hover { background: var(--surface-2); color: var(--ink-900); }
.nav-links a.is-active { color: var(--ink-900); background: var(--surface-2); }

.nav-cta { display: none; }

@media (min-width: 900px) {
  .nav-links { display: inline-flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile nav toggle */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--ink-900);
}

.nav-toggle svg { width: 18px; height: 18px; }

/* Mobile overlay nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  padding: 1.5rem;
  z-index: 60;
  display: none;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav.is-open { display: flex; }

body.no-scroll { overflow: hidden; }

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-links a {
  display: block;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}

.mobile-nav-cta { margin-top: auto; }
.mobile-nav-cta .btn { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 6vw, 6rem) clamp(4rem, 8vw, 8rem);
  background:
    radial-gradient(circle at 92% 18%, rgba(59, 130, 246, 0.08), transparent 38%),
    linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
  overflow: hidden;
}

.hero::before {
  /* Decorative grid lines */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(17,24,39,0.04) 1px, transparent 1px);
  background-size: 80px 100%;
  background-position: center;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, black 25%, black 80%, transparent);
}

.hero-inner {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.8rem 0.4rem 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-700);
  box-shadow: var(--shadow-card);
}

.hero-eyebrow-dot {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-pill);
  background: var(--blue-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-eyebrow-dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.04); }
}

.hero h1 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--blue-600);
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.2rem);
  color: var(--ink-600);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2.25rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--ink-600);
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--blue-500);
}

/* Phone mockup */
.phone-frame-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.phone-frame-wrap::before {
  /* big watermark numeral / mark */
  content: "";
  position: absolute;
  inset: -20% -10% -10% -10%;
  background: radial-gradient(closest-side, rgba(59, 130, 246, 0.18), transparent 70%);
  z-index: 0;
  filter: blur(20px);
}

.phone-decoration {
  position: absolute;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-300);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.phone-decoration--tl { top: 8%; left: 0; }
.phone-decoration--br { bottom: 4%; right: 2%; }

.phone-decoration svg { width: 18px; height: 18px; color: var(--ink-400); }

.phone {
  position: relative;
  z-index: 1;
  width: min(320px, 88%);
  aspect-ratio: 320 / 660;
  background: var(--ink-900);
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 30px 60px -30px rgba(17,24,39,0.45),
    0 0 0 1px rgba(17,24,39,0.04);
  transform: rotate(-3deg);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: var(--ink-900);
  border-radius: 14px;
  z-index: 2;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
}

.phone-status {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-900);
}

.phone-icons {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  color: var(--ink-900);
}

.phone-greeting {
  margin-top: 4px;
}
.phone-greeting-eyebrow {
  font-size: 11px;
  color: var(--ink-500);
  margin-bottom: 2px;
}
.phone-greeting-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.phone-search {
  height: 38px;
  background: var(--surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
  color: var(--ink-400);
  font-size: 11px;
}
.phone-search svg { width: 14px; height: 14px; }

.phone-banner {
  position: relative;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: 14px;
  padding: 14px 14px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.phone-banner-title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  max-width: 60%;
}
.phone-banner-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.85);
  margin-top: 2px;
}
.phone-banner-cta {
  background: var(--white);
  color: var(--ink-900);
  font-size: 10px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
}
.phone-banner::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.phone-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 2px;
}

.phone-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.phone-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 4px;
  text-align: center;
}

.phone-service-icon {
  width: 28px;
  height: 28px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.phone-service-icon svg { width: 14px; height: 14px; }
.phone-service-name {
  font-size: 9px;
  font-weight: 600;
  color: var(--ink-800);
  line-height: 1.2;
}

.phone-order {
  margin-top: auto;
  background: var(--surface);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-order-dot {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--blue-500);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.phone-order-dot svg { width: 14px; height: 14px; }
.phone-order-text { flex: 1; }
.phone-order-title { font-size: 11px; font-weight: 600; color: var(--ink-900); }
.phone-order-sub { font-size: 9px; color: var(--ink-500); margin-top: 1px; }
.phone-order-chip {
  font-size: 9px;
  font-weight: 600;
  background: rgba(34,197,94,0.12);
  color: #15803D;
  padding: 3px 8px;
  border-radius: 999px;
}

/* Floating sticker beside the phone */
.phone-sticker {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
}
.phone-sticker--rating {
  top: 6%;
  right: -2%;
  transform: rotate(4deg);
}
.phone-sticker--time {
  bottom: 8%;
  left: -2%;
  transform: rotate(-3deg);
}

.phone-sticker-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--blue-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
}
.phone-sticker-icon svg { width: 16px; height: 16px; }
.phone-sticker-label { font-size: 10px; color: var(--ink-500); letter-spacing: 0.04em; text-transform: uppercase; }
.phone-sticker-value {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .phone { transform: rotate(-2deg) scale(0.95); }
  .phone-sticker--rating { right: 4%; }
  .phone-sticker--time { left: 4%; }
}

/* ---------- Value props ---------- */
.value-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
  border-color: var(--blue-100);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.value-card-icon svg { width: 22px; height: 22px; }

.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { color: var(--ink-600); margin: 0; }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

.step {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.step-num {
  position: absolute;
  right: 1rem;
  top: 0.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--blue-500);
  opacity: 0.12;
  pointer-events: none;
}

.step-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 0.85rem;
}

.step h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}

.step p { color: var(--ink-600); margin: 0; font-size: 0.95rem; }

.step-icon {
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--blue-500);
}
.step-icon svg { width: 24px; height: 24px; }

/* ---------- Services grid ---------- */
.service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-100);
  box-shadow: var(--shadow-float);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-card-icon svg { width: 26px; height: 26px; }

.service-card h3 { margin: 0; }
.service-card p { color: var(--ink-600); margin: 0; }

.service-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.service-price span { font-family: var(--font-sans); font-size: 0.8rem; color: var(--ink-500); letter-spacing: 0; margin-left: 4px; font-weight: 400; }

.service-price-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}

/* Detailed service block on services.html */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

@media (min-width: 760px) {
  .service-detail { grid-template-columns: 220px 1fr; align-items: start; }
}

.service-detail + .service-detail { margin-top: 1.5rem; }

.service-detail-head { display: flex; flex-direction: column; gap: 1rem; }
.service-detail h2 { font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem); }

.service-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-detail-meta dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-500);
  font-weight: 600;
}
.service-detail-meta dd { margin: 0; color: var(--ink-800); font-size: 0.95rem; line-height: 1.55; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--ink-700);
}

.tag--positive { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.25); color: #15803D; }
.tag--neutral  { background: var(--surface); border-color: var(--border); color: var(--ink-600); }

/* ---------- Why-choose / feature list ---------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .feature-list { grid-template-columns: repeat(2, 1fr); }
}

.feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.feature-list svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--blue-600);
  margin-top: 0.15rem;
}

.feature-list span { font-size: 0.95rem; color: var(--ink-800); line-height: 1.5; }

/* ---------- Testimonials ---------- */
.testimonial-wrap {
  position: relative;
}

.testimonial-quote-mark {
  position: absolute;
  top: -1.25rem;
  left: -0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(10rem, 18vw, 18rem);
  line-height: 0.8;
  color: var(--blue-50);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.testimonials {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.testimonial-rating {
  display: inline-flex;
  gap: 0.15rem;
  color: var(--blue-500);
}
.testimonial-rating svg { width: 16px; height: 16px; }

.testimonial-quote {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin: 0;
}

.testimonial-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--ink-900);
  font-size: 0.95rem;
}

.testimonial-meta {
  font-size: 0.82rem;
  color: var(--ink-500);
}

/* ---------- App CTA band ---------- */
.app-band {
  position: relative;
  background: var(--blue-500);
  color: var(--white);
  overflow: hidden;
}

.app-band::before {
  /* Decorative concentric circles */
  content: "";
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(400px, 50vw, 800px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 35%),
    radial-gradient(circle at center, transparent 28%, rgba(255,255,255,0.06) 28%, rgba(255,255,255,0.06) 30%, transparent 30%),
    radial-gradient(circle at center, transparent 42%, rgba(255,255,255,0.06) 42%, rgba(255,255,255,0.06) 44%, transparent 44%);
  pointer-events: none;
}

.app-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .app-band-inner { grid-template-columns: 1.2fr 0.8fr; }
}

.app-band h2 {
  font-size: clamp(2rem, 3vw + 1rem, 3.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 18ch;
}

.app-band p { color: rgba(255,255,255,0.85); max-width: 48ch; margin-bottom: 2rem; }

.app-store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--ink-900);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.app-store-btn:hover { transform: translateY(-2px); background: #000; color: var(--white); }

.app-store-btn svg { width: 22px; height: 22px; }

.app-store-btn-text { display: flex; flex-direction: column; line-height: 1; }
.app-store-btn-small { font-size: 0.65rem; opacity: 0.75; letter-spacing: 0.04em; }
.app-store-btn-big { font-size: 0.95rem; font-weight: 600; margin-top: 2px; }

.app-band-side {
  display: flex;
  justify-content: center;
}

.app-band-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.app-band-stat-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.app-band-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  max-width: 22ch;
}

.app-band-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 380px;
}

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

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  padding: 0.4rem 0;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 12px 1.5px, 1.5px 12px;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--ink-700);
  flex: 0 0 32px;
  transition: transform var(--dur-base) var(--ease), background-color var(--dur-fast) var(--ease);
}

.faq-item[open] summary::after {
  background-size: 12px 1.5px, 0 0;
  background-color: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
}

.faq-item summary:hover { color: var(--blue-600); }

.faq-answer {
  padding: 0.5rem 3rem 0.25rem 0;
  color: var(--ink-600);
  font-size: 1rem;
  max-width: 70ch;
}

/* ---------- Pricing page ---------- */
.pricing-summary {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .pricing-summary { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .pricing-summary { grid-template-columns: repeat(3, 1fr); }
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.pricing-row-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.pricing-row-unit {
  font-size: 0.8rem;
  color: var(--ink-500);
  margin-top: 2px;
}

.pricing-row-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--blue-600);
  letter-spacing: -0.01em;
  text-align: right;
}

/* Loyalty plan cards */
.plan-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) { .plan-grid { grid-template-columns: repeat(3, 1fr); } }

.plan {
  position: relative;
  padding: 2.25rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.plan--feature {
  background: var(--ink-900);
  color: var(--white);
  border-color: var(--ink-900);
}
.plan--feature * { color: inherit; }
.plan--feature .plan-name { color: var(--blue-500); }
.plan--feature .plan-feature-list svg { color: var(--blue-500); }

.plan-name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.plan-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
}

.plan-subtitle {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--ink-500);
  font-size: 1rem;
  margin: 0;
}

.plan--feature .plan-subtitle { color: rgba(255,255,255,0.7); }

.plan-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.5;
}

.plan-feature-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--blue-600);
  margin-top: 0.2rem;
}

.plan-cta { margin-top: auto; }

/* ---------- About page bits ---------- */
.story {
  display: grid;
  gap: clamp(2rem, 4vw, 5rem);
}

@media (min-width: 960px) {
  .story { grid-template-columns: 1fr 1.2fr; }
}

.story-aside {
  position: sticky;
  top: 100px;
  align-self: start;
}

.story-aside .eyebrow { margin-bottom: 1rem; }

.story-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-700);
  margin-bottom: 1.25rem;
  max-width: 60ch;
}

.values-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }

.value {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.value-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--blue-500);
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
}

.value h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.value p { margin: 0; color: var(--ink-600); }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  position: relative;
  padding-block: clamp(4rem, 7vw, 7rem) clamp(2.5rem, 5vw, 5rem);
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(2.25rem, 4vw + 1rem, 4rem);
  margin: 1rem 0 1.25rem;
  max-width: 18ch;
}

.page-hero h1 em { font-style: italic; color: var(--blue-600); font-weight: 400; }

.page-hero p {
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.2rem);
  color: var(--ink-600);
  max-width: 56ch;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .form-row--full { grid-column: 1 / -1; }
}

.form-row { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: 0.01em;
}

.form-label .req { color: var(--blue-600); margin-left: 2px; }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--ink-900);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}

.form-textarea { min-height: 140px; resize: vertical; }

.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.form-error {
  color: var(--error);
  font-size: 0.82rem;
  min-height: 1rem;
}

.form-submit { margin-top: 0.75rem; }

.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #166534;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
}

.form-success.is-visible { display: block; }
.form-success h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.4rem; color: #166534; margin-bottom: 0.5rem; }
.form-success p { color: #166534; margin: 0; }

/* Contact split */
.contact-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .contact-split { grid-template-columns: 0.85fr 1.15fr; }
}

.contact-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}
.contact-detail-icon svg { width: 18px; height: 18px; }

.contact-detail-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 0.15rem;
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--ink-900);
}

.contact-detail-value a { color: var(--ink-900); border-bottom: 1px solid transparent; }
.contact-detail-value a:hover { border-bottom-color: var(--blue-500); color: var(--blue-600); }

/* ---------- Business / commercial bits ---------- */
.benefit-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

.benefit {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.benefit-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--blue-500);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.benefit h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.benefit p { color: var(--ink-600); margin: 0; }

.industry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
}

.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--surface);
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-800);
}

.industry-chip svg { width: 16px; height: 16px; color: var(--blue-600); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.75);
  padding: clamp(3.5rem, 6vw, 6rem) 0 2rem;
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer-brand-block { max-width: 320px; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--blue-500);
}

.footer-brand span {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.015em;
  font-weight: 500;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin: 0 0 1.5rem;
  max-width: 26ch;
}

.footer-social {
  display: inline-flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.footer-social a:hover {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-list a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--dur-fast) var(--ease);
}

.footer-list a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--white); }

/* ---------- 404 ---------- */
.notfound {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(59,130,246,0.08), transparent 50%),
    var(--white);
}

.notfound-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 0.9;
  color: var(--blue-500);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.notfound h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
}

.notfound p { max-width: 48ch; margin: 1rem auto 2rem; color: var(--ink-600); }

/* ---------- Generic prose (privacy) ---------- */
.prose {
  max-width: 70ch;
  margin: 0 auto;
}

.prose h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; }
.prose h3 { font-size: 1.15rem; margin: 2rem 0 0.5rem; font-family: var(--font-sans); font-weight: 600; }
.prose p, .prose li { color: var(--ink-700); line-height: 1.7; font-size: 1rem; }
.prose ul { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.5rem; }

/* ---------- Misc utilities ---------- */
.mt-0 { margin-top: 0 !important; }
.mt-6 { margin-top: 2rem; }
.mt-8 { margin-top: 4rem; }
.center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 2rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.hide-mobile { display: none; }
@media (min-width: 760px) { .hide-mobile { display: revert; } }

/* ---------- Reveal on scroll (light, optional, JS-driven) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
