/* ==========================================================================
   Nawah Works — design system
   Direction: "The Seed" (نواة) — warm editorial. Deep palm green, cream
   paper, date amber. Fraunces for display, Instrument Sans for everything else.
   Mobile-first. Logical properties throughout (RTL-ready).
   All tokens live in :root below — change the palette in one place.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* color */
  --paper:       #F6F1E6;
  --paper-2:     #EEE7D5;
  --card:        #FCFAF3;
  --ink:         #17251C;
  --ink-soft:    #45544A;
  --line:        rgba(23, 37, 28, 0.14);
  --line-soft:   rgba(23, 37, 28, 0.08);
  --pine:        #1D3A2A;
  --pine-2:      #14291D;
  --pine-line:   rgba(246, 241, 230, 0.16);
  --cream:       #F6F1E6;
  --cream-soft:  rgba(246, 241, 230, 0.72);
  --amber:       #E0A458;
  --amber-ink:   #8F5A0E;
  --whatsapp:    #1FAF54;

  /* type */
  /* Bilingual pairing: Fraunces + Instrument Sans on English (/en/) pages;
     Arabic (root) pages swap the tokens to Amiri (headlines) + IBM Plex Sans
     Arabic (body) — see the html[lang="ar"] block at the end of this file.
     English pages still load Amiri only as a tiny subset for the نواة ghost. */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-arabic: "Amiri", "Geeza Pro", serif;

  --text-xs:  0.8125rem;
  --text-sm:  0.9375rem;
  --text-md:  1.0625rem;
  --text-lg:  clamp(1.15rem, 1rem + 0.7vw, 1.35rem);
  --text-h3:  clamp(1.35rem, 1.2rem + 0.8vw, 1.75rem);
  --text-h2:  clamp(1.9rem, 1.4rem + 2.6vw, 3.1rem);
  --text-h1:  clamp(2.4rem, 1.6rem + 4.6vw, 4.6rem);

  /* rhythm */
  --space-section: clamp(4.5rem, 3rem + 7vw, 8.5rem);
  --container: 68rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* shape */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-lift: 0 20px 50px -24px rgba(23, 37, 28, 0.35);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

/* film grain over everything — pure texture, no interaction */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: var(--text-h1); font-variation-settings: "opsz" 100; }
h2 { font-size: var(--text-h2); font-variation-settings: "opsz" 72; }
h3 { font-size: var(--text-h3); line-height: 1.2; }

p { margin: 0 0 1em; }

a { color: inherit; }

em {
  font-style: italic;
  font-variation-settings: "opsz" 100;
}

::selection { background: var(--amber); color: var(--pine-2); }

:focus-visible {
  outline: 2px solid var(--amber-ink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* dark sections need a lighter ring since amber-ink is too dark to read there */
.hero :focus-visible,
.on-dark :focus-visible,
.quote-section :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--amber);
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  inset-block-start: -4rem;
  z-index: 300;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: inset-block-start 0.2s;
}
.skip-link:focus { inset-block-start: 1rem; }

section { scroll-margin-block-start: 4.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  font: 600 1rem/1 var(--font-body);
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
              background-color 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--pine);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--pine-2);
  box-shadow: var(--shadow-lift);
}

/* on dark surfaces */
.btn-amber {
  background: var(--amber);
  color: var(--pine-2);
}
.btn-amber:hover { box-shadow: 0 18px 40px -18px rgba(224, 164, 88, 0.55); }

.btn-ghost {
  border-color: var(--pine-line);
  color: var(--cream);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--cream); }

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { border-color: var(--ink); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--ink);
}
.btn-whatsapp:hover { box-shadow: 0 18px 40px -18px rgba(31, 175, 84, 0.6); }

.btn-block { width: 100%; }
.btn svg { flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  padding-top: 0;
  padding-top: env(safe-area-inset-top, 0px);
  background: transparent;
  border-block-end: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  isolation: isolate;
}
.site-header.scrolled {
  border-block-end-color: var(--line-soft);
  box-shadow: 0 10px 30px -22px rgba(23, 37, 28, 0.4);
}

/* Safari 26's toolbar-tint scanner reads backdrop-filter directly off
   sticky elements pinned to the viewport top, corrupting the repaint.
   Carrying the blur on a non-sticky absolutely-positioned child avoids it. */
.header-glass {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.site-header .header-glass {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.9rem var(--gutter);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: inherit;
  text-decoration: none;
  margin-inline-end: auto;
}
.logo .seed { inline-size: 22px; block-size: 22px; flex: none; }

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.75rem;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-cta { display: none; }

/* burger */
.nav-toggle {
  display: grid;
  place-items: center;
  inline-size: 44px;
  block-size: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
}
.nav-toggle .bars {
  position: relative;
  inline-size: 18px;
  block-size: 12px;
}
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  block-size: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out), inset-block-start 0.3s var(--ease-out);
}
.nav-toggle .bars::before { inset-block-start: 0; }
.nav-toggle .bars::after { inset-block-start: 10px; }
.nav-toggle[aria-expanded="true"] .bars::before { inset-block-start: 5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { inset-block-start: 5px; transform: rotate(-45deg); }

/* mobile menu panel */
.menu-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  visibility: hidden;
  background: var(--pine);
  color: var(--cream);
  transition: grid-template-rows 0.45s var(--ease-out), visibility 0.45s;
}
.menu-panel.open { grid-template-rows: 1fr; visibility: visible; }
.menu-panel > div { min-block-size: 0; }
.menu-panel ul {
  list-style: none;
  margin: 0;
  padding: 1rem var(--gutter) 0.25rem;
}
.menu-panel li + li { border-block-start: 1px solid var(--pine-line); }
.menu-panel a:not(.btn) {
  display: block;
  padding: 0.55rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  color: var(--cream);
}
.menu-panel .menu-actions {
  display: grid;
  gap: 0.6rem;
  padding: 0.75rem var(--gutter) 1.25rem;
}

@media (min-width: 820px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; padding-block: 0.7rem; }
  .nav-toggle, .menu-panel { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--pine);
  color: var(--cream);
  overflow: hidden;
}
.hero::before {
  /* warm glow rising from the horizon */
  content: "";
  position: absolute;
  inset-block-end: -40%;
  inset-inline-start: 50%;
  translate: -50% 0;
  inline-size: 130vw;
  aspect-ratio: 2 / 1;
  background: radial-gradient(ellipse at center,
      rgba(224, 164, 88, 0.28), rgba(224, 164, 88, 0.07) 45%, transparent 70%);
  pointer-events: none;
}
[dir="rtl"] .hero::before { translate: 50% 0; }

.hero-inner {
  position: relative;
  padding-block: clamp(4.5rem, 4rem + 6vw, 9rem) clamp(5rem, 4rem + 7vw, 9.5rem);
}

/* the ghost seed — نواة */
.hero-ghost {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: -0.05em;
  translate: 0 -50%;
  font-family: var(--font-arabic);
  font-size: clamp(14rem, 40vw, 30rem);
  line-height: 1;
  color: rgba(246, 241, 230, 0.055);
  pointer-events: none;
  user-select: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-block-end: 1.5rem;
}
.hero-eyebrow .seed { inline-size: 14px; block-size: 14px; flex: none; }

.hero h1 {
  max-inline-size: 13ch;
  margin-block-end: 0.5em;
}
.hero h1 em { color: var(--amber); }

.hero .sub {
  max-inline-size: 34rem;
  font-size: var(--text-lg);
  color: var(--cream-soft);
  margin-block-end: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-block-end: 1.5rem;
}

.hero-note {
  font-size: var(--text-sm);
  color: rgba(246, 241, 230, 0.55);
  margin: 0;
}

/* fact strip under hero */
.facts {
  border-block-start: 1px solid var(--pine-line);
  position: relative;
}
.facts ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.9rem;
  margin: 0;
  padding: 1.1rem 0;
}
.facts li {
  position: relative;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.6);
}
.facts li + li::before {
  content: "";
  position: absolute;
  inset-inline-start: -1.15rem;
  inset-block-start: 50%;
  translate: 0 -50%;
  inline-size: 5px;
  block-size: 7px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.8;
}

/* mobile: tighter hero so headline + sub + CTAs fit roughly one viewport */
@media (max-width: 768px) {
  .hero-inner { padding-block: 2.75rem 3.25rem; }
  .hero h1 { font-size: clamp(1.9rem, 1.1rem + 3.6vw, 3.2rem); }
  .hero .sub { margin-block-end: 1.75rem; }
  .hero-note {
    font-size: 1rem;
    color: rgba(246, 241, 230, 0.82);
  }
}

/* ---------- Section scaffolding ---------- */
.section { padding-block: var(--space-section); }

.kicker {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-ink);
  margin-block-end: 1.25rem;
}
.kicker::after {
  content: "";
  flex: 1;
  block-size: 1px;
  background: var(--line-soft);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.9s var(--ease-out) 0.3s;
}
[dir="rtl"] .kicker::after { transform-origin: 100% 50%; }
.in .kicker::after { transform: scaleX(1); }
.on-dark .kicker { color: var(--amber); }
.on-dark .kicker::after { background: var(--pine-line); }

.section-head { max-inline-size: 42rem; margin-block-end: clamp(2.5rem, 2rem + 3vw, 4rem); }
.section-head .lead { font-size: var(--text-lg); color: var(--ink-soft); margin: 0; }
.on-dark .section-head .lead { color: var(--cream-soft); }

/* ---------- Work (samples) ---------- */
.work-grid {
  display: grid;
  gap: clamp(1.75rem, 1rem + 3vw, 2.5rem);
}
@media (min-width: 720px) {
  .work-grid { grid-template-columns: 1fr 1fr; padding-block-end: 2.5rem; }
  .work-card:nth-child(even) { translate: 0 2.5rem; }
}

.work-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(23, 37, 28, 0.04);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
              border-color 0.45s var(--ease-out);
}
.work-card:hover .frame,
.work-card:focus-visible .frame {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--amber) 55%, var(--line));
  box-shadow: 0 32px 60px -28px rgba(23, 37, 28, 0.42),
              0 12px 24px -16px rgba(23, 37, 28, 0.22);
}

/* "view sample" affordance — rises out of the frame's corner on hover */
.frame::after {
  content: "View sample ↗";
  position: absolute;
  inset-block-end: 0.8rem;
  inset-inline-end: 0.8rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--pine-2) 92%, transparent);
  color: var(--cream);
  font: 600 0.78rem/1 var(--font-body);
  letter-spacing: 0.02em;
  opacity: 0;
  translate: 0 8px;
  transition: opacity 0.35s var(--ease-out), translate 0.35s var(--ease-out);
  pointer-events: none;
}
.work-card:hover .frame::after,
.work-card:focus-visible .frame::after { opacity: 1; translate: 0 0; }

.frame-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  border-block-end: 1px solid var(--line-soft);
  background: var(--card);
}
.frame-dots { display: flex; gap: 5px; }
.frame-dots i {
  inline-size: 8px;
  block-size: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background-color 0.3s;
}
.work-card:hover .frame-dots i,
.work-card:focus-visible .frame-dots i { background: var(--amber); }
.work-card:hover .frame-dots i:nth-child(2),
.work-card:focus-visible .frame-dots i:nth-child(2) { transition-delay: 0.07s; }
.work-card:hover .frame-dots i:nth-child(3),
.work-card:focus-visible .frame-dots i:nth-child(3) { transition-delay: 0.14s; }
.frame-url {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--paper);
  border-radius: var(--radius-pill);
  padding: 0.22rem 0.8rem;
  max-inline-size: 16rem;
  margin-inline: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* the composed mini-scene (sizes in cqw so each scene scales with its card) */
.scene {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 5cqw;
  overflow: hidden;
  container-type: inline-size;
}
.scene * { pointer-events: none; }

.sc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-end: 9cqw;
}
.sc-logo { font-weight: 700; font-size: 4cqw; letter-spacing: 0.02em; }
.sc-links { display: flex; gap: 6px; }
.sc-links i {
  inline-size: 5cqw;
  block-size: 3px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.35;
}

.sc-title {
  font-family: var(--font-display);
  font-size: 7.2cqw;
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-inline-size: 18ch;
  margin-block-end: 6cqw;
  transition: transform 0.5s var(--ease-out);
}
.work-card:hover .sc-title { transform: translateY(-3px); }

.sc-chip {
  position: absolute;
  inset-block-end: 5cqw;
  inset-inline-start: 5cqw;
  font-size: 3.1cqw;
  font-weight: 600;
  padding: 2cqw 4cqw;
  border-radius: var(--radius-pill);
  transition: transform 0.5s var(--ease-out);
}
.work-card:hover .sc-chip { transform: translateY(-2px); }

/* café */
.scene-cafe { background: #261A10; color: #F3E9DC; }
.scene-cafe .sc-logo { font-family: var(--font-display); font-weight: 600; }
.scene-cafe .sc-title em { color: #DFA050; }
.scene-cafe .sc-menu { max-inline-size: 62%; }
.scene-cafe .sc-row {
  display: flex;
  align-items: baseline;
  gap: 1.5cqw;
  font-size: 3.4cqw;
  padding-block: 1.6cqw;
  color: rgba(243, 233, 220, 0.85);
}
.scene-cafe .sc-row::before {
  content: "";
  order: 2;
  flex: 1;
  border-block-end: 1px dotted rgba(243, 233, 220, 0.35);
}
.scene-cafe .sc-row b { order: 3; color: #DFA050; font-weight: 600; }
.scene-cafe .sc-chip { background: #DFA050; color: #261A10; }

/* clinic */
.scene-clinic { background: #F2F8F8; color: #123B3E; }
.scene-clinic .sc-title { font-family: var(--font-body); font-weight: 700; letter-spacing: -0.02em; }
.scene-clinic .sc-cards { display: flex; gap: 3cqw; max-inline-size: 78%; }
.scene-clinic .sc-cards i {
  flex: 1;
  block-size: 16cqw;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(18, 59, 62, 0.12);
  position: relative;
}
.scene-clinic .sc-cards i::before {
  content: "";
  position: absolute;
  inset-block-start: 3.4cqw;
  inset-inline: 3cqw;
  block-size: 2.5cqw;
  border-radius: 3px;
  background: #2A8C8F;
  opacity: 0.85;
}
.scene-clinic .sc-cards i::after {
  content: "";
  position: absolute;
  inset-block-start: 8cqw;
  inset-inline: 3cqw 6cqw;
  block-size: 1.8cqw;
  border-radius: 3px;
  background: rgba(18, 59, 62, 0.18);
}
.scene-clinic .sc-chip { background: #2A8C8F; color: #fff; }

/* flowers */
.scene-flowers { background: #FAEFEE; color: #4A2B33; }
.scene-flowers .sc-title { font-style: italic; }
.scene-flowers .sc-petals { position: absolute; inset: 0; }
.scene-flowers .sc-petals i {
  position: absolute;
  border-radius: 58% 42% 55% 45% / 50% 60% 40% 50%;
  opacity: 0.75;
  transition: transform 0.6s var(--ease-out);
}
.scene-flowers .sc-petals i:nth-child(1) {
  inline-size: 34cqw; block-size: 30cqw;
  inset-block-end: -8cqw; inset-inline-end: -6cqw;
  background: #E7B7BC;
}
.scene-flowers .sc-petals i:nth-child(2) {
  inline-size: 20cqw; block-size: 18cqw;
  inset-block-end: 14cqw; inset-inline-end: 16cqw;
  background: #D98E96;
}
.scene-flowers .sc-petals i:nth-child(3) {
  inline-size: 11cqw; block-size: 10cqw;
  inset-block-start: 14cqw; inset-inline-end: 8cqw;
  background: #C96F7B;
}
.work-card:hover .scene-flowers .sc-petals i { transform: translateY(-5px) rotate(4deg); }
.scene-flowers .sc-chip { background: #4A2B33; color: #FAEFEE; }

/* law */
.scene-law { background: #F4F0E7; color: #23241F; }
.scene-law .sc-logo {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 3.2cqw;
}
.scene-law .sc-rule {
  inline-size: 16cqw;
  block-size: 2px;
  background: #A8842C;
  margin-block-end: 5cqw;
}
.scene-law .sc-lines { max-inline-size: 58%; display: grid; gap: 2.2cqw; }
.scene-law .sc-lines i {
  block-size: 1.9cqw;
  border-radius: 2px;
  background: rgba(35, 36, 31, 0.16);
}
.scene-law .sc-lines i:last-child { inline-size: 70%; }
.scene-law .sc-chip { background: #23241F; color: #F4F0E7; }

/* card meta below frame */
.work-meta {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding-block-start: 1.1rem;
}
.work-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--amber-ink);
}
.work-meta h3 { font-size: 1.3rem; margin: 0; }
.work-tag {
  margin-inline-start: auto;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.work-desc {
  color: var(--ink-soft);
  font-size: var(--text-sm);
  margin: 0.35rem 0 0;
  max-inline-size: 30rem;
}
.work-open {
  display: inline-block;
  margin-block-start: 0.6rem;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--ink);
  border-block-end: 1.5px solid var(--amber);
  padding-block-end: 2px;
  transition: border-color 0.25s;
}
.work-card:hover .work-open { border-color: var(--ink); }

.work-foot {
  margin-block-start: clamp(2.5rem, 2rem + 3vw, 4rem);
  padding-block-start: 1.5rem;
  border-block-start: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  color: var(--ink-soft);
  font-size: var(--text-sm);
}
.work-foot p { margin: 0; max-inline-size: 34rem; }
.work-foot .btn { margin-inline-start: auto; }

/* ---------- Dark band (process + included) ---------- */
.on-dark {
  background: var(--pine);
  color: var(--cream);
}
.on-dark h2, .on-dark h3 { color: var(--cream); }

.steps {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.step { position: relative; padding-block-start: 1.4rem; }
.step::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  inline-size: 100%;
  block-size: 1px;
  background: var(--pine-line);
}
.step::after {
  content: "";
  position: absolute;
  inset-block-start: -1px;
  inset-inline-start: 0;
  inline-size: 3rem;
  block-size: 3px;
  background: var(--amber);
  transform-origin: 0 50%;
  transform: scaleX(0);
  transition: transform 0.8s var(--ease-out) 0.2s;
}
[dir="rtl"] .step::after { transform-origin: 100% 50%; }
.step:nth-child(2)::after { transition-delay: 0.45s; }
.step:nth-child(3)::after { transition-delay: 0.7s; }
.in-view .step::after { transform: scaleX(1); }

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--amber);
  line-height: 1;
  margin-block-end: 0.75rem;
}
.step h3 { font-size: 1.35rem; margin-block-end: 0.4rem; }
.step p { color: var(--cream-soft); font-size: var(--text-sm); margin: 0; }

/* included checklist inside dark band */
.included {
  margin-block-start: clamp(3rem, 2.5rem + 3vw, 5rem);
  padding-block-start: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  border-block-start: 1px solid var(--pine-line);
}
.included h3 { font-size: var(--text-h3); max-inline-size: 24ch; }
.included ul {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem 2rem;
}
@media (min-width: 640px) { .included ul { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .included ul { grid-template-columns: repeat(3, 1fr); } }
.included li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  color: var(--cream-soft);
  font-size: var(--text-sm);
}
.included li::before {
  content: "";
  flex: none;
  inline-size: 7px;
  block-size: 10px;
  border-radius: 50%;
  background: var(--amber);
  translate: 0 -1px;
}

/* ---------- Services ---------- */
.service-rows { border-block-start: 1px solid var(--line); }
.service-row {
  display: grid;
  gap: 0.35rem 2rem;
  padding-block: 1.5rem;
  border-block-end: 1px solid var(--line);
  transition: background-color 0.3s, padding 0.3s var(--ease-out);
}
@media (min-width: 720px) {
  .service-row { grid-template-columns: minmax(14rem, 1fr) 2fr auto; align-items: baseline; }
  .service-row:hover { background: var(--paper-2); padding-inline: 1.25rem; }
}
.service-row h3 { font-size: 1.35rem; margin: 0; }
.service-row p { margin: 0; color: var(--ink-soft); font-size: var(--text-sm); max-inline-size: 34rem; }
.service-row .arrow {
  display: none;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--amber-ink);
}
@media (min-width: 720px) { .service-row .arrow { display: block; } }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 880px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
  .price-card.featured { translate: 0 -1.25rem; }
}

.price-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
              border-color 0.45s var(--ease-out);
}
.price-card:hover,
.price-card:focus-within {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--amber) 40%, var(--line));
  box-shadow: 0 22px 44px -26px rgba(23, 37, 28, 0.28),
              0 8px 18px -14px rgba(23, 37, 28, 0.14);
}
.price-card.featured {
  background: var(--pine);
  color: var(--cream);
  border-color: var(--pine);
  box-shadow: var(--shadow-lift);
}
.price-card.featured:hover,
.price-card.featured:focus-within {
  border-color: var(--pine);
  box-shadow: 0 26px 56px -26px rgba(23, 37, 28, 0.45),
              0 10px 20px -14px rgba(23, 37, 28, 0.22);
}
.price-card.featured h3 { color: var(--cream); }

.plan-badge {
  position: absolute;
  inset-block-start: -0.85rem;
  inset-inline-start: 1.75rem;
  background: var(--amber);
  color: var(--pine-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
}

.plan-name {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-ink);
  margin-block-end: 0.9rem;
}
.price-card.featured .plan-name { color: var(--amber); }

.price {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.6rem + 1vw, 2.4rem);
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.price .from {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-block-end: 0.4rem;
}
.price-card.featured .price .from { color: var(--cream-soft); }

.price-note {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  margin-block: 0.5rem 0.4rem;
}
.price-card.featured .price-note { color: var(--cream-soft); }

.price-annual {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--amber-ink);
  margin-block-end: 1.25rem;
}
.price-card.featured .price-annual { color: var(--amber); }

.price-card ul {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 1.25rem 0 0;
  border-block-start: 1px solid var(--line-soft);
  display: grid;
  gap: 0.65rem;
  flex: 1;
  align-content: start;
}
.price-card.featured ul { border-block-start-color: var(--pine-line); }
.price-card li {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  font-size: var(--text-sm);
}
.price-card li::before {
  content: "";
  flex: none;
  inline-size: 6px;
  block-size: 9px;
  border-radius: 50%;
  background: var(--amber);
  translate: 0 -1px;
}

.pricing-foot {
  margin-block-start: 2.5rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: var(--text-sm);
}
.pricing-foot p { max-inline-size: 44rem; margin-inline: auto; }

.care-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 620px) {
  .care-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}

.panel-callout {
  margin-block-start: 2.5rem;
  padding: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}
.panel-callout h3 { font-size: var(--text-h3); margin-block-end: 0.6rem; }
.panel-callout p {
  color: var(--ink-soft);
  max-inline-size: 44rem;
  margin-inline: auto;
  margin-block-end: 1.5rem;
}

/* ---------- FAQ ---------- */
.faq { max-inline-size: 46rem; }
.faq details {
  border-block-end: 1px solid var(--line);
}
.faq details:first-of-type { border-block-start: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 540;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  margin-inline-start: auto;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--amber-ink);
  line-height: 1;
  transition: rotate 0.3s var(--ease-out);
}
.faq details[open] summary::after { rotate: 45deg; }
.faq .faq-body {
  padding-block-end: 1.4rem;
  color: var(--ink-soft);
  max-inline-size: 38rem;
}
.faq .faq-body p { margin: 0; }

/* ---------- Quote section ---------- */
.quote-section {
  background: var(--pine);
  color: var(--cream);
}
.quote-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 880px) {
  .quote-layout { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 4rem; }
}

.quote-side h2 { color: var(--cream); }
.quote-side .lead { color: var(--cream-soft); font-size: var(--text-lg); }

.quote-alt {
  margin-block-start: 2rem;
  padding-block-start: 2rem;
  border-block-start: 1px solid var(--pine-line);
}
.quote-alt h3 { font-size: 1.25rem; color: var(--cream); }
.quote-alt p { color: var(--cream-soft); font-size: var(--text-sm); }
.quote-contact {
  margin-block-start: 1.5rem;
  font-size: var(--text-sm);
  color: var(--cream-soft);
}
.quote-contact p { margin-block-end: 0.35rem; }
.quote-contact a { color: var(--cream); text-decoration-color: var(--amber); text-underline-offset: 3px; }

/* form */
.form-card {
  background: var(--card);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2.5vw, 2.5rem);
  box-shadow: var(--shadow-lift);
}

.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-row > .form-group { min-inline-size: 0; }
.form-group { margin-block-end: 1.1rem; }
.form-row .form-group { margin-block-end: 0; }
.form-row { margin-block-end: 1.1rem; }
@media (min-width: 560px) {
  .form-row-phone-email { grid-template-columns: 1.5fr 1fr; }
}
.form-row-phone-email { direction: ltr; }
.form-row-phone-email .form-group,
.form-row-phone-email label {
  direction: rtl;
  text-align: right;
}
.form-row-phone-email .phone-field { direction: ltr; }

label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-block-end: 0.4rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: 400 1rem/1.4 var(--font-body);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(29, 58, 42, 0.14);
}
input::placeholder, textarea::placeholder { color: rgba(69, 84, 74, 0.55); }
textarea { min-block-size: 7.5rem; resize: vertical; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2345544A' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-inline-end: 2.6rem;
}
[dir="rtl"] select { background-position: left 1rem center; }

.phone-field { display: flex; gap: 0.5rem; }
.phone-field select { flex: 0 0 auto; width: auto; min-inline-size: 6.5rem; }
.phone-field input { flex: 1 1 auto; width: auto; min-inline-size: 0; }

.radio-group { display: flex; flex-direction: column; gap: 0.6rem; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 400;
  margin-block-end: 0;
}
.radio-option input[type="radio"] {
  width: auto;
  accent-color: var(--pine);
}

.form-note {
  font-size: var(--text-xs);
  color: var(--ink-soft);
  text-align: center;
  margin: 0.9rem 0 0;
}

.form-success,
.form-error {
  display: none;
  margin-block-start: 1.1rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-size: var(--text-sm);
}
.form-success {
  background: rgba(31, 175, 84, 0.12);
  border: 1px solid rgba(31, 175, 84, 0.4);
  color: #135A32;
}
.form-error {
  background: rgba(190, 60, 40, 0.09);
  border: 1px solid rgba(190, 60, 40, 0.35);
  color: #8C2F1D;
}
.form-success.visible,
.form-error.visible { display: block; }

/* ---------- Page hero (contact page) ---------- */
.page-hero {
  background: var(--pine);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero .hero-ghost { font-size: clamp(10rem, 30vw, 18rem); }
.page-hero-inner {
  position: relative;
  padding-block: clamp(3.5rem, 3rem + 4vw, 6rem);
}
.page-hero h1 { font-size: clamp(2.2rem, 1.6rem + 3.4vw, 3.6rem); max-inline-size: 16ch; }
.page-hero .lead { color: var(--cream-soft); font-size: var(--text-lg); max-inline-size: 34rem; margin: 0; }

/* quote page: form on paper background */
.quote-page-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 880px) {
  .quote-page-layout { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 4rem; }
}
.quote-page-layout .form-card {
  border: 1px solid var(--line);
  box-shadow: none;
}
.contact-aside { display: grid; gap: 1.25rem; align-content: start; }
.aside-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1.5rem;
}
.aside-card h3 { font-size: 1.2rem; margin-block-end: 0.4rem; }
.aside-card p { color: var(--ink-soft); font-size: var(--text-sm); margin-block-end: 0.9rem; }
.aside-card p:last-child { margin-block-end: 0; }
.aside-card a:not(.btn) { color: var(--ink); text-decoration-color: var(--amber); text-underline-offset: 3px; }

/* ---------- Floating actions ---------- */
.float-stack {
  position: fixed;
  inset-block-end: 1.1rem;
  inset-inline-end: 1.1rem;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  transition: opacity 0.3s, translate 0.3s var(--ease-out);
}
.float-stack.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  translate: 0 8px;
}

.float-quote {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.3rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--cream);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px -12px rgba(23, 37, 28, 0.5);
  transition: transform 0.25s var(--ease-out);
}
.float-quote:hover { transform: translateY(-2px); }

.float-whatsapp {
  display: grid;
  place-items: center;
  inline-size: 54px;
  block-size: 54px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(31, 175, 84, 0.65);
  transition: transform 0.25s var(--ease-out);
}
.float-whatsapp:hover { transform: translateY(-2px) scale(1.05); }
.float-whatsapp svg { inline-size: 27px; block-size: 27px; fill: currentColor; }

/* the open mobile menu owns the screen — no floating actions on top of it */
body.menu-open .float-stack {
  visibility: hidden;
  opacity: 0;
}

/* on mobile the hero has its own CTAs, so the quote pill is redundant there:
   it appears only once the hero scrolls away (js toggles .past-hero).
   The WhatsApp circle stays visible throughout. The two floats sit in one
   compact row (circle anchoring the corner) so they cover a single short
   strip of the viewport instead of two stacked rows. */
@media (max-width: 768px) {
  .float-stack {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
  }
  .float-quote {
    padding: 0.65rem 1.05rem;
    font-size: 0.875rem;
    /* cream ring keeps the pill distinct on the dark pricing/process bands */
    box-shadow: 0 0 0 1.5px rgba(246, 241, 230, 0.7),
                0 12px 30px -12px rgba(23, 37, 28, 0.6);
    opacity: 0;
    visibility: hidden;
    translate: 0 8px;
    transition: opacity 0.3s, visibility 0.3s, translate 0.3s var(--ease-out);
  }
  .float-stack.past-hero .float-quote {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }
  /* …and steps aside again over the text-dense pricing/FAQ sections,
     which carry their own CTAs (js toggles .covers-content) */
  .float-stack.covers-content .float-quote {
    opacity: 0;
    visibility: hidden;
    translate: 0 8px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pine-2);
  color: var(--cream-soft);
  padding-block: clamp(3rem, 2.5rem + 3vw, 4.5rem) 1.75rem;
}
.footer-grid {
  display: grid;
  gap: 2.25rem;
  padding-block-end: 2.5rem;
  border-block-end: 1px solid var(--pine-line);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}
.site-footer .logo { color: var(--cream); }
.footer-brand p {
  margin-block-start: 1rem;
  font-size: var(--text-sm);
  max-inline-size: 24rem;
}
.footer-ar {
  font-family: var(--font-arabic);
  font-size: 1.5rem;
  color: var(--amber);
  margin-block-start: 0.5rem;
}
.site-footer h3 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-block-end: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.site-footer ul a {
  color: var(--cream-soft);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.2s;
}
.site-footer ul a:hover { color: var(--cream); }
.footer-bottom {
  padding-block-start: 1.5rem;
  font-size: var(--text-xs);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  translate: 0 26px;
  transition: opacity 0.7s var(--ease-out), translate 0.7s var(--ease-out);
}
.reveal.in { opacity: 1; translate: 0 0; }

.stagger > * {
  opacity: 0;
  translate: 0 26px;
  transition: opacity 0.7s var(--ease-out), translate 0.7s var(--ease-out);
}
.stagger.in > * { opacity: 1; translate: 0 0; }
.stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.in > *:nth-child(3) { transition-delay: 0.24s; }
.stagger.in > *:nth-child(4) { transition-delay: 0.36s; }
.stagger.in > *:nth-child(5) { transition-delay: 0.48s; }

/* ---------- Section-to-section scroll transitions ----------
   Progressive enhancement: browsers with scroll-driven animations get a
   gentle drift as each section enters — same direction and distance family
   as the reveal transitions above. Everyone else keeps the reveals alone. */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .section > .container {
      /* sine ease-in-out: spreads the drift evenly across the scroll range
         instead of front-loading it like --ease-out would */
      animation: section-drift cubic-bezier(0.37, 0, 0.63, 1) both;
      animation-duration: 1ms; /* overridden by the scroll timeline */
      animation-timeline: view();
      animation-range: entry 0% entry 90%;
    }
    /* the ghost نواة lingers as the hero scrolls away — soft parallax */
    .hero-ghost {
      animation: ghost-drift linear both;
      animation-duration: 1ms;
      animation-timeline: view();
      animation-range: exit 0% exit 100%;
    }
  }
}
@keyframes section-drift {
  from { translate: 0 24px; }
  to   { translate: 0 0; }
}
@keyframes ghost-drift {
  from { translate: 0 -50%; }
  to   { translate: 0 calc(-50% + 110px); }
}

/* ---------- Arabic pages (lang="ar" dir="rtl") ----------
   The layout is RTL-ready via logical properties; this block only swaps the
   type system and patches the few things logical properties can't express.
   Amiri carries the headlines, IBM Plex Sans Arabic the body. */
html[lang="ar"] {
  --font-display: "Amiri", "Geeza Pro", "Times New Roman", serif;
  --font-body: "IBM Plex Sans Arabic", "Geeza Pro", system-ui, -apple-system, sans-serif;
  --font-arabic: "Amiri", "Geeza Pro", serif;
}

/* Arabic script: more line-height, never tracked, never italicized */
html[lang="ar"] body { line-height: 1.8; }
html[lang="ar"] :is(h1, h2, h3, h4) {
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}
html[lang="ar"] em { font-style: normal; }
html[lang="ar"] :is(.btn, .logo, .hero-eyebrow, .facts li, .kicker, .frame-url,
  .work-tag, .plan-badge, .plan-name, .price, .price .from, .site-footer h3) { letter-spacing: 0; }
html[lang="ar"] :is(.work-num, .step-num, .service-row .arrow) { font-style: normal; }
html[lang="ar"] .faq summary { font-weight: 700; }

/* Arabic headline shapes are wider per character — loosen the h1 cage */
html[lang="ar"] .hero h1 { max-inline-size: 16ch; }

/* hover affordance on work cards, in Arabic with a mirrored arrow */
html[lang="ar"] .frame::after { content: "شاهد النموذج ↖"; letter-spacing: 0; }

/* the sample mini-scenes preview the Arabic samples: RTL innards, and none
   of the Latin-only tracking/italics/casing survives in Arabic script */
html[lang="ar"] :is(.sc-logo, .sc-title) { letter-spacing: 0; }
html[lang="ar"] .sc-title { font-style: normal; }
html[lang="ar"] .scene-law .sc-logo { text-transform: none; font-size: 4cqw; }

/* phone/email are LTR content even in an RTL form */
html[lang="ar"] :is(input[type="tel"], input[type="email"]) { direction: ltr; }
html[lang="ar"] :is(input[type="tel"], input[type="email"])::placeholder { direction: ltr; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal, .stagger > * { opacity: 1; translate: 0 0; }
  .step::after { transform: scaleX(1); }
  .kicker::after { transform: scaleX(1); }
  .frame::after { translate: 0 0; }
}
