@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700&display=swap');

/* ==========================================================================
   Design tokens — palette, typography, depth
   ========================================================================== */
:root {
  --bg: #F9F4ED;
  --surface: #FFFFFF;
  --ink: #2A1F18;
  --ink-soft: #8B7B6E;
  --border: #EDE4D7;
  --accent: #C49069;
  --accent-deep: #A87649;

  --shadow-sm: 0 2px 8px rgba(42, 31, 24, 0.04);
  --shadow-md: 0 12px 32px rgba(42, 31, 24, 0.08);

  --radius-card: 20px;
  --radius-polaroid: 24px;
  --radius-pill: 999px;

  --container: 1240px;
  --gutter: 24px;

  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 900px) {
  :root { --gutter: 64px; }
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Assistant', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* ==========================================================================
   Typography
   ========================================================================== */
.h1 {
  font-weight: 200;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.h2 {
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0;
}
.h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  margin: 0;
}
.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  margin: 0 0 14px;
  text-transform: uppercase;
}
@media (min-width: 600px) { .eyebrow { font-size: 13px; } }

.lead {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
  margin: 16px 0 0;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(80px, 10vw, 160px);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: background-color 250ms ease-in-out, color 250ms ease-in-out, border-color 250ms ease-in-out;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--surface);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-deep);
  outline: none;
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--ink);
  color: var(--bg);
  outline: none;
}
.btn-tertiary {
  display: inline-block;
  position: relative;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 4px;
}
.btn-tertiary::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 350ms var(--ease-out-expo);
}
.btn-tertiary:hover::after { transform: scaleX(1); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  inset-inline-start: 0;
  inset-inline-end: 0;
  top: 0;
  z-index: 50;
  transition: background-color 300ms ease, box-shadow 300ms ease;
  background: transparent;
}
.nav.scrolled {
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--ink);
  white-space: nowrap;
}
.nav-brand strong { color: var(--accent-deep); font-weight: 500; }
.nav-links {
  display: none;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  padding: 6px 0;
  transition: color 200ms ease;
}
.nav-links a:hover { color: var(--accent-deep); }
.nav-cta { display: none; }

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

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 250ms ease, opacity 250ms ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

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

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile a {
  font-weight: 300;
  font-size: 28px;
  color: var(--ink);
}
.nav-mobile .btn { margin-top: 12px; }

/* ==========================================================================
   Hero (shared parallax)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding-block: 120px 80px;
}
@media (max-width: 900px) {
  .hero { background-attachment: scroll; min-height: 88vh; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero--home::before {
  background: linear-gradient(270deg, rgba(249, 244, 237, 0.92) 0%, rgba(249, 244, 237, 0.70) 30%, rgba(249, 244, 237, 0.10) 60%, transparent 100%);
}
.hero--funnel::before {
  background: linear-gradient(270deg, rgba(249, 244, 237, 0.95) 0%, rgba(249, 244, 237, 0.78) 28%, rgba(249, 244, 237, 0.10) 55%, transparent 100%);
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
}

.hero-copy {
  max-width: 580px;
}
@media (min-width: 900px) {
  .hero-copy { grid-column: 1; justify-self: end; text-align: right; }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-bullets {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.hero-bullets li {
  position: relative;
  padding-inline-end: 22px;
  margin: 8px 0;
  font-size: 17px;
  color: var(--ink);
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  inset-inline-end: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ==========================================================================
   Value pillars
   ========================================================================== */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 800px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .pillars > * + * {
    border-inline-start: 1px solid var(--border);
    padding-inline-start: 48px;
  }
  .pillars > * { padding-inline-end: 48px; }
}
.pillar-num {
  display: block;
  font-weight: 300;
  font-size: clamp(64px, 7vw, 88px);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.pillar-label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.pillar-desc {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}

/* ==========================================================================
   About / story split
   ========================================================================== */
.story {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 56px;
}
@media (min-width: 900px) {
  .story {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 96px;
  }
}
.story-copy { max-width: 520px; }
.story-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin: 18px 0 28px;
}
.story-copy p + .btn-tertiary { margin-top: 0; }
.story-img-wrap {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   Polaroid card
   ========================================================================== */
.polaroid {
  background: var(--surface);
  padding: 14px 14px 28px;
  border-radius: var(--radius-polaroid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 350ms ease-out, box-shadow 350ms ease-out;
  display: block;
  width: 100%;
  max-width: 360px;
}
.polaroid img {
  border-radius: 6px;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.polaroid--lg { max-width: 420px; }
.polaroid:hover {
  transform: translateY(-2px) rotate(0) !important;
  box-shadow: var(--shadow-md);
}

.tilt-neg-3 { transform: rotate(-3deg); }
.tilt-neg-2 { transform: rotate(-2deg); }
.tilt-pos-1 { transform: rotate(1deg); }

/* ==========================================================================
   Portfolio gallery
   ========================================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 48px;
  margin-top: 56px;
}
@media (min-width: 800px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .portfolio-grid .polaroid:nth-child(2) { transform: translateY(28px) rotate(1deg); }
  .portfolio-grid .polaroid:nth-child(1) { transform: rotate(-2deg); }
  .portfolio-grid .polaroid:nth-child(3) { transform: rotate(-3deg); }
}

/* ==========================================================================
   Process & equipment
   ========================================================================== */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .process { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.process-feature {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.process-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.process-steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.process-step-num {
  font-weight: 300;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.02em;
  min-width: 44px;
}
.process-step-title {
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 4px;
  color: var(--ink);
}
.process-step-desc {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.equipment-row {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 800px) {
  .equipment-row { grid-template-columns: 280px 1fr; }
}
.equipment-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.equipment-img img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.equipment-caption {
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Testimonial band
   ========================================================================== */
.testimonial-band {
  background: var(--surface);
  padding-block: clamp(100px, 12vw, 180px);
  text-align: center;
}
.testimonial-band .container { max-width: 940px; }
.testimonial-mark {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 32px;
}
.testimonial-quote {
  font-weight: 200;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Final CTA band
   ========================================================================== */
.cta-band {
  text-align: center;
}
.cta-band .container { max-width: 760px; }
.cta-band .lead { margin: 18px auto 36px; }
.cta-band .hero-cta { justify-content: center; margin-top: 0; }

.tel-link {
  display: inline-block;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--accent-deep);
  letter-spacing: 0.02em;
  margin-top: 12px;
}
.tel-link:hover { color: var(--ink); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border);
  padding-block: 56px 32px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: right;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
}
.footer-col h4 {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 16px;
}
.footer-col p, .footer-col a {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 4px 0;
  display: block;
}
.footer-col a:hover { color: var(--ink); }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.footer-social svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.25; }

.footer-signature {
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.6;
  margin: 40px 0 0;
}
.footer-signature a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 0.5px;
}

/* ==========================================================================
   Funnel — multi-step form
   ========================================================================== */
.funnel-card {
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  max-width: 640px;
  margin: 0 auto;
  padding: 48px clamp(24px, 4vw, 56px);
}

.progress {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background-color 250ms ease, transform 250ms ease;
}
.progress-dot.active { background: var(--accent); transform: scale(1.25); }
.progress-dot.done { background: var(--accent-deep); }

.funnel-page { display: none; }
.funnel-page.active { display: block; }

/* generic multi-step containers — keep consistent */
.quote-step, .wizard-step { display: none; }
.quote-step.active, .wizard-step.active { display: block; }

.field {
  display: flex;
  flex-direction: column;
  margin: 0 0 18px;
}
.field label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 10px;
}
.field input, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  color: var(--ink);
  font-size: 17px;
  outline: none;
  transition: border-color 250ms ease;
  width: 100%;
  border-radius: 0;
}
.field input:focus, .field textarea:focus {
  border-bottom-color: var(--accent);
}
.field-help {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 8px 0 0;
}

.step-title {
  font-weight: 300;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--ink);
}
.step-sub {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 28px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.chip {
  border: 1px solid var(--border);
  background: transparent;
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 14px;
  color: var(--ink);
  transition: background-color 250ms ease, border-color 250ms ease, color 250ms ease;
}
.chip:hover { border-color: var(--accent); color: var(--accent-deep); }
.chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--surface);
}

.intensity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}
@media (min-width: 540px) { .intensity-grid { grid-template-columns: repeat(3, 1fr); } }

.intensity-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
  background: var(--bg);
  cursor: pointer;
  transition: border-color 250ms ease, transform 250ms ease, background-color 250ms ease;
}
.intensity-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.intensity-card.active {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.intensity-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto 12px;
  border: 1px solid rgba(0,0,0,0.04);
}
.intensity-card[data-value="עדין"] .intensity-swatch { background: #E6C9A8; }
.intensity-card[data-value="טבעי"] .intensity-swatch { background: #C49069; }
.intensity-card[data-value="כהה"] .intensity-swatch { background: #875733; }
.intensity-card-name {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}

.summary {
  background: var(--bg);
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-key { color: var(--ink-soft); font-weight: 500; }
.summary-val { color: var(--ink); }

.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.step-actions .btn-tertiary { color: var(--ink-soft); }

.field-error { color: #B95151; font-size: 13px; margin-top: 8px; min-height: 18px; }

/* form result toast */
.form-result {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--bg);
  display: none;
  animation: fadeUp 600ms var(--ease-out-expo) both;
}
.form-result.visible { display: block; }
.form-result.success {
  border-color: var(--accent);
  background: var(--surface);
}
.form-result.error {
  border-color: #E2BFB6;
  background: #FBF1ED;
}
.form-result-title {
  font-weight: 500;
  font-size: 19px;
  margin: 0 0 6px;
  color: var(--ink);
}
.form-result-body {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
}

/* ==========================================================================
   Reassurance strip
   ========================================================================== */
.reassure {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.reassure span { display: inline-block; }
.reassure .sep {
  display: inline-block;
  margin: 0 14px;
  color: var(--accent);
  font-weight: 400;
}

/* ==========================================================================
   Visual proof gallery (funnel)
   ========================================================================== */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 48px;
  margin-top: 56px;
}
@media (min-width: 700px) {
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .proof-grid .polaroid:nth-child(1) { transform: rotate(-2deg); }
  .proof-grid .polaroid:nth-child(2) { transform: translateY(28px) rotate(1deg); }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq {
  max-width: 820px;
  margin: 56px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  padding: 24px 0;
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  transition: color 250ms ease;
  gap: 16px;
}
.faq-trigger:hover { color: var(--accent-deep); }
.faq-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.25px;
  background: var(--accent);
  transform: translateY(-50%);
}
.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 300ms ease;
}
.faq-item.open .faq-icon::after { transform: translateY(-50%) rotate(0deg); }

.faq-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms ease;
}
.faq-panel-inner {
  padding: 0 0 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}

/* ==========================================================================
   Reveal animation (scroll)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out-expo), transform 600ms var(--ease-out-expo);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }

/* hero-load stagger */
.hero-copy > * {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 700ms var(--ease-out-expo) forwards;
}
.hero-copy > *:nth-child(1) { animation-delay: 80ms; }
.hero-copy > *:nth-child(2) { animation-delay: 160ms; }
.hero-copy > *:nth-child(3) { animation-delay: 240ms; }
.hero-copy > *:nth-child(4) { animation-delay: 320ms; }
.hero-copy > *:nth-child(5) { animation-delay: 400ms; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* ==========================================================================
   Utility
   ========================================================================== */
.text-soft { color: var(--ink-soft); }
.center { text-align: center; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero { background-attachment: scroll; }
}
