/* =========================================================
   NIDA YILDIRIM REKLAM AJANSI — Gold & Anthracite Theme
   ========================================================= */

:root {
  --bg: #0b0b0d;
  --bg-2: #111114;
  --bg-3: #16161b;
  --anthracite: #1c1c22;
  --anthracite-2: #24242c;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #efeae0;
  --muted: #b9b3a6;
  --muted-2: #8a8579;

  --gold: #d4af6a;
  --gold-2: #b8923f;
  --gold-3: #f1d693;
  --gold-soft: rgba(212, 175, 106, 0.18);
  --gold-glow: rgba(212, 175, 106, 0.35);

  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

/* =========================================================
   Animated Background
   ========================================================= */
.bg-grid {
  position: fixed; inset: 0; z-index: -3; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
}
.bg-glow {
  position: fixed; z-index: -2; pointer-events: none;
  width: 700px; height: 700px; border-radius: 50%;
  filter: blur(120px); opacity: 0.35;
  animation: drift 18s ease-in-out infinite alternate;
}
.bg-glow--gold {
  background: radial-gradient(circle, var(--gold) 0%, transparent 65%);
  top: -200px; left: -150px;
}
.bg-glow--gold-2 {
  background: radial-gradient(circle, var(--gold-2) 0%, transparent 65%);
  bottom: -250px; right: -200px;
  animation-delay: -9s;
  opacity: 0.22;
}
.bg-noise {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, -60px) scale(1.15); }
}

/* =========================================================
   Navbar
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: all .35s var(--ease);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(11, 11, 13, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo img {
  height: 38px; width: auto;
  transition: filter .3s var(--ease), transform .3s var(--ease);
  filter: drop-shadow(0 0 0 transparent);
}
.nav__logo:hover img { transform: scale(1.04); filter: drop-shadow(0 0 14px var(--gold-glow)); }
.nav__links {
  display: flex; align-items: center; gap: 36px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.2px;
}
.nav__links a {
  position: relative; color: var(--muted);
  padding: 6px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  padding: 10px 22px !important;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold) !important;
  background: linear-gradient(180deg, transparent, var(--gold-soft));
  transition: all .3s var(--ease);
}
.nav__cta::after { display: none; }
.nav__cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
  box-shadow: 0 8px 24px var(--gold-glow);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav__toggle span {
  display: block; width: 100%; height: 2px; background: var(--text);
  transition: all .3s var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  font-family: inherit; font-size: 15px; font-weight: 600; letter-spacing: 0.3px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .35s var(--ease);
  overflow: hidden;
  border: 1px solid transparent;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); flex-shrink: 0; }
.btn:hover svg:not(.wa-icon) { transform: translateX(4px); }
.btn .wa-icon { width: 22px; height: 22px; }
.btn:hover .wa-icon { transform: scale(1.08); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold) 45%, var(--gold-2) 100%);
  color: #1a1408;
  box-shadow:
    0 10px 30px rgba(212, 175, 106, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn--gold::before {
  content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transition: left .7s var(--ease);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 45px rgba(212, 175, 106, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn--gold:hover::before { left: 100%; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}

.btn--xl { padding: 22px 44px; font-size: 17px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 80px;
  display: flex; align-items: center;
}
.hero__inner { text-align: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px; color: var(--muted);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 0 28px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title em {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.gold {
  color: var(--gold);
}
.gold-shine {
  background: linear-gradient(120deg, var(--gold-3) 0%, var(--gold) 40%, var(--gold-2) 70%, var(--gold-3) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 4s linear infinite;
  font-style: italic;
}
@keyframes shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 44px;
}
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__cta {
  display: flex; gap: 16px; justify-content: center; align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Stats */
.stats {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 5vw, 60px);
  flex-wrap: wrap;
  max-width: 900px; margin: 0 auto;
  padding: 36px 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}
.stat { text-align: center; min-width: 140px; }
.stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.stat__num .gold { font-weight: 500; }
.stat__label {
  font-size: 12px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.stat__divider {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--line-2), transparent);
}

.hero__scroll {
  margin-top: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 3px; color: var(--muted-2);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 30%;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -30%; }
  100% { top: 100%; }
}

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex; gap: 60px;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-size: 13px; letter-spacing: 4px; font-weight: 600;
  color: var(--muted-2);
  text-transform: uppercase;
}
.marquee__track .dot-sep { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Section commons
   ========================================================= */
section { padding: 120px 0; position: relative; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 24px;
}
.section-eyebrow span {
  display: block; width: 36px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 24px;
}
.section-title em { font-style: italic; }
.section-lead {
  font-size: 17px; color: var(--muted);
  max-width: 680px; margin: 0;
}
.section-head { margin-bottom: 80px; }

.subtitle {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  margin: 100px 0 50px;
  font-style: italic;
  color: var(--text);
}
.line-deco {
  flex: 0 1 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about__media {
  position: relative;
  padding: 60px 40px;
  background: linear-gradient(160deg, var(--anthracite) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
}
.about__media::before {
  content: ""; position: absolute; top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 50%);
  animation: drift 15s ease-in-out infinite alternate;
}
.signature {
  position: relative;
  padding: 30px 20px;
  background: linear-gradient(160deg, rgba(212,175,106,0.06), rgba(212,175,106,0.02));
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  margin-bottom: 32px;
  overflow: hidden;
}
.signature::before {
  content: ""; position: absolute; inset: -2px;
  background: conic-gradient(from 0deg, transparent, var(--gold), transparent 30%);
  animation: rotateBorder 6s linear infinite;
  z-index: 0;
}
.signature::after {
  content: ""; position: absolute; inset: 1px;
  background: linear-gradient(160deg, var(--anthracite) 0%, var(--bg-2) 100%);
  border-radius: calc(var(--radius) - 1px);
  z-index: 0;
}
.signature img { position: relative; z-index: 1; max-height: 110px; margin: 0 auto; filter: drop-shadow(0 0 20px var(--gold-glow)); }
@keyframes rotateBorder { to { transform: rotate(360deg); } }
.about__pill {
  position: relative;
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 28px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--gold);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.about__pill-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600;
  color: var(--gold);
}
.about__pill-text {
  font-size: 13px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 2px;
  text-align: left;
}
.about__deco {
  position: absolute; top: 20px; right: 20px;
  width: 80px; height: 80px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.2;
}
.about__deco::after {
  content: ""; position: absolute; inset: 10px;
  border: 1px dashed var(--gold);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.about__content p {
  color: var(--muted); font-size: 16px;
  margin: 0 0 20px;
}
.about__content strong { color: var(--text); font-weight: 600; }
.about__list {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about__list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

/* =========================================================
   TESTIMONIALS — Text Cards
   ========================================================= */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.t-card {
  position: relative;
  padding: 36px 32px 32px;
  background: linear-gradient(180deg, var(--anthracite) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .4s var(--ease);
  overflow: hidden;
}
.t-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
}
.t-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-soft);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--gold-soft);
}
.t-card:hover::before { transform: translateX(0); }
.t-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px; line-height: 0.7;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: -10px;
}
.t-card p {
  font-size: 15.5px; line-height: 1.7;
  color: var(--text);
  margin: 0 0 28px;
}
.t-card p strong { color: var(--gold); font-weight: 600; }
.t-card__author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 20px;
}
.t-name {
  font-weight: 600; font-size: 15px;
}
.t-role {
  font-size: 12px; color: var(--muted-2);
  text-transform: uppercase; letter-spacing: 1.5px;
}

/* =========================================================
   VIDEO GRID
   ========================================================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.video-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px var(--gold-soft);
}
.video-card video {
  display: block; width: 100%;
  aspect-ratio: 9 / 12;
  object-fit: cover;
  background: var(--bg-3);
}
.video-card figcaption {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  border-top: 1px solid var(--line);
}

/* =========================================================
   GALLERY (WhatsApp screenshots)
   ========================================================= */
.gallery {
  columns: 4;
  column-gap: 20px;
}
.gallery__item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
  cursor: zoom-in;
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(212,175,106,0.15));
  opacity: 0; transition: opacity .35s var(--ease);
}
.gallery__item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item img {
  display: block; width: 100%; height: auto;
  transition: transform .6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3) 50%, transparent);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(180deg, var(--anthracite) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .4s var(--ease);
  overflow: hidden;
}
.service::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), var(--gold-soft), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.service:hover { transform: translateY(-6px); border-color: var(--gold-soft); }
.service:hover::before { opacity: 1; }

.service__icon {
  width: 60px; height: 60px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212,175,106,0.18), rgba(212,175,106,0.06));
  border: 1px solid var(--gold-soft);
  border-radius: 16px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: all .35s var(--ease);
}
.service__icon svg { width: 28px; height: 28px; }
.service:hover .service__icon {
  background: var(--gold);
  color: var(--bg);
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 12px 30px var(--gold-glow);
}
.service h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}
.service p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.service__num {
  position: absolute; top: 28px; right: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-2);
  letter-spacing: 2px;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.step {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(180deg, var(--anthracite) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .4s var(--ease);
}
.step:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 24px;
}
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 26px;
  margin: 0 0 12px;
}
.step p {
  color: var(--muted);
  font-size: 15.5px;
  margin: 0;
}
.step__line {
  position: absolute;
  top: 60px; right: -40px;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.step__line::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* =========================================================
   CTA
   ========================================================= */
.cta { padding: 140px 0; }
.cta__inner {
  position: relative;
  max-width: 900px;
  text-align: center;
  padding: 80px 60px;
  background: linear-gradient(160deg, var(--anthracite) 0%, var(--bg) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, var(--gold-soft) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(212,175,106,0.12) 0%, transparent 50%);
  animation: drift 12s ease-in-out infinite alternate;
}
.cta__inner > * { position: relative; }
.cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 20px;
}
.cta__title em { font-style: italic; }
.cta__sub {
  font-size: 17px; color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
}
.cta__meta {
  margin-top: 36px;
  display: flex; gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted-2);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.4);
  padding: 80px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.4fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer__brand img {
  height: 44px; width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(212,175,106,0.2));
}
.footer__brand p {
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  margin: 0 0 22px;
}
.footer__social {
  display: flex; gap: 12px;
}
.social-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.02);
  color: var(--muted);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.social-btn svg { width: 20px; height: 20px; transition: transform .3s var(--ease); }
.social-btn::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--gold);
  transform: scale(0); opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  z-index: 0;
}
.social-btn:hover {
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px var(--gold-glow);
}
.social-btn:hover::before { transform: scale(1); opacity: 1; }
.social-btn:hover svg { transform: scale(1.1); z-index: 1; position: relative; }

.social-btn--ig:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
}
.social-btn--ig:hover::before { display: none; }
.social-btn--wa:hover {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-color: transparent;
  color: #fff;
}
.social-btn--wa:hover::before { display: none; }

.footer__col h4 {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 20px;
  font-weight: 600;
}
.footer__col > a:not(.contact-line) {
  display: block;
  color: var(--muted);
  font-size: 15px;
  padding: 6px 0;
  transition: all .25s var(--ease);
}
.footer__col > a:not(.contact-line):hover {
  color: var(--gold);
  transform: translateX(4px);
}

.contact-line {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--muted);
  font-size: 14.5px;
  padding: 8px 0;
  transition: all .25s var(--ease);
  line-height: 1.5;
}
.contact-line .contact-ico {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform .3s var(--ease);
}
.contact-line:hover {
  color: var(--gold);
}
.contact-line:hover .contact-ico {
  transform: scale(1.15) rotate(-5deg);
}
.contact-line--address span {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16.5px;
}
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted-2);
}

/* =========================================================
   Floating WhatsApp
   ========================================================= */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.whatsapp-fab .wa-icon {
  width: 32px; height: 32px;
  position: relative; z-index: 2;
  transition: transform .35s var(--ease);
}
.whatsapp-fab::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: ringPulse 2.4s ease-out infinite;
  z-index: 0;
  pointer-events: none;
}
.whatsapp-fab::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: ringPulse 2.4s ease-out infinite 1.2s;
  z-index: 0;
  pointer-events: none;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.55);
}
.whatsapp-fab:hover .wa-icon { transform: rotate(-8deg) scale(1.05); }
@keyframes ringPulse {
  0%   { opacity: .8; transform: scale(1); }
  100% { opacity: 0;  transform: scale(1.7); }
}

/* =========================================================
   Lightbox
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,5,7,0.92);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  border: 1px solid var(--gold-soft);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform .4s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 24px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-2);
  color: var(--text);
  font-size: 28px; line-height: 1;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.lightbox__close:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .4s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .services__grid,
  .t-grid,
  .video-grid,
  .process__grid { grid-template-columns: 1fr 1fr; }
  .step__line { display: none; }
  .gallery { columns: 3; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .container { width: min(100%, 100% - 32px); }
  section { padding: 80px 0; }
  .hero { padding-top: 130px; min-height: auto; }

  .nav { padding: 12px 0; }
  .nav__logo img { height: 32px; }
  .nav__links {
    position: fixed; inset: 0; top: 60px;
    background: rgba(11,11,13,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    border-top: 1px solid var(--line);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a {
    font-size: 22px;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    font-family: 'Cormorant Garamond', serif;
  }
  .nav__cta {
    margin-top: 20px;
    align-self: flex-start;
    padding: 14px 28px !important;
  }
  .nav__toggle { display: flex; }

  /* Hero polish */
  .hero__badge { font-size: 11px; padding: 7px 14px; }
  .hero__title { letter-spacing: -0.5px; margin-bottom: 24px; }
  .hero__sub { font-size: 15px; margin-bottom: 36px; }
  .hero__cta { flex-direction: column; width: 100%; gap: 12px; margin-bottom: 60px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__scroll { margin-top: 40px; }

  /* Hide heavy decoration on mobile */
  .hero__ring { width: 280px; height: 280px; opacity: .35; }
  .hero__ring::before { inset: -20px; }
  .hero__ring::after  { inset: -40px; }
  .float-shape--ring { width: 80px; height: 80px; opacity: .25; }
  .float-shape--diamond { width: 40px; height: 40px; opacity: .25; }
  .shape-cl, .shape-cr { display: none; }
  .bg-glow { width: 400px; height: 400px; filter: blur(80px); }

  .stats { padding: 24px 16px; gap: 16px; flex-direction: column; }
  .stat { min-width: 0; width: 100%; padding: 8px 0; }
  .stat__divider { display: none; }
  .stat__num { font-size: 38px; }

  .marquee { padding: 18px 0; }
  .marquee__track { gap: 36px; font-size: 11px; letter-spacing: 2px; }

  .section-head { margin-bottom: 48px; }
  .section-title { font-size: 32px; letter-spacing: -0.5px; }
  .section-lead { font-size: 15px; }
  .subtitle { margin: 60px 0 32px; font-size: 22px; }
  .line-deco { flex-basis: 30px; }

  /* About */
  .about__media { padding: 40px 24px; }
  .about__pill { padding: 12px 20px; }
  .about__pill-num { font-size: 26px; }
  .about__pill-text { font-size: 11px; letter-spacing: 1.5px; }
  .about__deco { width: 60px; height: 60px; top: 14px; right: 14px; }
  .about__content p { font-size: 15px; }

  /* Grids */
  .services__grid,
  .t-grid,
  .video-grid,
  .process__grid { grid-template-columns: 1fr; gap: 18px; }
  .service, .step, .t-card { padding: 32px 24px; }
  .service h3, .step h3 { font-size: 22px; }
  .step__num { font-size: 52px; }

  /* Disable 3D tilt on touch — flat on tap */
  .tilt:hover { transform: none !important; }

  .gallery { columns: 2; column-gap: 12px; }
  .gallery__item { margin-bottom: 12px; }

  .about__list { grid-template-columns: 1fr; }

  /* CTA */
  .cta { padding: 80px 0; }
  .cta__inner { padding: 50px 24px; }
  .cta__title { font-size: 32px; }
  .cta__sub { font-size: 15px; margin-bottom: 32px; }
  .cta__meta { gap: 12px; flex-direction: column; font-size: 12px; }

  /* Footer */
  .footer { padding: 60px 0 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer__brand img { height: 38px; }
  .footer__brand p { font-size: 16px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; font-size: 12px; padding: 22px 0; }

  /* FAB */
  .whatsapp-fab { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp-fab .wa-icon { width: 28px; height: 28px; }

  .btn { padding: 14px 26px; font-size: 14px; }
  .btn--xl { padding: 18px 28px; font-size: 15px; width: 100%; justify-content: center; }

  /* Disable expensive transforms on mobile */
  .particles { display: none; }
}

@media (max-width: 480px) {
  .container { width: min(100%, 100% - 28px); }
  .hero__title { font-size: 36px; }
  .section-title { font-size: 28px; }
  .cta__title { font-size: 28px; }
  .stat__num { font-size: 34px; }
  .stat__label { font-size: 10px; letter-spacing: 1.5px; }
  .gallery { columns: 1; }
  .gallery__item { margin-bottom: 14px; }
  .t-card__quote { font-size: 72px; }
  .float-shape { display: none; }
  .hero__ring { display: none; }
}

@media (max-width: 360px) {
  .hero__title { font-size: 32px; }
  .hero__badge { font-size: 10px; }
  .container { width: min(100%, 100% - 24px); }
  .service, .step, .t-card { padding: 28px 20px; }
  .about__media { padding: 32px 18px; }
  .cta__inner { padding: 40px 18px; }
}

/* =========================================================
   Preloader
   ========================================================= */
.preloader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader__logo {
  width: 220px;
  filter: drop-shadow(0 0 30px var(--gold-glow));
  animation: logoFloat 2.4s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-8px); opacity: .85; }
}
.preloader__bar {
  width: 200px; height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.preloader__bar::after {
  content: ""; display: block; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: barLoad 1.4s ease-in-out infinite;
  width: 50%;
}
@keyframes barLoad {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

/* =========================================================
   Scroll progress bar
   ========================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 2px;
  background: transparent;
  z-index: 101;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-3), var(--gold-2));
  box-shadow: 0 0 12px var(--gold-glow);
  transition: width .15s linear;
}

/* =========================================================
   Custom cursor (desktop only)
   ========================================================= */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, .gallery__item, video, input, textarea { cursor: none; }
  .cursor {
    position: fixed; top: 0; left: 0; z-index: 1000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }
  .cursor__dot {
    width: 6px; height: 6px;
    background: var(--gold-3);
    border-radius: 50%;
    transition: transform .15s var(--ease), opacity .2s var(--ease);
  }
  .cursor__ring {
    position: fixed; top: 0; left: 0; z-index: 999;
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .25s var(--ease), height .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
  }
  .cursor--hover .cursor__ring { width: 60px; height: 60px; background: var(--gold-soft); border-color: var(--gold-3); }
  .cursor--hover .cursor__dot { transform: scale(0); }
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor__ring { display: none !important; }
}

/* =========================================================
   Floating decorative shapes
   ========================================================= */
.float-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}
.float-shape--ring {
  width: 140px; height: 140px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  animation: float1 14s ease-in-out infinite;
}
.float-shape--ring::after {
  content: ""; position: absolute; inset: 12px;
  border: 1px dashed var(--gold);
  border-radius: 50%;
  opacity: .5;
  animation: spin 30s linear infinite;
}
.float-shape--diamond {
  width: 60px; height: 60px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  animation: float2 11s ease-in-out infinite;
}
.float-shape--plus {
  width: 30px; height: 30px;
  animation: float3 9s ease-in-out infinite;
}
.float-shape--plus::before, .float-shape--plus::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.float-shape--plus::before { width: 100%; height: 1px; }
.float-shape--plus::after  { width: 1px;  height: 100%; }

.float-shape--dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold-glow);
  animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50%      { transform: translate(20px, -30px) rotate(180deg); }
}
@keyframes float2 {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%      { transform: rotate(225deg) translate(-15px, 20px); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-12px, -16px); }
}

/* Position helpers */
.shape-tl { top: 18%; left: 6%; }
.shape-tr { top: 22%; right: 8%; }
.shape-bl { bottom: 18%; left: 10%; }
.shape-br { bottom: 22%; right: 6%; }
.shape-cl { top: 50%; left: 4%; }
.shape-cr { top: 45%; right: 5%; }

/* =========================================================
   Word/letter reveal
   ========================================================= */
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.22em;
}
.split-word__inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(.18,.85,.25,1);
}
.split-word.in .split-word__inner { transform: translateY(0); }

/* =========================================================
   Hero accent — handwritten underline
   ========================================================= */
.hero__underline {
  display: block;
  margin: 8px auto 0;
  width: 220px;
  max-width: 60%;
}
.hero__underline path {
  fill: none; stroke: var(--gold); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2.2s 1.2s var(--ease) forwards;
  filter: drop-shadow(0 0 6px var(--gold-glow));
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }

/* =========================================================
   3D tilt cards
   ========================================================= */
.tilt {
  transform-style: preserve-3d;
  transition: transform .25s var(--ease);
  will-change: transform;
}
.tilt > * { transform: translateZ(20px); }

/* =========================================================
   Magnetic button
   ========================================================= */
.magnetic { transition: transform .25s var(--ease); }

/* =========================================================
   Section index (left rail)
   ========================================================= */
.section-rail {
  position: fixed; left: 22px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 18px;
  z-index: 80;
}
.section-rail a {
  width: 8px; height: 8px;
  background: var(--line-2);
  border-radius: 50%;
  position: relative;
  transition: all .25s var(--ease);
}
.section-rail a::before {
  content: attr(data-label);
  position: absolute; left: 18px; top: 50%;
  transform: translateY(-50%) translateX(-10px);
  white-space: nowrap;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
  opacity: 0; transition: all .3s var(--ease);
  pointer-events: none;
}
.section-rail a:hover { background: var(--gold); transform: scale(1.4); }
.section-rail a:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }
.section-rail a.active { background: var(--gold); width: 24px; border-radius: 4px; box-shadow: 0 0 12px var(--gold-glow); }
@media (max-width: 1100px) { .section-rail { display: none; } }

/* =========================================================
   Glitch / shine on hover text
   ========================================================= */
.hover-shine {
  position: relative;
  background: linear-gradient(90deg, var(--text) 0%, var(--text) 50%, var(--gold-3) 50%, var(--gold-3) 100%);
  background-size: 200% auto;
  background-position: 0% center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: background-position .6s var(--ease);
}
.hover-shine:hover { background-position: -100% center; }

/* =========================================================
   Animated section dividers (SVG curves not used; keep simple)
   ========================================================= */
.section-divider {
  display: flex; justify-content: center;
  padding: 40px 0;
  opacity: .6;
}
.section-divider svg {
  width: 60px; height: auto;
  color: var(--gold);
  animation: pulseScale 3s ease-in-out infinite;
}
@keyframes pulseScale {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.15); opacity: 1; }
}

/* =========================================================
   Hero accent ring
   ========================================================= */
.hero__ring {
  position: absolute;
  width: 480px; height: 480px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulseRing 5s ease-in-out infinite;
}
.hero__ring::before, .hero__ring::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px dashed var(--gold-soft);
}
.hero__ring::before { inset: -40px; animation: spin 25s linear infinite; }
.hero__ring::after  { inset: -80px; border-style: dotted; animation: spin 40s linear infinite reverse; opacity: .5; }
@keyframes pulseRing {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .6; }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

/* =========================================================
   Service tilt enhancement
   ========================================================= */
.service { transform-style: preserve-3d; perspective: 1000px; }

/* =========================================================
   Stats glow line under each
   ========================================================= */
.stat__num { position: relative; display: inline-block; }
.stat__num::after {
  content: ""; position: absolute; left: 50%; bottom: -8px;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .6s var(--ease) .4s;
}
.stats.in .stat__num::after { width: 60%; }

/* =========================================================
   Floating call-to-action ripple
   ========================================================= */
.btn--gold::after {
  content: ""; position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  pointer-events: none;
  opacity: 0;
}
.btn--gold.rippling::after {
  animation: ripple .7s ease-out forwards;
}
@keyframes ripple {
  0%   { opacity: 1; transform: scale(0); }
  100% { opacity: 0; transform: scale(40); }
}

/* =========================================================
   Particle dust
   ========================================================= */
.particles {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
}
.particles span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  box-shadow: 0 0 8px var(--gold);
  animation: floatUp 14s linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(110vh) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

/* =========================================================
   About reveal extras
   ========================================================= */
.about__media { transform-style: preserve-3d; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
}
