/* ============================================================
   SCENE — campus event discovery
   black / hot pink / kinetic — official Scene brand palette
   ============================================================ */

:root {
  --bg: #050506;
  --bg-2: #121218;
  --ink: #f4f4f5;
  --muted: #a1a1aa;
  --line: #252a3a;
  --brand: #ff4d94;
  --brand-2: #df1f6b;
  --lilac: #a78bfa;
  --rose: #ff7ab0;
  --sand: #facc15;
  --sage: #4ade80;
  --radius: 20px;
  --font-display: "Switzer", system-ui, sans-serif;
  --font-body: "Switzer", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--brand); color: #0a0a0f; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a38; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

/* film grain */
.noise {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* cursor dot */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, opacity 0.3s;
  opacity: 0;
}
.cursor.is-active { opacity: 1; }
.cursor.is-hover { width: 44px; height: 44px; }
@media (hover: none) { .cursor { display: none; } }

/* ============ buttons / chips ============ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s, color 0.25s, box-shadow 0.25s;
  will-change: transform;
}
.btn--brand {
  background: var(--brand);
  color: #0a0a0f;
}
.btn--brand:hover {
  transform: scale(1.06) rotate(-1.5deg);
  box-shadow: 0 0 40px rgba(255, 77, 148, 0.35);
}
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: scale(1.04);
}
.btn--big { padding: 18px 34px; font-size: 17px; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brand);
  margin-bottom: 16px;
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

/* ============ nav ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px clamp(20px, 5vw, 64px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 15, 0.6);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}
.nav__llama {
  height: 36px;
  width: auto;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav__logo:hover .nav__llama { transform: rotate(-10deg) scale(1.12); }

.nav__links { display: flex; gap: 32px; }
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--brand); }

/* ============ hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  max-width: 1600px;
  margin: 0 auto;
  padding: 130px clamp(20px, 6vw, 80px) 60px;
  overflow: hidden;
}
.hero__content {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -15%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(255, 77, 148, 0.09), transparent 65%);
  pointer-events: none;
}

.hero__ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 100px;
  margin-bottom: 40px;
}
.hero__ticker b { color: var(--brand); font-weight: 700; }
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 77, 148, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(255, 77, 148, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.2vw, 112px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  max-width: 12ch;
  position: relative;
  z-index: 2;
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.hero__word {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero__line:nth-child(1) .hero__word { animation-delay: 0.1s; }
.hero__line:nth-child(2) .hero__word { animation-delay: 0.22s; }
.hero__line:nth-child(3) .hero__word { animation-delay: 0.34s; }
@keyframes rise { to { transform: translateY(0); } }

.hero__word--serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero__word--brand { color: var(--brand); }

.hero__sub {
  margin-top: 36px;
  max-width: 480px;
  font-size: 18px;
  color: var(--muted);
  position: relative;
  z-index: 2;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* hero phone mockup */
.hero__mock {
  flex: 0 0 auto;
  width: min(640px, 44vw);
  z-index: 1;
  pointer-events: none;
}
.hero__mock img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 50px 80px rgba(0, 0, 0, 0.6));
  animation: floaty 8s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ============ marquee ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--brand);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0a0a0f;
  white-space: nowrap;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============ sections ============ */
.section {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 6vw, 80px);
  max-width: 1600px;
  margin: 0 auto;
}
.section__head { margin-bottom: 48px; max-width: 720px; }
.section__head h2, .cta h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-transform: lowercase;
}
.section__sub { margin-top: 20px; color: var(--muted); font-size: 18px; max-width: 520px; }

/* ============ vibes bento ============ */
.vibes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.vibe {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  min-height: 240px;
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s, box-shadow 0.35s;
}
.vibe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 85% 0%, rgba(255, 77, 148, 0.13), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.vibe:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 77, 148, 0.55);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}
.vibe:hover::before { opacity: 1; }
.vibe h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}
.vibe p { font-size: 15px; color: var(--muted); max-width: 42ch; }
.vibe--wide { grid-column: span 2; }
.vibe--wide h3 { font-size: clamp(30px, 3vw, 44px); }
.vibe__go {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--brand);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(-6px) rotate(3deg);
  transition: opacity 0.25s, transform 0.25s;
}
.vibe:hover .vibe__go { opacity: 1; transform: translateY(0) rotate(0deg); }

/* ============ how ============ */
.section--how { border-top: 1px solid var(--line); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.step__shot {
  margin: auto -28px -36px;
  padding-top: 28px;
}
.step__shot img { width: 100%; display: block; }
.step__shot--map img {
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%);
  mask-image: linear-gradient(180deg, transparent, #000 22%);
}
.step:hover { transform: translateY(-6px); border-color: rgba(167, 139, 250, 0.5); }
.step__num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--brand);
  display: block;
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: lowercase;
}
.step p { color: var(--muted); font-size: 15px; }

/* ============ bento ============ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bento__card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s, border-color 0.3s;
}
.bento__card:hover { transform: translateY(-6px); border-color: rgba(255, 122, 176, 0.5); }
.bento__card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: lowercase;
}
.bento__card p { color: var(--muted); font-size: 15px; }
.bento__card--wide { grid-column: span 3; }
.bento__wide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.bento__wide-inner > div:first-child { display: flex; flex-direction: column; gap: 12px; }

.alert-stack { display: flex; flex-direction: column; gap: 12px; }
.alert-pill {
  background: rgba(242, 239, 230, 0.06);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14px;
  animation: floaty 5s ease-in-out infinite;
}
.alert-pill:nth-child(2) { animation-delay: -1.6s; margin-left: 24px; }
.alert-pill:nth-child(3) { animation-delay: -3.2s; }

/* mini map */
.map {
  position: relative;
  height: 170px;
  border-radius: 14px;
  margin-bottom: 8px;
  background:
    linear-gradient(rgba(242, 239, 230, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 230, 0.05) 1px, transparent 1px),
    #0d0d14;
  background-size: 28px 28px;
  overflow: hidden;
}
.map__dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.map__dot--1 { top: 25%; left: 20%; background: var(--rose); }
.map__dot--2 { top: 60%; left: 65%; background: var(--lilac); animation-delay: -0.5s; }
.map__dot--3 { top: 35%; left: 78%; background: var(--sand); animation-delay: -1s; }
.map__dot--4 { top: 70%; left: 35%; background: var(--brand); animation-delay: -1.5s; }
.map__you {
  position: absolute;
  top: 45%; left: 45%;
  background: var(--brand);
  color: #0a0a0f;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ============ app showcase ============ */
.showcase { text-align: center; }
.showcase img {
  width: min(920px, 100%);
  display: block;
  margin: -8% auto -2%;
  filter: drop-shadow(0 50px 80px rgba(0, 0, 0, 0.55));
}
.showcase__caption {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-top: 28px;
}

/* ============ stats ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 6vw, 80px);
  max-width: 1600px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand);
}
.stat span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* ============ cta ============ */
.cta { padding: clamp(40px, 6vw, 80px) clamp(20px, 6vw, 80px); }
.cta__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--brand);
  border-radius: 36px;
  padding: clamp(48px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  color: #0a0a0f;
  position: relative;
  overflow: hidden;
}
.cta h2 { color: #0a0a0f; }
.cta__copy p { margin-top: 20px; font-size: 18px; font-weight: 500; opacity: 0.75; }
.cta__stores { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  padding: 10px 22px 10px 16px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.store-badge:hover { transform: scale(1.05) rotate(-1deg); }
.store-badge__logo { width: 26px; height: 26px; fill: #fff; flex: 0 0 auto; }
.store-badge__text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.store-badge__text small {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.store-badge__text strong {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.store-badge--sm { gap: 9px; padding: 6px 16px 6px 12px; border-radius: 10px; }
.store-badge--sm .store-badge__logo { width: 18px; height: 18px; }
.store-badge--sm .store-badge__text small { font-size: 9px; }
.store-badge--sm .store-badge__text strong { font-size: 14px; }

.store-badge--soon {
  cursor: default;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.4);
}
.store-badge--soon .store-badge__logo,
.store-badge--soon .store-badge__text { opacity: 0.6; }
.store-badge--soon:hover { transform: none; }

/* phone mockup */
.cta__mock {
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(20px, 4vw, 72px);
  margin: auto 0;
  height: min(94%, 680px);
  width: auto;
  display: block;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.35));
}

/* QR card */
.cta__qr {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  background: #fff;
  border-radius: 20px;
  padding: 14px 22px 14px 14px;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cta__qr:hover { transform: scale(1.03) rotate(-1deg); }
.cta__qr img { width: 88px; height: 88px; display: block; }
.cta__qr span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  color: #0a0a0f;
  max-width: 13ch;
}

/* ============ legal pages ============ */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 170px clamp(20px, 6vw, 80px) 110px;
}
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: lowercase;
  margin-bottom: 12px;
}
.legal__intro { color: var(--muted); margin-bottom: 56px; }
.legal h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 44px 0 14px;
}
.legal p { color: var(--muted); margin-bottom: 14px; }
.legal ul { color: var(--muted); padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--brand); }

/* ============ footer ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 64px clamp(20px, 6vw, 80px) 32px;
  text-align: center;
  overflow: hidden;
}
.footer__tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: 24px;
}
.footer__socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.footer__socials a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: border-color 0.25s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer__socials svg {
  width: 17px;
  height: 17px;
  fill: var(--muted);
  transition: fill 0.25s;
}
.footer__socials a:hover { border-color: var(--brand); transform: translateY(-4px); }
.footer__socials a:hover svg { fill: var(--brand); }

.footer__links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.footer__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--brand); }
.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(90px, 22vw, 340px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 77, 148, 0.45);
  transition: color 0.5s;
  user-select: none;
}
.footer__wordmark:hover { color: var(--brand); -webkit-text-stroke: 2px var(--brand); }
.footer__wordmark img {
  height: 0.72em;
  width: auto;
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.06em;
}
.footer__legal { margin-top: 32px; font-size: 13px; color: var(--muted); }

/* ============ reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============ responsive ============ */
@media (max-width: 1020px) {
  .hero { flex-direction: column; justify-content: center; align-items: flex-start; }
  .hero__mock { width: min(440px, 100%); margin: 8px auto 0; }
  .hero__title { font-size: clamp(52px, 10.5vw, 152px); }
}

@media (max-width: 1100px) {
  .vibes { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__card--map { grid-column: span 2; }
  .bento__card--wide { grid-column: span 2; }
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .hero { padding-top: 120px; flex-direction: column; justify-content: center; align-items: flex-start; }
  .hero__mock { width: min(440px, 100%); margin: 24px auto 0; }
  .vibes { grid-template-columns: 1fr; }
  .vibe { min-height: 180px; }
  .vibe--wide { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .showcase img { margin: 0 auto; }
  .bento { grid-template-columns: 1fr; }
  .bento__card--map, .bento__card--wide { grid-column: span 1; }
  .bento__wide-inner { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; }
  .cta__mock { position: static; height: auto; width: min(440px, 100%); margin: 32px auto 0; }
  .phone { rotate: 0deg; }
}

/* ============ reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__word { transform: none; }
}
