/* ============================================================
   A21 Sites — Luxury black + champagne gold
   ============================================================ */

:root {
  --bg: #000000;
  --bg-2: #07060a;
  --bg-3: #0e0c12;
  --ink: #f4ecd8;
  --ink-2: #c8c0ad;
  --ink-3: #8a8474;
  --gold: #c9a55a;
  --gold-2: #e7c989;
  --gold-3: #8a6e2f;
  --line: rgba(201, 165, 90, 0.18);
  --line-soft: rgba(255, 255, 255, 0.06);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(5rem, 12vw, 9rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

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

/* ---------- typography ---------- */
.eyebrow,
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 1.5rem;
  max-width: 22ch;
}

.gold {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 45%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 400;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-3) 100%);
  color: #1a1206;
  box-shadow: 0 12px 40px -16px rgba(201, 165, 90, 0.6);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 48px -14px rgba(231, 201, 137, 0.7); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.15rem 1.8rem; font-size: 0.9rem; }

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--pad);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
}
.header.is-scrolled {
  background: rgba(0,0,0,0.85);
  border-bottom-color: var(--line-soft);
  padding-top: 0.6rem; padding-bottom: 0.6rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand__logo {
  height: 38px; width: auto;
  max-width: 180px;
  filter: brightness(1.25) contrast(1.1);
  transition: height 0.4s var(--ease);
}
.header.is-scrolled .brand__logo { height: 32px; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color 0.3s var(--ease);
}
.nav a:hover { color: var(--gold-2); }
.nav__cta {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-2) !important;
}
.nav__cta:hover { background: var(--gold); color: #1a1206 !important; }

.header__mobile-cta {
  display: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .nav { display: none; }
  .header__mobile-cta { display: inline-flex; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem var(--pad) 4rem;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 75% 85%, rgba(201,165,90,0.18), transparent 55%),
    radial-gradient(ellipse at 15% 10%, rgba(201,165,90,0.06), transparent 50%),
    linear-gradient(180deg, #000 0%, #07060a 60%, #000 100%);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("assets/hero-bg.png");
  background-size: cover; background-position: center;
  opacity: 0.5;
  mix-blend-mode: screen;
}
.hero__inner { max-width: 880px; }
.hero__logo {
  width: clamp(200px, 28vw, 320px);
  margin: 0 auto 2.5rem;
  filter:
    brightness(1.2) contrast(1.1)
    drop-shadow(0 8px 30px rgba(201,165,90,0.3));
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-3);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.hero__scroll span {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- hooks ---------- */
.hooks { padding: var(--section-y) 0; background: var(--bg); position: relative; }
.hooks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.hook {
  padding: 2.5rem 2rem;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(0,0,0,0));
  border-radius: 4px;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease), background 0.5s var(--ease);
  position: relative;
}
.hook:hover {
  border-color: var(--line);
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(201,165,90,0.04), rgba(0,0,0,0));
}
.hook__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.hook h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 1rem;
}
.hook p { color: var(--ink-2); font-size: 0.95rem; margin: 0; }

@media (max-width: 900px) { .hooks__grid { grid-template-columns: 1fr; gap: 1rem; } }

/* ---------- ribbon divider ---------- */
.ribbon {
  height: clamp(120px, 18vw, 200px);
  overflow: hidden;
  position: relative;
}
.ribbon img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.85;
}
.ribbon::before, .ribbon::after {
  content: ""; position: absolute; inset: 0;
  pointer-events: none;
}
.ribbon::before {
  background: linear-gradient(90deg, #000 0%, transparent 18%, transparent 82%, #000 100%);
}
.ribbon::after {
  background: linear-gradient(180deg, #000 0%, transparent 25%, transparent 75%, #000 100%);
}

/* ---------- benefits ---------- */
.benefits { padding: var(--section-y) 0; background: var(--bg); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.benefit {
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.benefit:hover { border-color: var(--line); transform: translateY(-3px); }
.benefit__icon {
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  position: relative;
  margin-bottom: 1.25rem;
}
.benefit__icon::after {
  content: ""; position: absolute; inset: 5px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
}
.benefit h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.benefit p { margin: 0; color: var(--ink-2); font-size: 0.95rem; }

@media (max-width: 900px) { .benefits__grid { grid-template-columns: 1fr; } }

/* ---------- recent work ---------- */
.work {
  padding: var(--section-y) 0;
  background: var(--bg);
  position: relative;
}
.work__lede {
  color: var(--ink-2);
  max-width: 60ch;
  margin: -0.5rem 0 3rem;
  font-size: 1.05rem;
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.work-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(0,0,0,0.3));
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(24px);
}
.is-in .work-card { opacity: 1; transform: translateY(0); }
.is-in .work-card:nth-child(2) { transition-delay: 0.1s; }
.is-in .work-card:nth-child(3) { transition-delay: 0.2s; }
.work-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 80px -30px rgba(201,165,90,0.35);
}
.work-card__shot {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--line-soft);
}
.work-card__shot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.work-card__shot img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 0.8s var(--ease);
}
.work-card:hover .work-card__shot img { transform: scale(1.05); }
.work-card__meta {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 1.6rem;
}
.work-card__category {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.4rem;
  font-weight: 500;
}
.work-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0;
  color: var(--ink);
  line-height: 1.15;
}
.work-card__cta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
  flex-shrink: 0;
}
.work-card:hover .work-card__cta { color: var(--gold-2); }

@media (max-width: 960px) {
  .work__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .work__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .work-card__meta { padding: 1.2rem 1.25rem; }
  .work-card h3 { font-size: 1.25rem; }
}

/* ---------- pricing ---------- */
.pricing { padding: var(--section-y) 0; background: var(--bg-2); position: relative; }
.pricing::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,165,90,0.08), transparent 60%);
  pointer-events: none;
}
.pricing__lede { color: var(--ink-2); max-width: 60ch; margin: -0.5rem 0 3rem; font-size: 1.05rem; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
}
.tier {
  padding: 2.5rem 2rem;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(0,0,0,0.3));
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.tier:hover { transform: translateY(-4px); border-color: var(--line); }
.tier__name {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 0.75rem;
  font-weight: 500;
}
.tier__price {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 4rem;
  line-height: 1;
  margin: 0 0 1.5rem;
  color: var(--ink);
  display: flex; align-items: flex-start; gap: 0.25rem;
}
.tier__price span {
  font-size: 1.5rem; color: var(--gold);
  margin-top: 0.6rem;
}
.tier ul {
  list-style: none; padding: 0; margin: 0 0 2rem;
  flex: 1;
}
.tier li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}
.tier li::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 8px; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}
.tier li:last-child { border-bottom: 0; }

.tier--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201,165,90,0.08), rgba(0,0,0,0.4));
  position: relative;
  transform: translateY(-12px);
}
.tier--featured:hover { transform: translateY(-16px); }
.tier__badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #1a1206;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin: 0;
  font-weight: 600;
}
@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .tier--featured { transform: none; }
  .tier--featured:hover { transform: translateY(-4px); }
}

/* ---------- process ---------- */
.process { padding: var(--section-y) 0; background: var(--bg); }
.steps {
  list-style: none; padding: 0; margin: 3rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}
.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.step p { color: var(--ink-2); margin: 0; }

@media (max-width: 900px) { .steps { grid-template-columns: 1fr; gap: 1.5rem; } }

/* ---------- quote ---------- */
.quote {
  padding: var(--section-y) 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,165,90,0.12), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg) 70%);
  position: relative;
}
.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.quote__copy .section-title { max-width: 18ch; }
.quote__lede {
  color: var(--ink-2);
  font-size: 1.05rem;
  max-width: 48ch;
}
.quote__lede a { color: var(--gold-2); border-bottom: 1px solid var(--line); }

.quote-form {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.3));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2.25rem;
  display: grid;
  gap: 1.25rem;
  box-shadow: 0 30px 90px -40px rgba(201,165,90,0.25);
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.field input {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  padding: 0.7rem 0;
  transition: border-color 0.3s var(--ease);
  font-family: var(--font-sans);
}
.field input:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field input::placeholder { color: var(--ink-3); }
.quote-form__fineprint {
  font-size: 0.72rem;
  color: var(--ink-3);
  margin: 0;
  text-align: center;
  letter-spacing: 0.04em;
}
.quote-form__success {
  background: rgba(201,165,90,0.12);
  color: var(--gold-2);
  border: 1px solid var(--gold);
  padding: 1rem;
  text-align: center;
  border-radius: 4px;
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .quote__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .quote-form { padding: 1.75rem; }
}

/* ---------- legal pages (privacy, terms) ---------- */
.legal {
  background: var(--bg);
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  min-height: 100svh;
}
.legal__inner {
  max-width: 780px;
}
.legal__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.legal__effective {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 3rem;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--ink);
  margin: 3rem 0 1rem;
  letter-spacing: -0.005em;
}
.legal h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-2);
  margin: 1.75rem 0 0.5rem;
  letter-spacing: 0.04em;
}
.legal p, .legal li {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.75;
}
.legal p { margin: 0 0 1.1rem; }
.legal ul {
  padding-left: 1.4rem;
  margin: 0 0 1.25rem;
}
.legal li {
  margin-bottom: 0.55rem;
}
.legal li::marker { color: var(--gold); }
.legal a {
  color: var(--gold-2);
  border-bottom: 1px solid var(--line);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.legal a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.legal strong { color: var(--ink); font-weight: 500; }
.legal__contact {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(0,0,0,0.3));
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 0.5rem 0 2rem;
  line-height: 1.85;
}
.legal__back {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.legal__back a {
  border-bottom: 0;
  color: var(--ink-3);
}
.legal__back a:hover { color: var(--gold-2); }

/* ---------- footer ---------- */
.footer {
  padding: 4rem 0 2.5rem;
  background: #000;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.footer__logo {
  height: 56px;
  width: auto;
  filter: brightness(1.2) contrast(1.1);
  opacity: 0.95;
}
.footer__meta {
  display: flex; gap: 0.85rem; flex-wrap: wrap; justify-content: center;
  font-size: 0.85rem; color: var(--ink-2);
  letter-spacing: 0.06em;
}
.footer__meta a:hover { color: var(--gold-2); }
.footer__copy {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease) var(--d, 0s), transform 1s var(--ease) var(--d, 0s);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* hero reveals on load */
.hero .reveal { animation: none; }
.hero.is-loaded .reveal { opacity: 1; transform: translateY(0); }

/* scroll-section reveals via IO */
.section-label, .section-title, .hook, .benefit, .tier, .step, .quote-form, .quote__copy > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.is-in .section-label,
.is-in .section-title,
.is-in .hook,
.is-in .benefit,
.is-in .tier,
.is-in .step,
.is-in .quote-form,
.is-in .quote__copy > * {
  opacity: 1;
  transform: translateY(0);
}
.is-in .hook:nth-child(2), .is-in .benefit:nth-child(2), .is-in .tier:nth-child(2), .is-in .step:nth-child(2) { transition-delay: 0.1s; }
.is-in .hook:nth-child(3), .is-in .benefit:nth-child(3), .is-in .tier:nth-child(3), .is-in .step:nth-child(3) { transition-delay: 0.2s; }
.is-in .benefit:nth-child(4) { transition-delay: 0.3s; }
.is-in .benefit:nth-child(5) { transition-delay: 0.35s; }
.is-in .benefit:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .section-label, .section-title, .hook, .benefit, .tier, .step, .quote-form, .quote__copy > * {
    opacity: 1; transform: none;
  }
}
