/* ============================================================
   Prasan.MyReflections — style.css
   v1.0 · 2025
   ============================================================ */

/* ── Custom Properties ───────────────────────────────────────────── */
:root {
  --bg:         oklch(0.08 0.005 250);
  --fg:         oklch(0.96 0.005 250);
  --card:       oklch(0.12 0.008 250);
  --silver:     oklch(0.88 0.008 250);
  --muted:      oklch(0.65 0.015 250);
  --border:     oklch(1 0 0 / 8%);
  --input:      oklch(1 0 0 / 12%);
  --pink:       #FF3399;
  --pink-light: #ff80c4;
  --pink-dark:  #cc1177;
  --wa-green:   #25D366;
  --red:        oklch(0.62 0.24 25);

  --font-display:    "Montserrat", sans-serif;
  --font-sans:       "Inter", system-ui, sans-serif;
  --font-serif:      "Playfair Display", serif;
  --font-mono:       "JetBrains Mono", monospace;
  --font-newsreader: "Newsreader", Georgia, serif;

  --header-h:  80px;
  --container: 1100px;
  --px:        1.5rem;
  --px-md:     3rem;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset + Base ────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

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

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

body.menu-open { overflow: hidden; }

img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: none; font: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--silver); color: var(--bg); }

/* ── Typography Utilities ────────────────────────────────────────── */
.font-display    { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; }
.font-mono       { font-family: var(--font-mono); letter-spacing: 0.1em; }
.font-serif-i    { font-family: var(--font-serif); font-style: italic; }
.font-newsreader { font-family: var(--font-newsreader); }
.font-sans       { font-family: var(--font-sans); }

.uppercase  { text-transform: uppercase; }
.italic     { font-style: italic; }
.normal-case { text-transform: none; }

/* ── Layout ──────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--px);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--px-md); }
}

.site-main {
  padding-top: var(--header-h);
}
@media (min-width: 768px) {
  .site-main { padding-top: 0; }
}

/* ── Custom Cursor ───────────────────────────────────────────────── */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 18px; height: 18px;
  border: 1px solid oklch(0.88 0.008 250 / 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out),
              height 0.25s var(--ease-out),
              opacity 0.25s,
              border-color 0.25s;
  will-change: transform;
}
.custom-cursor.is-hovering {
  width: 38px; height: 38px;
  border-color: oklch(0.88 0.008 250 / 0.35);
}

/* ── Vignette ────────────────────────────────────────────────────── */
.vignette {
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.85) 100%);
  z-index: 8;
}

/* ─────────────────────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 70;
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .site-header {
    position: relative;
    z-index: 60;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--px);
}
@media (min-width: 768px) {
  .site-header__inner { padding-inline: var(--px-md); }
}

.site-header__logo { display: flex; align-items: center; position: relative; z-index: 65; }
.logo-img { height: 48px; width: auto; object-fit: contain; filter: brightness(1.05); }

.site-nav { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 768px) { .site-nav { display: flex; } }

.site-nav__link {
  position: relative;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: oklch(0.88 0.008 250 / 0.7);
  transition: color 0.3s;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--silver);
  transition: width 0.5s;
}
.site-nav__link:hover { color: var(--silver); }
.site-nav__link:hover::after { width: 100%; }

.site-header__cta {
  display: none;
  font-family: var(--font-newsreader);
  font-size: 16pt;
  font-style: italic;
  color: oklch(0.88 0.008 250 / 0.85);
  position: relative;
  transition: color 0.3s;
}
.site-header__cta::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: oklch(0.88 0.008 250 / 0.5);
  transition: width 0.5s;
}
.site-header__cta:hover { color: var(--silver); }
.site-header__cta:hover::after { width: 100%; }
@media (min-width: 768px) { .site-header__cta { display: block; } }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  position: relative;
  z-index: 65;
}
@media (min-width: 768px) { .hamburger { display: none; } }

.hamburger__line {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--silver);
  border-radius: 9999px;
  transition: transform 0.3s ease-in-out, opacity 0.2s;
  transform-origin: center;
}

/* Hamburger → X state */
.hamburger.is-open .hamburger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Menu Overlay ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 62;
  background: #000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  clip-path: circle(0% at calc(100% - 36px) 36px);
  transition: clip-path 0.65s var(--ease-in);
  pointer-events: none;
}
.mobile-menu.is-open {
  clip-path: circle(170% at calc(100% - 36px) 36px);
  pointer-events: auto;
}
@media (min-width: 768px) { .mobile-menu { display: none; } }

.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 2rem;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateX(48px);
  transition: color 0.2s;
}
.mobile-menu.is-open .mobile-menu__link { animation: slideInFromRight 0.4s ease-out forwards; }
.mobile-menu.is-open .mobile-menu__link:nth-child(1)  { animation-delay: 0.180s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2)  { animation-delay: 0.245s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3)  { animation-delay: 0.310s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4)  { animation-delay: 0.375s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5)  { animation-delay: 0.440s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6)  { animation-delay: 0.505s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(7)  { animation-delay: 0.570s; }

.mobile-menu__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.3);
  width: 1.5rem;
  flex-shrink: 0;
}
.mobile-menu__label {
  font-family: var(--font-display);
  font-size: clamp(7vw, 9vw, 10vw);
  line-height: 1;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.mobile-menu__link:hover .mobile-menu__label { color: #fff; }

.mobile-menu__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.5rem 2rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s 0.5s, transform 0.4s 0.5s;
}
.mobile-menu.is-open .mobile-menu__footer { opacity: 1; transform: translateY(0); }

.mobile-menu__socials { display: flex; align-items: center; gap: 1.25rem; }
.mobile-menu__social {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.mobile-menu__social:hover { color: #fff; }
.mobile-menu__social svg { display: block; }

.mobile-menu__cta {
  font-family: var(--font-newsreader);
  font-size: 22pt;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.mobile-menu__cta:hover { color: #fff; }

/* ─────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: calc(100dvh - var(--header-h));
  overflow: hidden;
  background: #000;
  touch-action: pan-y;
}
@media (min-width: 768px) {
  .hero { height: 100svh; }
}

/* Camera flash video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
.hero-video.is-playing {
  z-index: 72;
  opacity: 1;
}

/* Black overlay for flash transitions */
.hero-black {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 71;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s;
}
.hero-black.is-visible { opacity: 1; }
.hero-black.is-fading  { opacity: 0; transition: opacity 0.85s; }

/* Side vignette */
.hero-side-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  transition: background 1.2s ease;
}

/* Slide images */
.hero-images { position: absolute; inset: 0; }

.hero-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: none;
}
.hero-image.is-active { opacity: 1; }
.hero-image.is-exiting {
  opacity: 0;
  filter: blur(12px);
  transform: scale(1.06);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out, filter 0.7s ease-out;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

/* Mobile object positions */
@media (max-width: 767px) {
  .hero-img[data-slide="0"] { object-position: 74% -150px; }
  .hero-img[data-slide="1"] { object-position: 75% top; }
  .hero-img[data-slide="2"] { object-position: 22% top; }
  .hero-img[data-slide="3"] { object-position: 20% top; }
  .hero-img[data-slide="4"] { object-position: 78% top; }
}

/* Ken Burns animation on active image */
.hero-image.is-active .hero-img { animation: var(--kb-anim, kb-1) 12s cubic-bezier(0.05, 0.1, 0.1, 1) forwards; }

@keyframes kb-1 { from { transform: scale(1.12) translate(30px, -8px); } to { transform: scale(1.03) translate(0, 0); } }
@keyframes kb-2 { from { transform: scale(1.14) translate(25px,  5px); } to { transform: scale(1.03) translate(0, 0); } }
@keyframes kb-3 { from { transform: scale(1.12) translate(-25px, 5px); } to { transform: scale(1.03) translate(0, 0); } }
@keyframes kb-4 { from { transform: scale(1.10) translate(-18px,10px); } to { transform: scale(1.03) translate(0, 0); } }
@keyframes kb-5 { from { transform: scale(1.12) translate(20px, -5px); } to { transform: scale(1.03) translate(0, 0); } }

/* ── Countdown overlay ───────────────────────────────────────────── */
.hero-countdown {
  position: absolute;
  inset: 0;
  z-index: 55;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}
.hero-countdown.is-hidden { opacity: 0; pointer-events: none; }

.hero-countdown__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60vmin; height: 60vmin;
}

.hero-countdown__svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
  width: 100%; height: 100%;
}

.hero-countdown__track {
  fill: none;
  stroke: currentColor;
  stroke-opacity: 0.15;
  stroke-width: 0.5;
}

.hero-countdown__progress {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.8;
  stroke-dasharray: 603;
  stroke-dashoffset: 603;
}
.hero-countdown__progress.is-running {
  animation: ring-draw 1s linear forwards;
}

@keyframes ring-draw { to { stroke-dashoffset: 0; } }

.hero-countdown__cross {
  stroke: currentColor;
  stroke-opacity: 0.2;
  stroke-width: 0.3;
}

.hero-countdown__number {
  font-family: var(--font-display);
  font-size: 30vmin;
  line-height: 1;
  color: var(--silver);
  position: relative;
  z-index: 1;
  animation: flicker 4s linear infinite;
}

.hero-countdown__caption {
  position: absolute;
  bottom: -2.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: oklch(0.88 0.008 250 / 0.6);
}

/* White flash */
.hero-flash {
  position: absolute;
  inset: 0;
  z-index: 58;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}
.hero-flash.is-flashing {
  animation: white-flash 0.65s ease forwards;
}
@keyframes white-flash {
  0%   { opacity: 0; }
  15%  { opacity: 1; }
  40%  { opacity: 0.4; }
  100% { opacity: 0; }
}

/* Boot black overlay */
.hero-boot {
  position: absolute;
  inset: 0;
  z-index: 60;
  background: #000;
  pointer-events: none;
  transition: opacity 0.8s;
}
.hero-boot.is-done { opacity: 0; }

/* ── Slide content ───────────────────────────────────────────────── */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
}
.hero-content.is-visible {
  animation: slideTextIn 1.2s var(--ease-out) 0.85s both;
}

@keyframes slideTextIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Desktop content */
.hero-content--desktop {
  display: none;
  align-items: center;
}
@media (min-width: 768px) { .hero-content--desktop { display: flex; } }

.hero-content__text {
  display: flex;
  flex-direction: column;
  max-width: min(420px, 36vw);
}
.hero-content__text--left  { margin-left: 7vw; margin-right: auto; text-align: left; align-items: flex-start; }
.hero-content__text--right { margin-right: 7vw; margin-left: auto; text-align: right; align-items: flex-end; }

.hero-content__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0.45;
}
.hero-content__meta--right { flex-direction: row-reverse; }

.hero-content__num,
.hero-content__cat {
  font-family: var(--font-mono);
  color: var(--silver);
}
.hero-content__num { font-size: 9px; letter-spacing: 0.7em; }
.hero-content__cat { font-size: 8px; letter-spacing: 0.6em; }

.hero-content__divider-meta {
  display: block;
  height: 1px; width: 28px;
  background: oklch(0.88 0.008 250 / 0.7);
}

.hero-content__title {
  font-family: var(--font-display);
  font-size: clamp(58px, 7vw, 96px);
  line-height: 0.84;
  letter-spacing: 0.04em;
  color: var(--silver);
  text-shadow: 0 4px 48px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

.hero-content__rule {
  display: block;
  height: 1px; width: 68px;
  margin-bottom: 20px;
}
.hero-content__rule--left  { background: linear-gradient(to right, rgba(215,215,215,0.6), transparent); }
.hero-content__rule--right { background: linear-gradient(to left,  rgba(215,215,215,0.6), transparent); }

.hero-content__sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: oklch(0.88 0.008 250 / 0.82);
  line-height: 1.35;
  font-size: clamp(13px, 1.3vw, 18px);
  margin-bottom: 16px;
}

.hero-content__desc {
  font-family: var(--font-mono);
  font-size: 10px;
  color: oklch(0.88 0.008 250 / 0.45);
  line-height: 1.95;
  letter-spacing: 0.05em;
  max-width: 36ch;
}

/* Mobile content */
.hero-content--mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: 2rem;
  bottom: 90px;
  top: auto;
  inset-block: auto;
  position: absolute;
  inset-inline: 0;
  bottom: 90px;
}
@media (min-width: 768px) { .hero-content--mobile { display: none; } }

.hero-content--mobile .hero-content__title  { font-size: clamp(52px, 18vw, 88px); line-height: 0.88; margin-bottom: 16px; }
.hero-content--mobile .hero-content__rule   { background: linear-gradient(to right, transparent, rgba(215,215,215,0.55), transparent); margin-bottom: 16px; }
.hero-content--mobile .hero-content__sub    { font-size: clamp(14px, 4vw, 18px); margin-bottom: 12px; max-width: 78vw; }
.hero-content--mobile .hero-content__desc   { font-size: clamp(9px, 2.6vw, 11px); line-height: 1.9; letter-spacing: 0.04em; max-width: 68vw; }
.hero-content--mobile .hero-content__meta   { justify-content: center; }

/* ── Navigation arrows ───────────────────────────────────────────── */
.hero-arrow {
  position: absolute;
  top: 50%; z-index: 30;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid oklch(0.88 0.008 250 / 0.25);
  background: rgba(0,0,0,0.1);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: oklch(0.88 0.008 250 / 0.8);
  transition: border-color 0.3s, background 0.3s, transform 0.3s, color 0.3s;
}
.hero-arrow[hidden] { display: none; }
.hero-arrow:hover {
  border-color: oklch(0.88 0.008 250 / 0.7);
  background: oklch(0.88 0.008 250 / 0.08);
  transform: translateY(-50%) scale(1.1);
}
.hero-arrow:active { transform: translateY(-50%) scale(0.95); }
.hero-arrow--prev { left: 1rem; }
.hero-arrow--next { right: 1rem; }
@media (min-width: 768px) {
  .hero-arrow--prev { left: 2rem; }
  .hero-arrow--next { right: 2rem; }
}
.hero-arrow svg { transition: transform 0.3s; }
.hero-arrow--prev:hover svg { transform: translateX(-2px); }
.hero-arrow--next:hover svg { transform: translateX(2px); }

/* ── Progress dots ───────────────────────────────────────────────── */
.hero-dots {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 54px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-dot {
  height: 2px;
  width: 5px;
  background: oklch(0.88 0.008 250 / 0.28);
  border-radius: 9999px;
  border: none;
  padding: 0;
  transition: width 0.5s, background 0.5s;
}
.hero-dot.is-active {
  width: 24px;
  background: oklch(0.88 0.008 250 / 0.9);
}

/* ── Bottom HUD ──────────────────────────────────────────────────── */
.hero-hud {
  position: absolute;
  inset-inline: 0;
  bottom: 2rem;
  z-index: 30;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-inline: 2rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: oklch(0.88 0.008 250 / 0.55);
}
@media (min-width: 768px) { .hero-hud { padding-inline: 3rem; } }

.hero-hud__curr {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  color: oklch(0.88 0.008 250 / 0.75);
}
.hero-hud__sep { padding-bottom: 2px; color: oklch(0.88 0.008 250 / 0.35); }

.hero-hud__location {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
@media (min-width: 768px) { .hero-hud__location { display: flex; } }
.hero-hud__location-place { color: oklch(0.88 0.008 250 / 0.4); }
.hero-hud__location-time  { color: oklch(0.88 0.008 250 / 0.3); }

.hero-hud__scroll { display: flex; align-items: center; gap: 0.5rem; }
.hero-hud__scroll-text { color: oklch(0.88 0.008 250 / 0.4); }
.hero-hud__scroll-line {
  display: block;
  width: 1px; height: 28px;
  background: oklch(0.88 0.008 250 / 0.4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ViewFinder — desktop only */
.viewfinder { display: none; }
@media (min-width: 768px) {
  .viewfinder {
    display: block;
    position: absolute; inset: 0;
    z-index: 32;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.7s;
  }
  .viewfinder.is-visible { opacity: 1; }
}

/* ─────────────────────────────────────────────────────────────────
   MANIFESTO / ABOUT SECTION
   ───────────────────────────────────────────────────────────────── */
.manifesto {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding-block: 8rem 10rem;
}
@media (min-width: 768px) { .manifesto { padding-block: 10rem; } }

.manifesto__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: oklch(0.65 0.015 250 / 1);
  margin-bottom: 3rem;
}
.manifesto__label-line { display: block; height: 1px; width: 48px; background: oklch(0.88 0.008 250 / 0.4); }

.manifesto__quote {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(6.5vw, 8vw, 4.5vw);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--silver);
}
@media (min-width: 768px) { .manifesto__quote { font-size: clamp(32px, 4.5vw, 64px); } }
@media (max-width: 767px) { .manifesto__quote { font-size: 8vw; } }

.manifesto__word {
  display: inline-block;
  margin-right: 0.25em;
  opacity: 0.1;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.manifesto__word.is-visible { opacity: 1; transform: translateY(0); }

.manifesto__divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-block: 5rem;
}
.manifesto__divider-line { flex: 1; height: 1px; background: oklch(0.88 0.008 250 / 0.1); }
.manifesto__divider-dot {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.6em;
  color: oklch(0.88 0.008 250 / 0.25);
}

.manifesto__profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px)  { .manifesto__profile { grid-template-columns: 1fr 400px; gap: 5rem; } }
@media (min-width: 1024px) { .manifesto__profile { grid-template-columns: 1fr 460px; gap: 7rem; } }

.manifesto__text { display: flex; flex-direction: column; justify-content: center; }

.manifesto__sublabel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.6em;
  color: oklch(0.88 0.008 250 / 0.35);
  margin-bottom: 2rem;
}
.manifesto__sublabel-line { display: block; height: 1px; width: 32px; background: oklch(0.88 0.008 250 / 0.25); }

.manifesto__heading {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--silver);
  margin-bottom: 2.5rem;
}

.manifesto__para {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.95;
  color: oklch(0.88 0.008 250 / 0.65);
  font-size: clamp(16px, 1.2vw, 17px);
  margin-bottom: 1.75rem;
  overflow: hidden;
}
.manifesto__para--secondary {
  color: oklch(0.88 0.008 250 / 0.42);
  font-size: clamp(16px, 1.1vw, 17px);
  line-height: 1.85;
  margin-bottom: 0;
}

/* Drop cap */
.manifesto__dropcap {
  float: left;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--silver);
  font-size: clamp(72px, 7vw, 96px);
  line-height: 0.78;
  margin-right: 0.12em;
  margin-top: 0.06em;
  user-select: none;
  aria-hidden: true;
}

.manifesto__credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 1.5rem;
  margin-top: 3rem;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.45em;
  color: oklch(0.88 0.008 250 / 0.28);
}
.manifesto__credentials-sep { display: block; height: 1px; width: 24px; background: oklch(0.88 0.008 250 / 0.2); }

/* Portrait photo */
.manifesto__photo-wrap {
  position: relative;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.manifesto__photo-wrap.is-visible { opacity: 1; transform: translateX(0); }

.manifesto__photo-frame {
  position: absolute;
  inset: -1rem;
  pointer-events: none;
  z-index: 10;
}
.manifesto__photo-frame-corner {
  position: absolute;
  width: 40px; height: 40px;
  border-color: oklch(0.88 0.008 250 / 0.2);
  border-style: solid;
  border-width: 0;
}
.manifesto__photo-frame-corner--tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.manifesto__photo-frame-corner--tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.manifesto__photo-frame-corner--bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.manifesto__photo-frame-corner--br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

.manifesto__photo-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.manifesto__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.88) contrast(1.1) saturate(0.80);
}
.manifesto__photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.08 0.005 250 / 0.6), oklch(0.08 0.005 250 / 0.1) 40%, transparent);
}

.manifesto__photo-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.45em;
  color: oklch(0.88 0.008 250 / 0.28);
}

/* ─────────────────────────────────────────────────────────────────
   SERVICES SECTION
   ───────────────────────────────────────────────────────────────── */
.services {
  position: relative;
  background: var(--bg);
  padding-block: 5rem 8rem;
}
@media (min-width: 768px) { .services { padding-block: 8rem; } }

.services__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: oklch(0.88 0.008 250 / 0.35);
  margin-bottom: 1.5rem;
}
.services__label-line { display: block; height: 1px; width: 48px; background: oklch(0.88 0.008 250 / 0.3); }

.services__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .services__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 5rem;
  }
}

.services__heading {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--silver);
}

.services__tagline {
  font-family: var(--font-sans);
  font-weight: 300;
  color: oklch(0.88 0.008 250 / 0.4);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.85;
  max-width: 20rem;
}
@media (min-width: 768px) { .services__tagline { text-align: right; } }

/* Grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

/* ── Service Card ─────────────────────────────────────────────────── */
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid oklch(0.88 0.008 250 / 0.1);
  transition: border-color 0.3s;
  opacity: 0;
  transform: translateY(32px);
}
.service-card.is-visible { opacity: 1; transform: translateY(0); }
.service-card.is-visible { transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out), border-color 0.3s; }

/* Stagger delays */
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.07s; }
.service-card:nth-child(3) { transition-delay: 0.14s; }
.service-card:nth-child(4) { transition-delay: 0.21s; }
.service-card:nth-child(5) { transition-delay: 0.28s; }
.service-card:nth-child(6) { transition-delay: 0.35s; }
.service-card:nth-child(7) { transition-delay: 0.42s; }
.service-card:nth-child(8) { transition-delay: 0.49s; }

.service-card:hover { border-color: transparent; }

/* Rotating gradient border */
.service-card::before {
  content: '';
  position: absolute;
  width: 260%; height: 260%;
  top: -80%; left: -80%;
  background: conic-gradient(var(--pink), var(--pink-light), var(--pink), var(--pink-dark), var(--pink), var(--pink-light), var(--pink));
  animation: service-spin 2s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.service-card:hover::before { opacity: 1; }

@keyframes service-spin { to { transform: rotate(360deg); } }

.service-card__inner {
  position: absolute;
  inset: 1.5px;
  background: var(--bg);
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
}
@media (min-width: 768px) { .service-card__top { padding: 1.25rem; } }

.service-card__icon {
  transition: transform 0.7s ease-out;
  width: clamp(36px, 3.8vw, 52px);
  height: clamp(36px, 3.8vw, 52px);
}
.service-card:hover .service-card__icon { transform: scale(1.1); }

.service-card__num {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.5em;
  color: oklch(0.88 0.008 250 / 0.2);
  margin-top: 2px;
  transition: color 0.5s;
}
.service-card:hover .service-card__num { color: oklch(0.88 0.008 250 / 0.45); }

.service-card__spacer { flex: 1; }

.service-card__bottom {
  padding: 1rem;
  text-align: right;
}
@media (min-width: 768px) { .service-card__bottom { padding: 1.25rem; } }

.service-card__title {
  font-family: var(--font-display);
  font-size: 25px;
  text-transform: uppercase;
  line-height: 1.35;
  letter-spacing: 0.06em;
  color: oklch(0.88 0.008 250 / 0.55);
  transition: color 0.5s;
}
.service-card:hover .service-card__title { color: oklch(0.88 0.008 250 / 0.92); }

/* Bottom accent line */
.service-card__accent {
  position: absolute;
  bottom: 0; right: 0;
  height: 1.5px; width: 0;
  background: linear-gradient(to left, rgba(255,51,153,0.7), transparent);
  transition: width 0.7s ease-out;
  z-index: 2;
}
.service-card:hover .service-card__accent { width: 100%; }

/* ─────────────────────────────────────────────────────────────────
   TESTIMONIALS SECTION
   ───────────────────────────────────────────────────────────────── */
.testimonials {
  position: relative;
  background: #060606;
  padding-block: 7rem 10rem;
  overflow: hidden;
}
@media (min-width: 768px) { .testimonials { padding-block: 10rem; } }

.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  height: 1px;
  background: oklch(0.88 0.008 250 / 0.08);
}
.testimonials::before { top: 0; }
.testimonials::after  { bottom: 0; }

.testimonials__bg-num {
  position: absolute;
  right: 2rem;
  top: 50%; transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 22vw;
  line-height: 1;
  color: rgba(255,255,255,0.025);
  user-select: none;
  pointer-events: none;
  display: none;
}
@media (min-width: 768px) { .testimonials__bg-num { display: block; } }

.testimonials__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.testimonials__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: oklch(0.88 0.008 250 / 0.35);
  margin-bottom: 1.25rem;
}
.testimonials__label-line { display: block; height: 1px; width: 48px; background: oklch(0.88 0.008 250 / 0.3); }

.testimonials__heading {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.88;
  letter-spacing: 0.03em;
  color: var(--silver);
}

.testimonials__counter { display: none; text-align: right; font-family: var(--font-mono); }
@media (min-width: 768px) { .testimonials__counter { display: block; } }
.testimonials__counter-curr {
  font-size: 32px; font-weight: 300;
  color: oklch(0.88 0.008 250 / 0.7); line-height: 1;
}
.testimonials__counter-total {
  display: block; margin-top: 4px;
  font-size: 10px; letter-spacing: 0.4em;
  color: oklch(0.88 0.008 250 / 0.25);
}

/* Card */
.testimonials__track {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  cursor: grab;
}
.testimonials__track:active { cursor: grabbing; }

.testimonials__card {
  position: absolute; inset: 0;
  border: 1px solid oklch(0.88 0.008 250 / 0.1);
  background: rgba(255,255,255,0.02);
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(60px);
  transition: opacity 0.5s var(--ease-in), transform 0.5s var(--ease-in);
}
@media (min-width: 768px) { .testimonials__card { padding: 3.5rem; } }

.testimonials__card.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.testimonials__card.is-exiting-left  { transform: translateX(-60px); opacity: 0; }
.testimonials__card.is-exiting-right { transform: translateX(60px); opacity: 0; }

.testimonials__quote-mark {
  position: absolute;
  left: 2rem; top: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(96px, 10vw, 120px);
  line-height: 1;
  color: oklch(0.88 0.008 250 / 0.08);
  user-select: none;
  pointer-events: none;
  margin-top: -1rem;
}

.testimonials__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.testimonials__star { color: oklch(0.88 0.008 250 / 0.55); }

.testimonials__text {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.95;
  color: oklch(0.88 0.008 250 / 0.7);
  font-size: clamp(15px, 1.6vw, 20px);
}

.testimonials__client {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid oklch(0.88 0.008 250 / 0.08);
}

.testimonials__avatar {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid oklch(0.88 0.008 250 / 0.2);
  background: oklch(0.88 0.008 250 / 0.05);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: oklch(0.88 0.008 250 / 0.5);
}

.testimonials__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: oklch(0.88 0.008 250 / 0.85);
  font-size: clamp(13px, 1vw, 16px);
}
.testimonials__role {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: oklch(0.88 0.008 250 / 0.3);
}

/* Navigation */
.testimonials__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonials__btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid oklch(0.88 0.008 250 / 0.15);
  display: flex; align-items: center; justify-content: center;
  color: oklch(0.88 0.008 250 / 0.5);
  transition: border-color 0.3s, color 0.3s;
}
.testimonials__btn:hover { border-color: oklch(0.88 0.008 250 / 0.4); color: var(--silver); }

.testimonials__tracks {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.testimonials__track-btn {
  flex: 1;
  height: 2px;
  border-radius: 9999px;
  overflow: hidden;
  background: oklch(0.88 0.008 250 / 0.15);
  border: none;
  padding: 0;
  position: relative;
  transition: all 0.3s;
}
.testimonials__track-fill {
  position: absolute;
  inset-block: 0; left: 0;
  background: oklch(0.88 0.008 250 / 0.7);
  border-radius: 9999px;
  width: 0%;
  transition: width 0.06s linear;
}
.testimonials__track-btn.is-past .testimonials__track-fill { width: 100%; background: oklch(0.88 0.008 250 / 0.4); }

/* ─────────────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────────────── */
.faq {
  position: relative;
  background: var(--bg);
  padding-block: 7rem 10rem;
}
@media (min-width: 768px) { .faq { padding-block: 10rem; } }

.faq__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 5rem;
}
@media (min-width: 768px) { .faq__header { grid-template-columns: 1fr auto; } }

.faq__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: oklch(0.88 0.008 250 / 0.35);
  margin-bottom: 1.5rem;
}
.faq__label-line { display: block; height: 1px; width: 48px; background: oklch(0.88 0.008 250 / 0.3); }

.faq__heading {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--silver);
}

.faq__ask-link {
  display: none;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: oklch(0.88 0.008 250 / 0.5);
  align-self: flex-end;
  transition: color 0.3s;
}
@media (min-width: 768px) { .faq__ask-link { display: inline-flex; } }
.faq__ask-link::after {
  content: '';
  display: block;
  height: 1px; width: 24px;
  background: currentColor;
  transition: width 0.4s;
}
.faq__ask-link:hover { color: var(--silver); }
.faq__ask-link:hover::after { width: 48px; }

.faq__list { border-top: 1px solid oklch(0.88 0.008 250 / 0.1); }

.faq__item {
  border-bottom: 1px solid oklch(0.88 0.008 250 / 0.1);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.faq__item.is-visible { opacity: 1; transform: translateY(0); }

.faq__item:nth-child(1) { transition-delay: 0s; }
.faq__item:nth-child(2) { transition-delay: 0.07s; }
.faq__item:nth-child(3) { transition-delay: 0.14s; }
.faq__item:nth-child(4) { transition-delay: 0.21s; }
.faq__item:nth-child(5) { transition-delay: 0.28s; }

.faq__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding-block: 1.75rem;
  text-align: left;
  transition: color 0.3s;
}
@media (min-width: 768px) { .faq__question { align-items: center; } }

.faq__question-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
@media (min-width: 768px) { .faq__question-inner { align-items: center; } }

.faq__num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.5em;
  color: oklch(0.88 0.008 250 / 0.25);
  flex-shrink: 0;
  margin-top: 4px;
}
@media (min-width: 768px) { .faq__num { margin-top: 0; } }

.faq__q-text {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: oklch(0.88 0.008 250 / 0.65);
  transition: color 0.3s;
}
.faq__item.is-open .faq__q-text { color: var(--silver); }
.faq__question:hover .faq__q-text { color: oklch(0.88 0.008 250 / 0.9); }

.faq__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid oklch(0.88 0.008 250 / 0.15);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.4s, background 0.4s, transform 0.4s;
  color: oklch(0.88 0.008 250 / 0.6);
}
.faq__item.is-open .faq__icon {
  border-color: oklch(0.88 0.008 250 / 0.4);
  background: oklch(0.88 0.008 250 / 0.1);
  transform: rotate(45deg);
}
.faq__question:hover .faq__icon { border-color: oklch(0.88 0.008 250 / 0.3); }

.faq__answer {
  overflow: hidden;
  height: 0;
  transition: height 0.42s var(--ease-out);
}

.faq__answer-inner {
  padding: 0 0 2rem 2.125rem;
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.9;
  color: oklch(0.88 0.008 250 / 0.5);
  font-size: clamp(14px, 1.1vw, 16px);
}
@media (min-width: 768px) { .faq__answer-inner { padding: 0 0 2rem 3.5rem; } }

.faq__mobile-cta {
  margin-top: 3rem;
  display: flex;
}
@media (min-width: 768px) { .faq__mobile-cta { display: none; } }

.faq__mobile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: oklch(0.88 0.008 250 / 0.5);
  transition: color 0.3s;
}
.faq__mobile-link::after { content: ''; display: block; height: 1px; width: 24px; background: currentColor; transition: width 0.4s; }
.faq__mobile-link:hover { color: var(--silver); }
.faq__mobile-link:hover::after { width: 40px; }

/* ─────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer__inner {
  padding-block: 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) { .footer__inner { grid-template-columns: 7fr 5fr; gap: 2rem; } }

.footer__headline-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--muted);
}

.footer__headline {
  font-family: var(--font-display);
  font-size: clamp(12vw, 14vw, 7vw);
  line-height: 0.9;
  color: var(--silver);
  margin-top: 1.5rem;
}
@media (min-width: 768px) { .footer__headline { font-size: clamp(36px, 7vw, 84px); } }

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

.footer__email {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  border-bottom: 1px solid oklch(0.88 0.008 250 / 0.4);
  padding-bottom: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  color: var(--silver);
  transition: border-color 0.2s;
}
.footer__email:hover { border-color: var(--silver); }

.footer__info-col { padding-top: 0; }
@media (min-width: 768px) { .footer__info-col { padding-left: 3rem; } }

.footer__block { margin-bottom: 2.5rem; }
.footer__block:last-child { margin-bottom: 0; }

.footer__block-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.footer__block-list { display: flex; flex-direction: column; gap: 6px; }

.footer__block-item {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  color: var(--silver);
}

.footer__block-link {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  color: var(--silver);
  transition: color 0.2s;
}
.footer__block-link:hover { color: #fff; }

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 6rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--muted);
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; align-items: center; }
}

.footer__rec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__rec-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.2s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────────────────
   FLOATING ACTIONS
   ───────────────────────────────────────────────────────────────── */

/* Mobile: full-width bottom bar */
.floating-mobile {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 0.5s, transform 0.5s;
}
@media (min-width: 768px) { .floating-mobile { display: none; } }

.floating-mobile.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.floating-mobile__up {
  width: 25%;
  display: flex; align-items: center; justify-content: center;
  height: 56px;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
  color: oklch(0.88 0.008 250 / 0.7);
  border: none;
  transition: background 0.2s;
}
.floating-mobile__up:active { background: rgba(255,255,255,0.05); }

.floating-mobile__divider { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }

.floating-mobile__wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 56px;
  background: var(--wa-green);
  transition: opacity 0.2s;
}
.floating-mobile__wa:active { opacity: 0.8; }
.floating-mobile__wa-text {
  font-family: var(--font-newsreader);
  font-size: 15pt;
  font-style: italic;
  color: #fff;
}

/* Desktop: stacked buttons */
.floating-desktop {
  position: fixed;
  bottom: 2rem;
  right: 1.25rem;
  z-index: 100;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.5s, transform 0.5s;
}
@media (min-width: 768px) { .floating-desktop { display: flex; } }
.floating-desktop.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.floating-desktop__wa {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  transition: transform 0.2s;
}
.floating-desktop__wa:hover { transform: scale(1.1); }
.floating-desktop__wa:active { transform: scale(0.95); }

.floating-desktop__up {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid oklch(0.88 0.008 250 / 0.2);
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  color: oklch(0.88 0.008 250 / 0.7);
  transition: border-color 0.2s, transform 0.2s, color 0.2s;
}
.floating-desktop__up:hover {
  border-color: rgba(255,51,153,0.6);
  color: var(--pink);
  transform: scale(1.1);
}
.floating-desktop__up:active { transform: scale(0.95); }

/* ─────────────────────────────────────────────────────────────────
   GLOBAL ANIMATIONS
   ───────────────────────────────────────────────────────────────── */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 80%, 100% { opacity: 1; }
  20%, 22%                      { opacity: 0.7; }
  81%                           { opacity: 0.85; }
}

@keyframes slideInFromRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─────────────────────────────────────────────────────────────────
   ACCESSIBILITY
   ───────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
