/* ==========================================================================
   MAV SOCIALS — Portfolio Website
   ========================================================================== */

:root {
  --pink-deep: #E5486B;
  --pink-mid: #EF93B3;
  --pink-light: #F7D9E1;
  --pink-wash: #FBF0F2;
  --sage: #5B6650;
  --sage-dark: #454E3C;
  --ink: #211B19;
  --ink-soft: #58514E;
  --cream: #FBF8F5;
  --white: #FFFFFF;
  --line: rgba(33, 27, 25, 0.1);

  --font-display: "Fraunces", serif;
  --font-body: "Manrope", sans-serif;
  --font-script: "Playball", cursive;

  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 50px -25px rgba(33, 27, 25, 0.35);
  --shadow-card: 0 10px 30px -15px rgba(33, 27, 25, 0.25);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}

p { margin: 0 0 1em; color: var(--ink-soft); line-height: 1.7; }
p:last-child { margin-bottom: 0; }

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

section { position: relative; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); background: var(--pink-deep); }
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { transform: translateY(-3px); background: var(--ink); color: var(--white); }
.btn-lg { padding: 18px 38px; font-size: 1.02rem; }
.contact .btn-primary { background: var(--white); color: var(--ink); }
.contact .btn-primary:hover { background: var(--pink-deep); color: var(--white); }

/* ---------- Section heading ---------- */
.section-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--pink-deep);
  margin: 0 0 14px;
}
.section-label.light { color: var(--pink-light); }
.section-title {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  margin-bottom: 16px;
}
.section-sub {
  max-width: 620px;
  font-size: 1.05rem;
}
.section-heading { margin-bottom: 56px; }
.section-heading.light .section-title { color: var(--white); }
.section-heading.light .section-sub { color: rgba(255,255,255,0.75); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(251, 248, 245, 0.88);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 6px 24px -18px rgba(33,27,25,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brand span { color: var(--pink-deep); }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--pink-deep);
  transition: width .3s var(--ease);
}
.main-nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--ink);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav-cta:hover { background: var(--pink-deep); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding: 168px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  top: -220px; right: -220px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--pink-light), var(--pink-wash) 70%);
  z-index: 0;
  filter: blur(2px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--pink-deep); }
.hero-lead {
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo-frame {
  width: min(430px, 100%);
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  background: var(--pink-light);
}
.hero-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.hero-tag {
  position: absolute;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow-card);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: float 5s ease-in-out infinite;
}
.hero-tag--1 { top: 8%; left: -6%; color: var(--sage-dark); font-family: var(--font-display); font-style: italic; }
.hero-tag--2 { bottom: 10%; right: -4%; color: var(--pink-deep); animation-delay: 1.4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.scroll-cue {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
}
.scroll-cue span {
  width: 1px; height: 34px;
  background: linear-gradient(var(--ink-soft), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { padding: 110px 0; background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.about-photo {
  position: sticky;
  top: 120px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-photo img { width: 100%; }
.role-line {
  font-weight: 700;
  color: var(--sage-dark);
  font-size: 0.95rem;
  margin-bottom: 26px;
}
.about-copy p { font-size: 1.03rem; }

.cert-strip { margin-top: 44px; padding-top: 34px; border-top: 1px solid var(--line); }
.cert-strip-label {
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem;
  color: var(--sage-dark); margin-bottom: 18px;
}
.cert-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cert-item { margin: 0; }
.cert-item img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  margin-bottom: 10px;
  transition: transform .4s var(--ease);
}
.cert-item:hover img { transform: translateY(-4px); }
.cert-item figcaption { font-size: 0.8rem; font-weight: 700; line-height: 1.3; color: var(--ink); }
.cert-item figcaption span { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.76rem; margin-top: 2px; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { padding: 110px 0; background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--pink-wash);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 24px; height: 24px;
  fill: none; stroke: var(--pink-deep); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service-card p { font-size: 0.93rem; }

/* ==========================================================================
   SHOWCASE (Social Media)
   ========================================================================== */
.showcase--social {
  background: var(--ink);
  padding: 110px 0;
  color: var(--white);
}
.subgroup { margin-bottom: 56px; }
.subgroup:last-child { margin-bottom: 0; }
.subgroup-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.made-by {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink-mid);
  font-weight: 700;
}
.subgroup-note { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 14px; }

.masonry { display: grid; gap: 18px; }
.masonry-2 { grid-template-columns: repeat(2, 1fr); }
.masonry-3 { grid-template-columns: repeat(3, 1fr); }
.masonry-4 { grid-template-columns: repeat(4, 1fr); }
.masonry-feature { grid-template-columns: 1.3fr 1fr; }
.masonry-side { display: grid; gap: 18px; }

.shot {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: #17130f;
  box-shadow: 0 20px 40px -25px rgba(0,0,0,0.6);
}
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.shot:hover img { transform: scale(1.06); }
.shot--tall img { object-fit: contain; background: #fff; }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.78), transparent);
}

/* ==========================================================================
   ADMIN SUPPORT
   ========================================================================== */
.admin { padding: 110px 0; background: var(--white); }
.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.admin-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--pink-wash);
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.admin-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.admin-card-media { height: 190px; overflow: hidden; }
.admin-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.admin-card:hover .admin-card-media img { transform: scale(1.07); }
.admin-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.admin-card-body h3 { font-size: 1.12rem; margin-bottom: 10px; }
.admin-card-body p { font-size: 0.92rem; margin-bottom: 18px; }
.admin-thumbs {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-thumbs img {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px -4px rgba(0,0,0,0.35);
  border: 2px solid var(--white);
  transition: transform .3s var(--ease);
}
.admin-thumbs img:hover { transform: translateY(-4px) scale(1.05); }

/* ==========================================================================
   GRAPHIC DESIGN
   ========================================================================== */
.design { padding: 110px 0; background: var(--sage-dark); }
.design-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.tab-btn:hover { border-color: var(--pink-mid); color: var(--white); }
.tab-btn.is-active { background: var(--pink-deep); border-color: var(--pink-deep); color: var(--white); }

.design-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.design-item {
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  aspect-ratio: 1 / 1;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.design-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(229,72,107,0.0);
  transition: background .35s var(--ease);
}
.design-item:hover { transform: translateY(-5px); box-shadow: 0 20px 34px -18px rgba(0,0,0,0.55); }
.design-item:hover::after { background: rgba(229,72,107,0.12); }
.design-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.design-item:hover img { transform: scale(1.08); }
.design-item.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 12, 10, 0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(880px, 90vw);
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: zoomIn .35s var(--ease);
}
@keyframes zoomIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  border-radius: 999px;
  cursor: pointer;
  transition: background .3s;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--pink-deep); }
.lightbox-close { top: 26px; right: 26px; width: 46px; height: 46px; font-size: 1.6rem; line-height: 1; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.8rem; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ==========================================================================
   TOOLS
   ========================================================================== */
.tools { padding: 110px 0; background: var(--cream); }
.tools-grid { display: flex; flex-direction: column; gap: 34px; }
.tool-group h3 {
  font-size: 1.02rem;
  color: var(--sage-dark);
  margin-bottom: 16px;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-row span {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  transition: all .3s var(--ease);
}
.pill-row span:hover { background: var(--pink-deep); color: var(--white); border-color: var(--pink-deep); transform: translateY(-2px); }

/* ==========================================================================
   WHY WORK WITH MAV
   ========================================================================== */
.why { padding: 110px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}
.why-card {
  padding: 34px 26px;
  border-radius: var(--radius-md);
  background: var(--pink-wash);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); background: var(--pink-light); }
.why-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--pink-deep);
  opacity: 0.55;
  display: block;
  margin-bottom: 10px;
}
.why-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.why-card p { font-size: 0.92rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  background: var(--sage-dark);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.contact-blob {
  position: absolute;
  bottom: -260px; left: -180px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, var(--pink-deep), transparent 70%);
  opacity: 0.35;
}
.contact-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.contact-title {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-copy p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 480px; margin-bottom: 32px; }

.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.contact-item:hover { background: rgba(255,255,255,0.12); transform: translateX(6px); }
.contact-item strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--pink-mid); margin-bottom: 3px; }
.contact-item span:last-child { font-size: 0.95rem; font-weight: 600; word-break: break-word; }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--white); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 50px 0; }
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-inner .brand { color: var(--white); }
.footer-inner .brand span { color: var(--pink-mid); }
.footer-inner p { color: rgba(255,255,255,0.55); margin: 0; font-size: 0.9rem; }
.footer-links { display: flex; gap: 22px; margin: 10px 0; }
.footer-links a { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); transition: color .3s; }
.footer-links a:hover { color: var(--pink-mid); }
.footer-copy { font-size: 0.78rem !important; }

/* ---------- cursor glow (decorative, desktop only) ---------- */
.cursor-glow {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,147,179,0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  left: -400px; top: -400px;
  transition: left .25s linear, top .25s linear;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 420px; margin: 0 auto; }
  .masonry-feature { grid-template-columns: 1fr; }
  .design-grid { grid-template-columns: repeat(3, 1fr); }
  .cursor-glow { display: none; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 82vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    transition: right .4s var(--ease);
    box-shadow: -20px 0 50px rgba(0,0,0,0.15);
  }
  .main-nav.is-open { right: 0; }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 140px 0 70px; }
  .hero-tag { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .masonry-2, .masonry-3, .masonry-4 { grid-template-columns: repeat(2, 1fr); }
  .cert-row { grid-template-columns: 1fr; }
  .design-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-grid { grid-template-columns: 1fr; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .contact-item { flex-wrap: wrap; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero-tag { animation: none; }
}
