/* =========================================================
   MASTER ENTRADINHAS — Sales Page (Curso)
   Editorial culinária premium · Mobile-first
   v=10
========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Colors */
  --cream:        #FFFBF2;
  --cream-2:      #F7F0E1;
  --cream-3:      #EFE5D2;
  --brown:        #5B2609;
  --brown-2:      #6B5A4A;
  --brown-soft:   #8A7560;
  --amber:        #FFB500;
  --amber-2:      #E89F00;
  --amber-soft:   #FFE9B3;
  --gold-light:   #FFF1CC;
  --ink:          #1F1410;
  --ink-2:        #3D2A1F;
  --line:         rgba(91, 38, 9, 0.14);
  --line-strong:  rgba(91, 38, 9, 0.28);
  --white:        #FFFFFF;

  /* Type */
  --ff-display:   "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-body:      "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container:    1180px;
  --pad-x:        24px;
  --pad-x-mob:    16px;
  --section-y:    80px;
  --section-y-mob: 48px;

  /* Radii */
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(91, 38, 9, 0.08);
  --shadow-md:  0 10px 30px rgba(91, 38, 9, 0.14);
  --shadow-lg:  0 30px 60px -20px rgba(91, 38, 9, 0.30);
  --shadow-gold: 0 12px 36px -8px rgba(255, 181, 0, 0.45);
}

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

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

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 9999;
  background: var(--brown);
  color: var(--cream);
  padding: 12px 16px;
  border-radius: var(--r-sm);
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x-mob);
  padding-right: var(--pad-x-mob);
}

.section {
  padding-top: var(--section-y-mob);
  padding-bottom: var(--section-y-mob);
}

.section__head {
  margin-bottom: 32px;
}
.section__head--center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.section__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--brown);
  margin: 6px 0 12px;
}
.section__title em {
  font-style: italic;
  color: var(--amber-2);
  font-weight: 700;
}

.section__subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--brown-2);
  line-height: 1.55;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-2);
  margin: 0 0 6px;
}
.eyebrow--gold {
  color: var(--amber);
}

.section__cta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--r-pill);
  font-family: var(--ff-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
  white-space: nowrap;
  user-select: none;
}

.btn--primary {
  background: linear-gradient(180deg, #6e2f0d 0%, var(--brown) 100%);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--gold {
  background: linear-gradient(180deg, #FFC230 0%, var(--amber) 100%);
  color: var(--brown);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px -10px rgba(255, 181, 0, 0.6);
}

.btn--lg {
  padding: 16px 28px;
  font-size: 15px;
}
.btn--xl {
  padding: 20px 36px;
  font-size: 17px;
}

.btn__label {
  display: inline-block;
}

.btn__arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-top: 24px;
  padding-bottom: var(--section-y-mob);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 181, 0, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(91, 38, 9, 0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-block;
  margin-bottom: 28px;
}
.brand__logo {
  height: 48px;
  width: auto;
  display: block;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.hero__copy { max-width: 580px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber-soft);
  color: var(--brown);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.kicker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-2);
  box-shadow: 0 0 0 3px rgba(232, 159, 0, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: .65; }
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--brown);
  margin: 0 0 18px;
}
.hero__title em {
  font-style: italic;
  font-weight: 700;
  color: var(--amber-2);
}

.hero__lead {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--brown-2);
  line-height: 1.55;
  margin: 0 0 24px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  margin: 0 0 22px;
  box-shadow: var(--shadow-sm);
  display: inline-block;
  min-width: min(320px, 100%);
}
.price-card__from {
  font-size: 13px;
  color: var(--brown-2);
  margin: 0 0 4px;
}
.price-card__from s { color: var(--brown-soft); }
.price-card__amount {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
  margin: 0 0 4px;
}
.price-card__amount strong { color: var(--amber-2); font-weight: 700; }
.price-card__pix {
  font-size: 14px;
  color: var(--brown-2);
  margin: 0;
}
.price-card__pix strong { color: var(--brown); font-weight: 600; }

.hero__authority {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--brown-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__authority strong { color: var(--brown); font-weight: 600; }
.hero__authority-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-2);
}

/* HERO PHOTO — aspect-ratio FIXO */
.hero__photo {
  position: relative;
  margin: 32px 0 0;
  max-width: 520px;
  width: 100%;
  justify-self: center;
}
.hero__photo-glow {
  position: absolute;
  inset: -10% -8% auto auto;
  width: 70%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(255, 181, 0, 0.45), rgba(255, 181, 0, 0));
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.hero__photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-2);
  z-index: 1;
}
.hero__photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__photo-caption {
  position: relative;
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--brown-2);
  text-align: center;
  font-style: italic;
  z-index: 1;
}

/* ---------- GALLERY ---------- */
.section--gallery {
  background: var(--cream);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery__item {
  margin: 0;
  padding: 0;
}

.gallery__figure {
  margin: 0;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery__figure:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: var(--shadow-md);
}
.gallery__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(91, 38, 9, 0.15) 100%);
  pointer-events: none;
}
.gallery__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- PILLARS ---------- */
.section--pillars {
  background: var(--cream-2);
}

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--brown);
  margin: 0 auto 18px;
}
.pillar__icon svg {
  width: 30px;
  height: 30px;
}

.pillar__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--brown);
  margin: 0 0 10px;
}

.pillar__desc {
  font-size: 15px;
  color: var(--brown-2);
  line-height: 1.55;
  margin: 0;
}

/* ---------- CURRICULUM ---------- */
.section--curriculum {
  background: var(--cream);
}

.recipes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0 0 36px;
}

.recipe {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.recipe:hover {
  transform: translateX(4px);
  border-color: var(--amber);
  box-shadow: var(--shadow-md);
}

.recipe__num {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: var(--amber-2);
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}

.recipe__name {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--brown);
  line-height: 1.4;
}

.bonuses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: var(--gold-light);
  border-radius: var(--r-lg);
  padding: 22px 22px;
  border: 1px dashed var(--amber);
}

.bonus {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--brown);
  line-height: 1.5;
}
.bonus__mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
}

/* ---------- PERSONA ---------- */
.section--persona {
  background: var(--cream-2);
}

.persona-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.persona-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.persona-item p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.persona-item__check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.persona-item__check svg {
  width: 16px;
  height: 16px;
}

/* ---------- OFFER ---------- */
.section--offer {
  background: var(--cream);
  padding-top: calc(var(--section-y-mob) + 12px);
  padding-bottom: calc(var(--section-y-mob) + 12px);
}

.offer-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--amber);
  border-radius: var(--r-xl);
  padding: 36px 24px;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 181, 0, 0.10), transparent 60%);
  pointer-events: none;
}

.offer-card > * { position: relative; z-index: 1; }

.offer-card__head {
  text-align: center;
  margin-bottom: 26px;
}
.offer-card__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--brown);
  line-height: 1.15;
  margin: 6px 0 0;
}

.offer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0 0 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.offer-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.offer-list__mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.offer-list__mark svg {
  width: 14px;
  height: 14px;
}

.offer-card__price {
  text-align: center;
  margin: 8px 0 24px;
  padding: 22px 16px;
  background: var(--cream-2);
  border-radius: var(--r-md);
}
.offer-price__from {
  font-size: 14px;
  color: var(--brown-2);
  margin: 0 0 4px;
}
.offer-price__from s { color: var(--brown-soft); }
.offer-price__amount {
  font-family: var(--ff-display);
  font-size: clamp(34px, 6vw, 48px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  margin: 0 0 8px;
}
.offer-price__amount strong {
  color: var(--amber-2);
  font-weight: 700;
}
.offer-price__pix {
  font-size: 15px;
  color: var(--brown-2);
  margin: 0;
}
.offer-price__pix strong { color: var(--brown); font-weight: 600; }

.offer-card__cta {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.offer-card__cta .btn {
  width: 100%;
  max-width: 380px;
}

.offer-card__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--brown-2);
  margin: 0;
  text-align: center;
}
.offer-card__lock {
  width: 14px;
  height: 14px;
  color: var(--brown-soft);
}

/* ---------- ABOUT ---------- */
.section--about {
  background: var(--cream-2);
}

.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.about__photo {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  justify-self: center;
}
.about__photo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed var(--amber);
  opacity: .6;
  pointer-events: none;
}
.about__photo-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--cream);
}
.about__photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__copy { max-width: 600px; }

.about__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 40px);
  color: var(--brown);
  line-height: 1.1;
  margin: 6px 0 18px;
}

.about__copy p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 0 14px;
}
.about__copy p:last-of-type { margin-bottom: 22px; }
.about__copy em { font-style: italic; color: var(--brown); }

.about__cta {
  margin-top: 12px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--brown);
  color: var(--cream);
  padding: 40px 0 100px;
}
.footer__inner {
  text-align: center;
}
.footer__brand {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--cream);
}
.footer__copy,
.footer__cnpj {
  font-size: 13px;
  margin: 0 0 6px;
  color: rgba(255, 251, 242, 0.78);
}
.footer__cnpj a {
  color: var(--amber);
  text-decoration: underline;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  margin: 16px 0;
  font-size: 13px;
}
.footer__links a {
  color: var(--cream);
  opacity: .85;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: opacity .2s ease, border-color .2s ease;
}
.footer__links a:hover {
  opacity: 1;
  border-bottom-color: var(--amber);
}

.footer__compliance {
  font-size: 12px;
  color: rgba(255, 251, 242, 0.6);
  margin: 0;
}

/* ---------- STICKY CTA (mobile) ---------- */
.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 90;
  background: linear-gradient(180deg, #FFC230 0%, var(--amber) 100%);
  color: var(--brown);
  border-radius: var(--r-pill);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  text-transform: none;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: transform .15s ease;
}
.sticky-cta:active {
  transform: scale(0.98);
}
.sticky-cta__arrow {
  width: 16px;
  height: 16px;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 84px;
  transform: translateX(-50%) translateY(20px);
  background: var(--brown);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =========================================================
   BREAKPOINTS
========================================================= */

/* >= 540px — tweak hero kicker / type */
@media (min-width: 540px) {
  .hero__photo {
    margin-top: 24px;
  }
}

/* >= 768px (tablet) */
@media (min-width: 768px) {
  .container {
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }

  .section {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
  }

  .section--offer {
    padding-top: calc(var(--section-y) + 12px);
    padding-bottom: calc(var(--section-y) + 12px);
  }

  /* Gallery 3 cols */
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  /* Pillars 3 cols */
  .pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  /* Recipes 2 cols */
  .recipes {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Bonuses 1 col but wider padding */
  .bonuses {
    padding: 26px 28px;
  }

  /* Offer card */
  .offer-card {
    padding: 48px 56px;
  }
  .offer-list {
    max-width: 100%;
  }

  /* Brand logo bigger */
  .brand__logo {
    height: 56px;
  }
}

/* >= 900px (small desktop — enable hero 2-col) */
@media (min-width: 900px) {
  .hero {
    padding-top: 36px;
    padding-bottom: var(--section-y);
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }

  .hero__photo {
    margin-top: 0;
    max-width: 100%;
  }

  .hero__photo-frame {
    max-height: 640px;
  }

  .hero__photo-caption {
    text-align: left;
    padding-left: 4px;
  }

  /* About 2-col */
  .about {
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: center;
  }

  .about__photo {
    max-width: 320px;
  }
}

/* >= 1024px (large desktop) */
@media (min-width: 1024px) {
  .hero__grid {
    gap: 72px;
  }

  /* Hide sticky CTA on desktop */
  .sticky-cta {
    display: none;
  }

  /* Restore footer bottom padding (no sticky) */
  .footer {
    padding-bottom: 48px;
  }

  .toast {
    bottom: 32px;
  }
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible,
.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .kicker__dot { animation: none; }
}

/* ---------- Print ---------- */
@media print {
  .sticky-cta, .toast { display: none; }
  body { background: white; color: black; }
}
