/* ФОТОЛАБ Memories — marketing site */
:root {
  --bg: #F6F7FB;
  --bg-tint: #FFF3EA;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --muted: #6B7280;
  --border: #ECECEC;
  --primary: #FF6A13;
  --primary-hover: #E85F0F;
  --radius: 20px;
  --font-ui: 'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', 'Inter', system-ui, sans-serif;
  --shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
  --topbar-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 18px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 106, 19, 0.28);
}

.btn--primary:hover {
  background: var(--primary-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--surface);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.28);
}

.btn--lg {
  min-height: 52px;
  padding: 0 26px;
  font-size: 16px;
}

/* Brand / logo — wide wordmark, never squashed */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.brand__logo {
  width: auto !important;
  height: 36px;
  max-width: min(148px, 42vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  flex-shrink: 0;
}

.brand__logo--sm {
  height: 28px;
  max-width: 120px;
}

.brand__sub-only {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 251, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.topbar.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--topbar-h);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar__nav {
  display: none;
  gap: 18px;
  margin-left: 8px;
}

.topbar__nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.topbar__nav a:hover {
  color: var(--text);
}

.topbar__actions {
  display: none;
  gap: 10px;
  margin-left: auto;
}

.menu-toggle {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.menu-toggle[aria-expanded='true'] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 20px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  text-decoration: none;
  padding: 12px 4px;
  font-weight: 500;
}

.mobile-nav .btn {
  margin-top: 8px;
}

@media (min-width: 960px) {
  .topbar__nav,
  .topbar__actions {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 16, 12, 0.2) 0%, rgba(20, 16, 12, 0.5) 42%, rgba(20, 16, 12, 0.86) 100%),
    radial-gradient(ellipse 80% 55% at 75% 15%, rgba(255, 106, 19, 0.28), transparent 58%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

.hero__brand {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hero__title {
  margin: 0 0 16px;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 0 28px;
  max-width: 44ch;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal-text {
  opacity: 0;
  transform: translateY(22px);
  animation: riseIn 0.85s var(--ease) forwards;
}

.reveal-text:nth-child(1) { animation-delay: 0.08s; }
.reveal-text:nth-child(2) { animation-delay: 0.2s; }
.reveal-text:nth-child(3) { animation-delay: 0.34s; }
.reveal-text:nth-child(4) { animation-delay: 0.48s; }

@keyframes riseIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  z-index: 1;
}

.hero__scroll span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 6px auto 0;
  border-radius: 4px;
  background: #fff;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}

/* Sections */
.section {
  padding: 88px 0;
}

.section--tint {
  background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 100%);
}

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

#moments .section__inner {
  max-width: 1240px;
}

.section__inner--narrow {
  max-width: 640px;
  text-align: center;
}

.section__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section__lead {
  margin: 0 0 40px;
  max-width: 50ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.section__inner--narrow .section__lead {
  margin-left: auto;
  margin-right: auto;
}

.section__cta {
  margin-top: 36px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

html.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(22px);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.step {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--bg-tint);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3,
.feature h3,
.zone h3,
.session h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.step p,
.feature p,
.zone p,
.session p {
  margin: 0;
  color: var(--muted);
}

/* Features */
.features {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.feature {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* Marquee strip */
.marquee {
  overflow: hidden;
  background: #111;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee__track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 10px 0;
  animation: marquee 80s linear infinite;
}

.marquee__track:hover {
  animation-play-state: paused;
}

.marquee__track img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  opacity: 0.92;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -12px 0 28px;
}

.filter {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.filter:hover {
  color: var(--text);
}

.filter.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Masonry gallery — CSS grid (надежнее columns) */
.masonry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 720px) {
  .masonry {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (min-width: 1020px) {
  .masonry {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}

.masonry__item {
  margin: 0;
  padding: 0;
  border: none;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  width: 100%;
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.masonry__item[data-orient='landscape'],
.masonry__item:nth-child(5n),
.masonry__item:nth-child(8n) {
  aspect-ratio: 4 / 3;
}

.masonry__item[hidden] {
  display: none;
}

.masonry__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.masonry__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.masonry__item:hover img {
  transform: scale(1.04);
}

.gallery-hint {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Team banner */
.section--team .section__lead {
  margin-bottom: 28px;
}

.team-banner {
  margin: 0 auto 36px;
  max-width: 1240px;
  padding: 0 20px;
  position: relative;
}

.team-banner__btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
  box-shadow: var(--shadow);
}

.team-banner__btn img {
  width: 100%;
  height: clamp(240px, 48vw, 520px);
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 0.7s var(--ease);
}

.team-banner__btn:hover img {
  transform: scale(1.03);
}

.team-banner__caption {
  position: absolute;
  left: 36px;
  bottom: 20px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

@media (max-width: 600px) {
  .team-banner__caption {
    left: 32px;
    bottom: 14px;
  }
}

.souvenir-shot {
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  min-height: 280px;
}

.souvenir-shot button {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
}

.souvenir-shot img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.callout--inline {
  margin-top: 24px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.stat {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat__plus,
.stat__rub {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.stat p {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.prose {
  max-width: 68ch;
}

.prose p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Split */
.split {
  display: grid;
  gap: 28px;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1.4fr 0.8fr;
    gap: 32px;
    align-items: stretch;
  }
}

.bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 1.05rem;
}

.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.callout {
  background: var(--text);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.callout__label {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.callout__value {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.callout__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* Zones */
.zones {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

@media (min-width: 800px) {
  .zones {
    grid-template-columns: repeat(3, 1fr);
  }
}

.zone {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.zone-photos {
  display: grid;
  gap: 14px;
}

@media (min-width: 700px) {
  .zone-photos {
    grid-template-columns: 1.4fr 1fr;
  }
}

.zone-photos img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Sessions */
.sessions {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

@media (min-width: 800px) {
  .sessions {
    grid-template-columns: repeat(3, 1fr);
  }
}

.session {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease);
}

.session:hover {
  transform: translateY(-6px);
}

.session__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  cursor: zoom-in;
}

.session__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.session:hover .session__media img {
  transform: scale(1.08);
}

.session h3,
.session p {
  padding-left: 20px;
  padding-right: 20px;
}

.session h3 {
  margin-top: 16px;
}

.session p {
  margin-bottom: 20px;
}

.booking {
  display: grid;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1A1A1A 0%, #2a211c 100%);
  color: #fff;
}

@media (min-width: 800px) {
  .booking {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }
}

.booking h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.booking p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.booking__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.booking .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Reviews */
.reviews {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review {
  margin: 0;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.review p {
  margin: 0 0 14px;
  font-size: 1.02rem;
}

.review cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 56px;
  background: var(--surface);
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.footer__links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__legal {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 10, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.25s var(--ease);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.lightbox__prev { left: 12px; }
.lightbox__next { right: 12px; }

.lightbox__meta {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  white-space: nowrap;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Cookie banner */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  animation: cookieIn 0.45s var(--ease);
}

.cookie[hidden] {
  display: none;
}

@keyframes cookieIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.cookie__inner {
  padding: 20px;
}

.cookie__inner p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
}

.cookie__inner p:first-child {
  color: var(--text);
}

.cookie__inner a {
  color: var(--primary);
}

.cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* Legal pages */
.legal-page .topbar__inner {
  justify-content: space-between;
}

.legal {
  padding: 40px 0 80px;
}

.legal__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 28px 0 10px;
}

.legal__meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 24px;
}

.legal p,
.legal li {
  color: #374151;
}

.legal a {
  color: var(--primary);
}

.legal__back {
  margin-top: 40px !important;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media img,
  .reveal-text,
  .reveal,
  .hero__scroll span,
  .cookie,
  .session,
  .feature,
  .masonry__item img,
  .marquee__track {
    animation: none !important;
    transition: none !important;
  }
  .reveal,
  .reveal-text {
    opacity: 1;
    transform: none;
  }
}
