/* ============================================================
   Fremja — fremja.fi
   Editorial-dark aesthetic. Fraunces + IBM Plex Sans.
   ============================================================ */

:root {
  /* Surfaces */
  --bg-deep: #15041e;
  --bg: #1c0729;
  --bg-card: #210b32;
  --bg-elevated: #2a1247;

  /* Ink */
  --ink: #ece7da;
  --ink-strong: #ffffff;
  --ink-muted: rgba(236, 231, 218, 0.62);
  --ink-dim: rgba(236, 231, 218, 0.38);

  /* Accents — used sparingly */
  --accent: #6ee7b7;
  --accent-warm: #f59e8a;
  --accent-violet: #c4b5fd;

  /* Lines */
  --rule: rgba(236, 231, 218, 0.10);
  --rule-strong: rgba(236, 231, 218, 0.20);

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-sans: 'IBM Plex Sans', -apple-system, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;

  /* Layout */
  --container: 1180px;
  --reading: 680px;

  /* Radii */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern', 'liga', 'calt';
  position: relative;
  overflow-x: hidden;
}

/* Atmospheric background — very subtle */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 900px 600px at 85% -5%, rgba(245, 158, 138, 0.06), transparent 55%),
    radial-gradient(ellipse 1000px 700px at -10% 95%, rgba(110, 231, 183, 0.05), transparent 60%);
}

/* Grain overlay — very faint */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

main, header, footer { position: relative; z-index: 2; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--accent);
  color: var(--bg-deep);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--bg-deep);
  padding: 12px 16px;
  font-weight: 500;
  z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ----- Type primitives ----- */

.meta-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: none;
  font-variant-numeric: tabular-nums;
}

.eyebrow-h2 {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  margin: 0 0 32px;
  text-transform: uppercase;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 4, 30, 0.78);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  font-variation-settings: 'SOFT' 50, 'opsz' 14;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  font-variation-settings: 'SOFT' 0, 'opsz' 14;
  line-height: 1;
  padding-bottom: 1px;
}
.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.005em;
  transition: color 0.18s ease;
  position: relative;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:hover::after { transform: scaleX(1); }

@media (max-width: 720px) {
  .nav { display: none; }
  .header-inner { height: 64px; }
}

/* ----- Hero ----- */
.hero {
  padding: 120px 0 96px;
  border-bottom: 1px solid var(--rule);
}
.hero-inner {
  display: grid;
  gap: 32px;
}
.hero-meta {
  opacity: 0;
  animation: rise 0.8s 0.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
  font-size: clamp(48px, 7.4vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 16ch;
  color: var(--ink-strong);
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) {
  animation-delay: 0.42s;
  font-style: italic;
  font-variation-settings: 'SOFT' 80, 'opsz' 144;
  color: var(--accent);
}
.hero-lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0;
  opacity: 0;
  animation: rise 1s 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  opacity: 0;
  animation: rise 1s 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.pull-hero {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
  opacity: 0;
  animation: rise 1.2s 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ----- Pull quotes ----- */
.pull {
  margin: 0;
  max-width: 28ch;
}
.pull blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pull blockquote::before {
  content: "“";
  font-size: 1.3em;
  line-height: 0;
  color: var(--accent);
  margin-right: 4px;
  position: relative;
  top: 0.18em;
}
.pull blockquote::after {
  content: "”";
  font-size: 1.3em;
  line-height: 0;
  color: var(--accent);
  margin-left: 2px;
  position: relative;
  top: 0.18em;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.14s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-deep);
}
.btn-primary:hover {
  background: #8df0c5;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-ghost:hover {
  border-color: var(--ink-muted);
  color: var(--ink-strong);
}
.btn-lg {
  font-size: 17px;
  padding: 17px 30px;
}

/* ----- Signals strip ----- */
.signals {
  padding: 56px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.signal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.signal-list li {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  padding: 8px 16px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  background: rgba(236, 231, 218, 0.025);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.signal-list li:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(110, 231, 183, 0.06);
}
.signals-note {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 60ch;
  margin: 0;
}

/* ----- Sections ----- */
.section {
  padding: 112px 0;
  border-bottom: 1px solid var(--rule);
}
.section-head {
  margin-bottom: 64px;
  display: grid;
  gap: 14px;
}
.section-head-center {
  text-align: center;
  justify-items: center;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'SOFT' 40, 'opsz' 96;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink-strong);
  margin: 0;
  max-width: 22ch;
}
.section-title.big {
  font-size: clamp(48px, 7vw, 88px);
  max-width: 18ch;
}
.section-title em {
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
  color: var(--accent);
}

/* ----- Products (chapter style) ----- */
.section-products .section-head { margin-bottom: 80px; }

.product {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 64px;
  padding: 80px 0;
  border-top: 1px solid var(--rule);
}
.product:last-child { border-bottom: 1px solid var(--rule); }

.product-head {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 24px;
}
.product-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
  font-size: clamp(72px, 10vw, 128px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--accent);
  display: block;
}
.product-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'SOFT' 30, 'opsz' 96;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink-strong);
  margin: 0 0 6px;
}
.product-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0;
}

.product-body {
  display: grid;
  gap: 36px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-muted);
}
.product-body > p {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink);
  max-width: 60ch;
  margin: 0;
}

/* Drop cap */
.drop .dropcap {
  float: left;
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'SOFT' 60, 'opsz' 144;
  font-size: 5em;
  line-height: 0.86;
  padding: 0.06em 0.08em 0 0;
  color: var(--accent);
  font-style: normal;
}

/* ----- Timeline ----- */
.timeline {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.timeline li {
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.timeline li:nth-child(odd) { border-right: 1px solid var(--rule); padding-right: 28px; }
.timeline li:nth-child(even) { padding-left: 28px; }

.t-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.timeline h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'SOFT' 40, 'opsz' 36;
  font-size: 19px;
  letter-spacing: -0.012em;
  margin: 0 0 8px;
  color: var(--ink-strong);
}
.timeline p {
  font-size: 15px;
  color: var(--ink-muted);
  margin: 0;
  max-width: 36ch;
}

/* ----- Outcomes mantra ----- */
.outcomes {
  margin-top: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.outcomes-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.outcome-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.outcome-row-quad { grid-template-columns: repeat(4, 1fr); }
.outcome-row span {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'SOFT' 80, 'opsz' 96;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.012em;
  color: var(--ink-strong);
  line-height: 1.1;
}

/* ----- Continuous service formats ----- */
.formats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.format {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}
.format h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'SOFT' 30, 'opsz' 36;
  font-size: 21px;
  letter-spacing: -0.014em;
  margin: 0;
  color: var(--ink-strong);
}
.format p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
}

/* ----- Method (two-col) ----- */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--rule);
}
.check-list li {
  position: relative;
  padding: 18px 0 18px 36px;
  border-bottom: 1px solid var(--rule);
  font-size: 17px;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 36px;
  margin: 0;
}
.info-box h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'SOFT' 30, 'opsz' 36;
  font-size: 24px;
  letter-spacing: -0.014em;
  margin: 0 0 16px;
  color: var(--ink-strong);
}
.info-box p {
  color: var(--ink-muted);
  margin: 0 0 14px;
  font-size: 16px;
}
.info-box .info-tail {
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-style: italic;
  font-family: var(--font-display);
  color: var(--ink);
}

/* ----- Result section ----- */
.section-result { background: var(--bg); }
.result-lede {
  text-align: center;
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0 auto 64px;
  line-height: 1.55;
}
.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.result-grid > div {
  padding: 36px 24px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.result-grid > div:last-child { border-right: none; }
.result-grid h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'SOFT' 40, 'opsz' 36;
  font-size: 21px;
  letter-spacing: -0.014em;
  margin: 0 0 10px;
  color: var(--ink-strong);
}
.result-grid p {
  color: var(--ink-muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

/* ----- Team ----- */
.section-team .section-head { margin-bottom: 48px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.team-card {
  padding: 48px 24px;
  border-right: 1px solid var(--rule);
  display: grid;
  gap: 20px;
  align-items: end;
  grid-template-columns: auto 1fr;
}
.team-card:last-child { border-right: none; }
.team-mono {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.team-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'SOFT' 30, 'opsz' 36;
  font-size: 24px;
  letter-spacing: -0.014em;
  margin: 0;
  color: var(--ink-strong);
  align-self: end;
}

/* ----- FAQ ----- */
.faq {
  border-top: 1px solid var(--rule);
}
.faq details {
  border-bottom: 1px solid var(--rule);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 36px 28px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'SOFT' 30, 'opsz' 36;
  font-size: clamp(19px, 1.8vw, 23px);
  letter-spacing: -0.014em;
  color: var(--ink-strong);
  position: relative;
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.faq details[open] summary::after {
  content: "−";
}
.faq summary:hover { color: var(--accent); }
.faq details p {
  padding: 0 36px 28px 0;
  margin: 0;
  color: var(--ink-muted);
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.65;
}

/* ----- Contact ----- */
.section-contact { background: var(--bg); padding-bottom: 128px; }
.contact-block {
  text-align: center;
  display: grid;
  gap: 24px;
  justify-items: center;
}
.contact-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink-strong);
  margin: 16px 0 8px;
}
.contact-title em {
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
  color: var(--accent);
}
.contact-lede {
  color: var(--ink-muted);
  max-width: 50ch;
  font-size: 17px;
  margin: 0 0 8px;
}
.contact-meta {
  font-family: var(--font-mono);
  color: var(--ink-dim);
  font-size: 13px;
  margin: 8px 0 0;
}

/* ----- Footer ----- */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 36px 0;
  background: var(--bg-deep);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'SOFT' 50, 'opsz' 14;
  font-size: 18px;
  color: var(--ink);
}
.footer-meta {
  color: var(--ink-dim);
  font-size: 13px;
  font-family: var(--font-mono);
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-meta a { color: var(--ink-muted); transition: color 0.18s ease; }
.footer-meta a:hover { color: var(--ink); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 980px) {
  .product {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 0;
  }
  .product-head { position: static; }
  .product-num { font-size: 88px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline li:nth-child(odd) { border-right: none; padding-right: 0; }
  .timeline li:nth-child(even) { padding-left: 0; }
  .outcome-row, .outcome-row-quad { grid-template-columns: 1fr 1fr; gap: 16px; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .result-grid { grid-template-columns: 1fr 1fr; }
  .result-grid > div:nth-child(2) { border-right: none; }
  .result-grid > div:nth-child(4) { border-right: none; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .team-card:last-child { border-bottom: none; }
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .hero { padding: 80px 0 64px; }
  .hero-title { font-size: clamp(40px, 11vw, 64px); }
  .pull-hero { margin-top: 40px; padding-top: 28px; }
  .signals { padding: 40px 0; }
  .signal-list { gap: 8px; }
  .signal-list li { padding: 7px 13px; font-size: 14px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }
  .section-products .section-head { margin-bottom: 56px; }
  .format { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .result-grid { grid-template-columns: 1fr; }
  .result-grid > div { border-right: none; padding: 28px 0; }
  .outcome-row, .outcome-row-quad { grid-template-columns: 1fr; gap: 8px; }
  .outcome-row span { font-size: 22px; }
  .team-card { grid-template-columns: 1fr; align-items: start; padding: 32px 24px; gap: 12px; }
  .team-mono { font-size: 44px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .drop .dropcap { font-size: 4em; }
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-title .line, .hero-meta, .hero-lede, .cta-row, .pull-hero {
    opacity: 1;
    transform: none;
  }
}
