/* ═══════════════════════════════════════════════════════════════════
   DOLIA THEME — Main CSS
   Gold palette replaces red everywhere
   ═══════════════════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --gold: #df8f3d;
  --gold-dim: rgba(223, 143, 61, 0.13);
  --gold-glow: rgba(223, 143, 61, 0.35);
  --gold-dark: #b27231;
}

[data-theme="dark"] {
  --bg: #0b0b0b;
  --bg2: #131313;
  --bg3: #1a1a1a;
  --text: #ffffff;
  --text2: rgba(255,255,255,0.55);
  --text3: rgba(255,255,255,0.22);
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.13);
  --nav-bg: rgba(11,11,11,0.94);
}

[data-theme="light"] {
  --bg: #f4f5ef;
  --bg2: #ffffff;
  --bg3: #eceee8;
  --text: #0a0a0a;
  --text2: rgba(10,10,10,0.55);
  --text3: rgba(10,10,10,0.28);
  --border: rgba(0,0,0,0.07);
  --border2: rgba(0,0,0,0.13);
  --nav-bg: rgba(247,246,244,0.94);
  --gold: #df8f3d;
  --gold-dim: rgba(223, 143, 61, 0.10);
  --gold-glow: rgba(223, 143, 61, 0.28);
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
/* Hide default cursor — custom cursor used instead */
html, body, * { cursor: none !important; }
@media (max-width: 768px) { html, body, * { cursor: auto !important; } }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── CUSTOM CURSOR (desktop only) ── */
.cur, .cur-r {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%; will-change: transform;
}
.cur { width: 10px; height: 10px; background: #8B4513; }
.cur-r { width: 36px; height: 36px; border: 1.5px solid rgba(139,69,19,0.4); }
@media (max-width: 768px) { .cur, .cur-r { display: none; } }

/* ── NAV ── */
nav#nb {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 0 48px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--nav-bg); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.nav-logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo { font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 900; color: var(--text); letter-spacing: 1px; transition: opacity 0.3s; }
.nav-logo span { color: var(--gold); }
.nav-logo-link:hover .nav-logo { opacity: 0.75; }
.nav-logo-img { height: 36px; width: auto; object-fit: contain; transition: opacity 0.3s; display: block; }
.nav-logo-link:hover .nav-logo-img { opacity: 0.75; }

.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text2); text-decoration: none;
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important; color: #fff !important;
  padding: 8px 20px; border-radius: 5px; font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: 0 0 24px var(--gold-glow) !important; opacity: 0.9; }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  width: 36px; height: 36px; justify-content: center;
}
.burger span {
  display: block; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* Mobile nav panel */
@media (max-width: 768px) {
  .burger { display: flex; }

  .nav-links {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0;
    height: calc(100dvh - 64px);
    flex-direction: column; align-items: stretch; gap: 0;
    background: #131313 !important;
    border-top: 2px solid var(--gold);
    padding: 8px 0 0;
    overflow-y: auto;
    z-index: 99;
  }
  [data-theme="light"] .nav-links { background: #ffffff !important; }
  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; margin-top: 12px; padding: 0 20px; }

  .nav-links a {
    display: block; padding: 18px 24px;
    font-size: 15px; letter-spacing: 0.3px;
  }
  .nav-links a::after { display: none; }

  .dj-switch { padding: 16px 24px; }

  .nav-cta {
    display: block; text-align: center;
    padding: 16px 24px !important; border-radius: 8px;
    font-size: 15px !important;
  }
}

/* DJ Theme switcher */
.dj-switch {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; user-select: none;
}
.dj-deck {
  width: 52px; height: 26px; background: var(--bg3);
  border: 1px solid var(--border2); border-radius: 13px;
  position: relative; transition: background 0.3s;
  display: flex; align-items: center; padding: 2px;
}
[data-theme="light"] .dj-deck { background: var(--gold-dim); }
.dj-knob {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--text3); position: absolute; left: 2px;
  transition: left 0.3s, background 0.3s, transform 0.3s;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
[data-theme="light"] .dj-knob { left: 28px; background: var(--gold); transform: rotate(180deg); }
.dj-icon-l, .dj-icon-r { font-size: 14px; flex-shrink: 0; }
.dj-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text2); min-width: 30px; }

/* ── MIC FAB ── */
.mic-fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 200;
  width: 64px; height: 64px; cursor: pointer;
  background: none; border: none; padding: 0;
}
.mic-wrap {
  width: 64px; height: 64px; position: relative;
  background: #111; border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.55), 0 0 0 0 var(--gold-glow);
}
[data-theme="light"] .mic-wrap {
  background: #1a1a1a;
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 0 16px rgba(196,154,58,0.18);
}
.mic-ring, .mic-ring2 {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid var(--gold); opacity: 0;
  animation: mpulse 2.5s ease-in-out infinite;
  will-change: transform, opacity;
}
.mic-ring2 { inset: -16px; border-width: 1px; animation-delay: 0.5s; }
@keyframes mpulse { 0% { opacity: 0.6; transform: scale(1); } 100% { opacity: 0; transform: scale(1.4); } }
.mic-svg { width: 100%; height: 100%; padding: 10px; box-sizing: border-box; }
.mic-body { fill: var(--gold); }
.mic-tooltip {
  position: absolute; right: 74px; top: 50%; transform: translateY(-50%);
  background: var(--bg2); border: 1px solid var(--border2); border-radius: 8px;
  padding: 6px 12px; font-size: 12px; font-weight: 600; white-space: nowrap;
  color: var(--text); opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.mic-fab:hover .mic-tooltip { opacity: 1; }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
#hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 0; pointer-events: none; }
#hero > * { position: relative; z-index: 1; }
#hc { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.45; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: gdrift 25s linear infinite;
}
@keyframes gdrift { from { transform: translate(0,0); } to { transform: translate(70px,70px); } }

.hero-content {
  position: relative; z-index: 10;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 40px;
  width: 100%; max-width: 1380px; margin: 0 auto;
  padding: 100px 60px 60px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim); border: 1px solid rgba(196,154,58,0.3);
  border-radius: 100px; padding: 5px 14px; margin-bottom: 26px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); animation: fup 0.6s ease both;
}
.dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 900; line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 20px; color: #fff;
  animation: fup 0.6s 0.1s ease both;
}
.hero-title .acc { color: var(--gold); }
.hero-title .out { -webkit-text-stroke: 2px var(--gold); color: transparent; }

.hero-desc {
  font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.78);
  max-width: 460px; margin-bottom: 34px;
  animation: fup 0.6s 0.2s ease both;
}
.hero-actions { display: flex; gap: 12px; align-items: center; animation: fup 0.6s 0.3s ease both; }

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: #fff; font-weight: 700;
  font-size: 13.5px; padding: 14px 32px; border-radius: 6px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s; letter-spacing: 0.3px; display: inline-block;
  font-family: 'Inter', sans-serif;
}
.btn-gold:hover { box-shadow: 0 14px 44px var(--gold-glow); transform: translateY(-2px); opacity: 0.92; }

.btn-out {
  background: transparent; color: var(--text2); font-weight: 600;
  font-size: 13.5px; padding: 14px 24px; border-radius: 6px;
  text-decoration: none; border: 1px solid var(--border2);
  transition: all 0.3s; display: flex; align-items: center; gap: 9px;
}
.btn-out:hover { border-color: var(--gold); color: var(--text); background: var(--gold-dim); }
#hero .btn-out { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.35); }
#hero .btn-out:hover { color: #fff; border-color: var(--gold); background: rgba(255,255,255,0.08); }

.play-ic {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.play-ic::after { content: ''; border: 4px solid transparent; border-left: 7px solid #fff; margin-left: 2px; }

/* ── ORBITAL PHOTO ── */
.hero-right {
  position: relative; display: flex; justify-content: center; align-items: center;
  animation: fright 0.8s 0.2s ease both;
}
@keyframes fright { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
.orbit-wrap { position: relative; width: 640px; height: 660px; }

/* Ring 1 — inner fast gold */
.orbit-ring { position: absolute; top: 50%; left: 50%; width: 560px; height: 560px; transform: translate(-50%,-50%); animation: ospin 16s linear infinite; }
.orbit-ring svg { width: 100%; height: 100%; }
.orbit-ring text { font-family: 'Unbounded',sans-serif; font-size: 13px; font-weight: 700; fill: var(--gold); letter-spacing: 3px; }

/* Ring 2 — middle reverse */
.orbit-mid { position: absolute; top: 50%; left: 50%; width: 630px; height: 630px; transform: translate(-50%,-50%); animation: ospin 24s linear infinite reverse; opacity: 0.45; }
.orbit-mid svg { width: 100%; height: 100%; }
.orbit-mid text { font-family: 'Inter',sans-serif; font-size: 11.5px; font-weight: 600; fill: var(--gold); letter-spacing: 2.5px; opacity: 0.7; }

/* Ring 3 — outer slowest */
.orbit-outer { position: absolute; top: 50%; left: 50%; width: 700px; height: 700px; transform: translate(-50%,-50%); animation: ospin 38s linear infinite; opacity: 0.25; }
.orbit-outer svg { width: 100%; height: 100%; }
.orbit-outer text { font-family: 'Inter',sans-serif; font-size: 10.5px; font-weight: 500; fill: var(--text2); letter-spacing: 4px; }

@keyframes ospin { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(360deg); } }

.photo-card {
  position: absolute; top: 50%; left: 50%; width: 350px; height: 455px;
  transform: translate(-50%,-50%); border-radius: 24px; overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 0 80px rgba(196,154,58,0.25), 0 30px 80px rgba(0,0,0,0.5);
  transition: transform 0.15s ease-out; z-index: 5;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

/* Floating badges */
.s-badge {
  position: absolute; z-index: 10;
  background: var(--nav-bg); border: 1px solid var(--border2);
  border-radius: 14px; padding: 11px 16px;
  backdrop-filter: blur(20px);
  animation: fbadge 4s ease-in-out infinite;
  transition: background 0.4s, border-color 0.4s; white-space: nowrap;
}
.s-badge:nth-child(4) { top: 18px; right: 0; animation-delay: 0s; }
.s-badge:nth-child(5) { bottom: 120px; left: -10px; animation-delay: 1.8s; }
.s-badge:nth-child(6) { bottom: 28px; right: 10px; animation-delay: 0.9s; }
.s-badge:nth-child(7) { top: 130px; left: -15px; animation-delay: 1.3s; }
.s-badge:nth-child(8) { top: 260px; right: -5px; animation-delay: 0.4s; }
.s-badge:nth-child(9) { bottom: 220px; right: 0; animation-delay: 2.2s; }
@keyframes fbadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.bn { font-family: 'Unbounded',sans-serif; font-size: 22px; font-weight: 900; color: var(--gold); line-height: 1; }
.bl { font-size: 10.5px; color: var(--text2); margin-top: 3px; }

/* ── TICKER ── */
.ticker { background: var(--gold); padding: 12px 0; overflow: hidden; z-index: 5; position: relative; }
.ticker-t { display: flex; gap: 56px; width: max-content; animation: tspin 18s linear infinite; }
@keyframes tspin { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ti {
  font-family: 'Unbounded',sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: #fff;
  display: flex; align-items: center; gap: 18px; white-space: nowrap;
}
.ti::before { content: '✦'; font-size: 7px; }

/* ── STATS ── */
#stats { padding: 90px 60px; }
.stats-inner { max-width: 1380px; margin: 0 auto; }
.sec-ey { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.sec-t { font-family: 'Unbounded',sans-serif; font-size: clamp(24px,3vw,44px); font-weight: 900; line-height: 1.1; letter-spacing: -1px; color: var(--text); }
.stats-g { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; margin-top: 56px; }
.sc { background: var(--bg2); padding: 40px 28px; position: relative; overflow: hidden; transition: background 0.3s; cursor: default; }
.sc::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.sc:hover { background: var(--bg3); }
.sc:hover::after { transform: scaleX(1); }
.sc-ic { width: 42px; height: 42px; background: var(--gold-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 20px; }
.sc-n { font-family: 'Unbounded',sans-serif; font-size: clamp(30px,2.8vw,50px); font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 6px; }
.sc-l { font-size: 12.5px; color: var(--text2); font-weight: 500; }

/* ── VIDEO / ABOUT ── */
#video { padding: 90px 60px; background: var(--bg2); }
.video-wrap { max-width: 1380px; margin: 0 auto; }
.video-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.vb { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 16/9; background: var(--bg3); box-shadow: 0 40px 100px rgba(0,0,0,0.4); }
.vb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.yt-embed { position: absolute; inset: 0; }
.yt-embed iframe { width: 100%; height: 100%; border: none; display: block; }
.vov { position: absolute; inset: 0; background: rgba(0,0,0,0.35); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; cursor: pointer; transition: background 0.3s; }
.vov:hover { background: rgba(0,0,0,0.2); }
.play-big { width: 76px; height: 76px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; animation: ppulse 2.2s ease-in-out infinite; }
@keyframes ppulse { 0%,100% { box-shadow: 0 0 0 0 var(--gold-glow); } 50% { box-shadow: 0 0 0 18px transparent; } }
.play-big:hover { transform: scale(1.1); }
.play-big::after { content: ''; border: 9px solid transparent; border-left: 16px solid #fff; margin-left: 5px; }
.vl { font-size: 13px; color: rgba(255,255,255,0.7); }
.vq { font-family: 'Unbounded',sans-serif; font-size: clamp(17px,2vw,28px); font-weight: 800; line-height: 1.3; margin: 20px 0; color: var(--text); }
.vq em { font-style: normal; color: var(--gold); }
.vd { font-size: 15.5px; line-height: 1.7; color: var(--text2); margin-bottom: 28px; }

/* Social buttons */
.socs { display: flex; gap: 9px; margin-top: 20px; }
.sb { width: 42px; height: 42px; border-radius: 9px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--text); transition: all 0.3s; }
.sb:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); color: #fff; }
.sb svg { pointer-events: none; }

/* ── ORDER FORM ── */
#order-form { padding: 0; position: relative; overflow: hidden; z-index: 91; background-size: cover; background-position: center; background-repeat: no-repeat; }
#order-form::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 0; }
#order-form > * { position: relative; z-index: 1; }
.order-form-deco { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); height: 180%; width: auto; opacity: 0.30; pointer-events: none; user-select: none; -webkit-user-drag: none; }
.order-form-inner { max-width: 1380px; margin: 0 auto; padding: 70px 60px; display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
.order-form-title { font-family: 'Unbounded',sans-serif; font-size: clamp(26px,3vw,44px); font-weight: 900; line-height: 1.15; letter-spacing: -1px; color: #fff; }
.order-form-sub { font-size: 15px; color: rgba(255,255,255,0.75); margin-top: 14px; }
.order-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg-white label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.fg-white input, .fg-white select, .fg-white textarea {
  width: 100%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px; padding: 12px 14px; color: #fff;
  font-family: 'Inter',sans-serif; font-size: 14px; transition: border-color 0.2s; outline: none;
  -webkit-appearance: none; appearance: none;
  color-scheme: dark;
}
.fg-white input::placeholder, .fg-white textarea::placeholder { color: rgba(255,255,255,0.48); }
.fg-white input:focus, .fg-white select:focus, .fg-white textarea:focus { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.18); }
.fg-white select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='rgba(255,255,255,0.7)' d='M0 0l6 7 6-7z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.fg-white select option { background: var(--gold-dark); color: #fff; }
.fg-white input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.6); cursor: pointer; }
.fg-white textarea { resize: none; min-height: 52px; }
.order-form-full { grid-column: span 2; }
.btn-white { background: #fff; color: var(--gold); font-weight: 900; font-size: 15px; padding: 16px 40px; border-radius: 8px; border: none; cursor: pointer; transition: all 0.3s; letter-spacing: 0.3px; display: inline-block; font-family: 'Inter',sans-serif; }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.order-bg-text { position: absolute; right: -20px; top: -30px; font-family: 'Unbounded',sans-serif; font-size: 180px; font-weight: 900; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; user-select: none; }

/* ── SERVICES ── */
#services { padding: 90px 60px; max-width: 1380px; margin: 0 auto; }
.svc-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 52px; }
.svc { background: var(--bg2); padding: 40px 32px; position: relative; overflow: hidden; transition: all 0.3s; cursor: pointer; }
.svc:hover { background: var(--bg3); }
.svc::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform 0.4s; }
.svc:hover::before { transform: scaleX(1); }
.svc-bnum { position: absolute; top: 12px; right: 14px; font-family: 'Unbounded',sans-serif; font-size: 58px; font-weight: 900; color: var(--border); line-height: 1; pointer-events: none; transition: color 0.4s; }
.svc:hover .svc-bnum { color: var(--gold-dim); }
.svc-em { font-size: 32px; margin-bottom: 18px; display: block; }
.svc-n { font-family: 'Unbounded',sans-serif; font-size: 17px; font-weight: 800; margin-bottom: 10px; color: var(--text); letter-spacing: -0.3px; }
.svc-d { font-size: 13px; color: var(--text2); line-height: 1.6; }
.svc-arr { margin-top: 24px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--text2); transition: all 0.3s; }
.svc:hover .svc-arr { background: var(--gold); border-color: var(--gold); transform: rotate(45deg); color: #fff; }

/* ── CLIENTS — Infinite scroll ticker ── */
#clients { padding: 70px 0; overflow: hidden; position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed; }
#clients::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.62); z-index: 0; }
#clients > * { position: relative; z-index: 1; }
.clients-inner { max-width: 1380px; margin: 0 auto; padding: 0 60px; }

.partners-ticker { overflow: hidden; padding: 40px 0 20px; position: relative; }
.partners-ticker::before, .partners-ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.partners-ticker::before { left: 0; background: linear-gradient(to right, var(--bg2), transparent); }
.partners-ticker::after { right: 0; background: linear-gradient(to left, var(--bg2), transparent); }

.partners-track {
  display: flex; align-items: center; gap: 60px;
  width: max-content;
  animation: partnersScroll 30s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes partnersScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.partner-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex-shrink: 0; min-width: 120px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  transition: all 0.3s;
}
.partner-item:hover { border-color: var(--gold); background: var(--gold-dim); }
.partner-logo {
  height: 48px; width: auto; max-width: 140px; object-fit: contain;
  filter: grayscale(100%); opacity: 0.6; transition: all 0.3s;
}
.partner-item:hover .partner-logo { filter: grayscale(0%); opacity: 1; }
.partner-logo-text { font-family: 'Unbounded',sans-serif; font-size: 16px; font-weight: 900; line-height: 1; }
.partner-name { font-size: 11px; font-weight: 700; color: var(--text); text-align: center; letter-spacing: 0.5px; text-transform: uppercase; }
.partner-cat { font-size: 10px; font-weight: 400; color: var(--text2); text-align: center; letter-spacing: 0.3px; }

/* ── AWARDS ── */
#awards { padding: 90px 60px; background: var(--bg); }
.awards-i { max-width: 1380px; margin: 0 auto; }
.aw-list { display: flex; flex-direction: column; gap: 3px; margin-top: 36px; }
.aw-row {
  display: flex; align-items: center; gap: 24px;
  background: var(--bg2); padding: 26px 30px;
  border-left: 3px solid transparent;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, opacity 0.7s, transform 0.7s;
  cursor: default;
}
.aw-row:hover { background: var(--bg3); border-left-color: var(--gold); transform: translateX(8px); }
/* Staggered slide-in from alternating sides */
#awards .aw-row.r {
  opacity: 0;
  transform: translateX(-90px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
#awards .aw-row.r:nth-child(even) { transform: translateX(90px); }
#awards .aw-row.r.v { transform: translateX(0); opacity: 1; }
#awards .aw-row:nth-child(1) { transition-delay: 0s; }
#awards .aw-row:nth-child(2) { transition-delay: 0.15s; }
#awards .aw-row:nth-child(3) { transition-delay: 0.30s; }
#awards .aw-row:nth-child(4) { transition-delay: 0.45s; }
#awards .aw-row.v:hover { transform: translateX(8px); }
.aw-ic { font-size: 28px; flex-shrink: 0; }
.aw-t { font-weight: 700; font-size: 15px; margin-bottom: 4px; color: var(--text); }
.aw-s { font-size: 13px; color: var(--text2); }

/* Dancing figure */
.award-visual { display: flex; align-items: center; justify-content: center; position: relative; margin-top: 56px; }
.stage { width: 320px; height: 340px; position: relative; margin: 0 auto; display: flex; align-items: flex-end; justify-content: center; }
.spotlight { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 220px; height: 90px; background: radial-gradient(ellipse at bottom, rgba(196,154,58,0.28), transparent 70%); animation: spot 2s ease-in-out infinite alternate; }
@keyframes spot { from { width: 190px; opacity: 0.5; } to { width: 250px; opacity: 0.85; } }
.spark { position: absolute; font-size: 16px; animation: sparkfly 3s ease-in-out infinite; }
.spark:nth-child(2) { top: 8%; left: 8%; animation-delay: 0s; }
.spark:nth-child(3) { top: 12%; right: 10%; animation-delay: 0.7s; }
.spark:nth-child(4) { top: 35%; left: 2%; animation-delay: 1.4s; }
.spark:nth-child(5) { top: 3%; left: 48%; animation-delay: 0.3s; }
.spark:nth-child(6) { top: 28%; right: 2%; animation-delay: 1s; }
.spark:nth-child(7) { top: 55%; left: 5%; animation-delay: 1.7s; }
@keyframes sparkfly { 0%,100% { transform: translateY(0) scale(1); opacity: 0.5; } 50% { transform: translateY(-16px) scale(1.4); opacity: 1; } }
.dancer-svg { display: block; animation: dance-body 1.2s ease-in-out infinite alternate; margin-bottom: 30px; }
@keyframes dance-body { from { transform: rotate(-3deg) translateY(0); } to { transform: rotate(3deg) translateY(-7px); } }
@keyframes larm { from { transform: rotate(-20deg); } to { transform: rotate(20deg); } }
@keyframes rarm { from { transform: rotate(15deg); } to { transform: rotate(-15deg); } }
@keyframes lleg { from { transform: rotate(-15deg); } to { transform: rotate(20deg); } }
@keyframes rleg { from { transform: rotate(20deg); } to { transform: rotate(-15deg); } }
.note { position: absolute; font-size: 22px; color: var(--gold); animation: notefly 2.5s ease-in-out infinite; pointer-events: none; }
.note:nth-child(8) { bottom: 45%; left: 12%; animation-delay: 0.2s; }
.note:nth-child(9) { bottom: 65%; right: 12%; animation-delay: 0.8s; }
.note:nth-child(10) { bottom: 75%; left: 35%; animation-delay: 1.4s; }
@keyframes notefly { 0% { transform: translateY(0) rotate(-10deg); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(-90px) rotate(15deg); opacity: 0; } }
[data-theme="light"] .dancer-jacket { fill: #2a2a2a; }
[data-theme="light"] .dancer-arm { stroke: #2a2a2a !important; }

/* ── GALLERY ── */
#gallery { padding: 90px 60px; max-width: 1380px; margin: 0 auto; }
.gal-g { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(2,310px); gap: 4px; margin-top: 46px; }
.gi { background: var(--bg2); border-radius: 4px; overflow: hidden; position: relative; cursor: pointer; }
.gi:hover .gi-ov { opacity: 1; }
.gi:hover img, .gi:hover .gi-ph { transform: scale(1.06); }
.gi.wide { grid-column: span 2; }
.gi.tall { grid-row: span 2; }
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.gi-ph { width: 100%; height: 100%; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--text3); flex-direction: column; gap: 6px; transition: transform 0.5s; }
.gi-ph span { font-size: 28px; }
.gi-ov { position: absolute; inset: 0; background: rgba(0,0,0,0.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; font-size: 13px; color: #fff; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; gap: 8px; }

/* ── GALLERY PAGE BUTTON ── */
.gal-btn-wrap { text-align: center; margin-top: 40px; }
.gal-full-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 36px; border: 1.5px solid var(--gold); color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; border-radius: 40px; transition: background 0.25s, color 0.25s, box-shadow 0.25s; }
.gal-full-btn:hover { background: var(--gold); color: #111; box-shadow: 0 0 28px var(--gold-glow); }
.gal-full-btn svg { transition: transform 0.25s; }
.gal-full-btn:hover svg { transform: translateX(4px); }

/* ── GALLERY PAGE ── */
.gallery-page-main { }
.gp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.gp-card { background: var(--bg2); border-radius: 12px; overflow: hidden; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
.gp-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px var(--gold-dim); }
.gp-cover { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg3); }
.gp-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.gp-card:hover .gp-cover img { transform: scale(1.06); }
.gp-no-cover { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.gp-ov { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; transition: opacity 0.3s; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.gp-card:hover .gp-ov { opacity: 1; }
.gp-count { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 0.5px; }
.gp-info { padding: 18px 20px; }
.gp-title { font-family: 'Unbounded', sans-serif; font-size: 14px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }
.gp-meta { font-size: 12px; color: var(--text3); }
.gp-empty { text-align: center; padding: 80px 20px; color: var(--text3); font-size: 15px; }

@media (max-width: 900px) { .gp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gp-grid { grid-template-columns: 1fr; gap: 14px; } .gallery-page-main { padding-top: 80px; } }

/* ── LIGHTBOX ── */
.lb { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.92); backdrop-filter: blur(16px); align-items: center; justify-content: center; }
.lb.open, .lb[style*="flex"] { display: flex !important; }
.lb-img { max-width: 90vw; max-height: 88vh; border-radius: 12px; object-fit: contain; }
.lb-video { max-width: 90vw; max-height: 88vh; border-radius: 12px; outline: none; background: #000; }
.lb-close { position: absolute; top: 24px; right: 32px; font-size: 32px; color: rgba(255,255,255,0.6); cursor: pointer; transition: color 0.2s; background: none; border: none; line-height: 1; }
.lb-close:hover { color: #fff; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 36px; color: rgba(255,255,255,0.5); cursor: pointer; background: rgba(255,255,255,0.07); border: none; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.lb-nav:hover { background: var(--gold); color: #fff; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-caption { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: 13px; color: rgba(255,255,255,0.6); white-space: nowrap; }
.lb-placeholder { color: rgba(255,255,255,0.3); font-size: 18px; text-align: center; padding: 60px; }

/* ── REVIEWS CAROUSEL ── */
#reviews { padding: 90px 60px; position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed; }
#reviews::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.58); z-index: 0; }
#reviews > * { position: relative; z-index: 1; }
.rev-i { max-width: 1380px; margin: 0 auto; }
.carousel { position: relative; margin-top: 52px; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.rv { flex: 0 0 calc(33.333% - 14px); margin-right: 20px; background: var(--bg3); padding: 36px 32px; position: relative; overflow: hidden; border-radius: 0; transition: background 0.3s; display: flex; flex-direction: column; }
.rv:hover { background: var(--bg); }
.rv-q { position: absolute; top: 18px; right: 24px; font-size: 68px; color: var(--gold-dim); font-family: Georgia,serif; line-height: 1; }
.rv-stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; margin-bottom: 20px; }
.rv-text { font-size: 14px; line-height: 1.7; color: var(--text2); margin-bottom: 26px; font-style: italic; }
.rv-auth { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.rv-av { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-dim); border: 2px solid rgba(196,154,58,0.3); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.rv-n { font-weight: 700; font-size: 13.5px; color: var(--text); }
.rv-e { font-size: 11px; color: var(--text3); margin-top: 2px; }
.car-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.car-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border2); background: transparent; color: var(--text2); font-size: 18px; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.car-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.car-dots { display: flex; gap: 8px; align-items: center; }
.cd { width: 8px; height: 8px; border-radius: 50%; background: var(--border2); cursor: pointer; transition: all 0.3s; border: none; padding: 0; }
.cd.active { background: var(--gold); width: 24px; border-radius: 4px; }
.car-auto-bar { height: 2px; background: var(--border2); border-radius: 1px; margin-top: 16px; overflow: hidden; }
.car-auto-fill { height: 100%; background: var(--gold); border-radius: 1px; width: 0; transition: width linear; }

/* ── FAQ ── */
#faq { padding: 90px 60px; background: var(--bg); }
.faq-i { max-width: 900px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 52px; }
.fq { background: var(--bg2); overflow: hidden; transition: background 0.3s; }
.fq:hover { background: var(--bg3); }
.fq-q { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; cursor: pointer; gap: 20px; }
.fq-qt { font-weight: 700; font-size: 15px; color: var(--text); flex: 1; }
.fq-ic { font-size: 20px; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; font-family: monospace; line-height: 1; }
.fq.open .fq-ic { transform: rotate(45deg); }
.fq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.fq.open .fq-a { max-height: 300px; }
.fq-at { padding: 0 28px 24px; font-size: 14.5px; line-height: 1.7; color: var(--text2); }
.fq-bar { height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.fq.open .fq-bar { transform: scaleX(1); }

/* ── CTA ── */
#cta { padding: 100px 60px; position: relative; overflow: hidden; text-align: center; background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed; }
#cta::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: 0; }
#cta > * { position: relative; z-index: 1; }
#cta .cta-t, #cta .cta-s { color: #fff; }
#clients .sec-t, #clients .sec-ey,
#reviews .sec-t, #reviews .sec-ey { color: #fff !important; }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 100%, var(--gold-dim), transparent); pointer-events: none; }
.cta-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px,transparent 1px), linear-gradient(90deg,var(--border) 1px,transparent 1px); background-size: 60px 60px; pointer-events: none; }
.cta-in { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.cta-t { font-family: 'Unbounded',sans-serif; font-size: clamp(30px,5vw,64px); font-weight: 900; line-height: 1.05; letter-spacing: -2px; margin-bottom: 20px; color: var(--text); }
.cta-t em { font-style: normal; color: var(--gold); }
.cta-s { font-size: 17px; color: var(--text2); margin-bottom: 40px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-tg { background: #229ED9; color: #fff; font-weight: 700; font-size: 14px; padding: 15px 34px; border-radius: 7px; text-decoration: none; display: flex; align-items: center; gap: 10px; transition: all 0.3s; box-shadow: 0 8px 32px rgba(34,158,217,0.28); }
.btn-tg:hover { transform: translateY(-3px); box-shadow: 0 16px 52px rgba(34,158,217,0.38); }
.btn-call { background: transparent; color: var(--text); font-weight: 700; font-size: 14px; padding: 15px 34px; border-radius: 7px; text-decoration: none; border: 1px solid var(--border2); display: flex; align-items: center; gap: 9px; transition: all 0.3s; }
.btn-call:hover { border-color: var(--gold); background: var(--gold-dim); }
#cta .btn-call { color: #fff; border-color: rgba(255,255,255,0.4); }
#cta .btn-call:hover { border-color: var(--gold); background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
.foot { padding: 48px 60px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; max-width: 1380px; margin: 0 auto; }
.fl { font-family: 'Unbounded', sans-serif; font-size: 20px; font-weight: 900; color: var(--text); text-decoration: none; transition: opacity 0.3s; flex-shrink: 0; }
.fl span { color: var(--gold); }
.fl:hover { opacity: 0.7; }
.fc { font-size: 13px; color: var(--text2); }
.flinks { display: flex; gap: 20px; }
.flinks a { font-size: 13px; color: var(--text2); text-decoration: none; transition: color 0.2s; }
.flinks a:hover { color: var(--gold); }

/* ── SEO hidden ── */
.seo-hidden { font-size: 0; opacity: 0; position: absolute; pointer-events: none; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── MODAL ── */
.modal-bg { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.8); backdrop-filter: blur(12px); align-items: center; justify-content: center; padding: 20px; }
.modal-bg.open, .modal-bg[style*="flex"] { display: flex !important; }
.modal-box { background: var(--bg2); border: 1px solid var(--border2); border-radius: 20px; padding: 52px; width: 100%; max-width: 460px; position: relative; animation: scIn 0.3s ease; max-height: 90vh; overflow-y: auto; }
@keyframes scIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.modal-x { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--text2); font-size: 22px; cursor: pointer; transition: color 0.2s; }
.modal-x:hover { color: var(--text); }
.modal-title { font-family: 'Unbounded',sans-serif; font-size: 24px; font-weight: 900; margin-bottom: 5px; color: var(--text); }
.modal-sub { color: var(--text2); font-size: 13.5px; margin-bottom: 32px; }
.form-note { color: var(--text2); font-size: 12px; }
.form-note a { color: var(--gold); text-decoration: none; }
.form-err { background: rgba(196,154,58,0.1); border: 1px solid rgba(196,154,58,0.3); border-radius: 8px; padding: 10px 14px; color: var(--text); font-size: 13px; margin-bottom: 12px; }

/* Form fields */
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text2); margin-bottom: 8px; }
.fg input, .fg select, .fg textarea { width: 100%; background: var(--bg3); border: 1px solid var(--border2); border-radius: 8px; padding: 12px 14px; color: var(--text); font-family: 'Inter',sans-serif; font-size: 14px; transition: border-color 0.2s; outline: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg select option { background: var(--bg3); }
.fg textarea { resize: vertical; min-height: 90px; }

/* ── REVEAL ANIMATION ── */
.r { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.r.v { opacity: 1; transform: translateY(0); }
@keyframes fup { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ── BLOG ── */
.blog-main, .blog-single, .page-main, .gallery-page-main { padding-top: 100px; padding-bottom: 80px; background: var(--bg); flex: 1; }
.container { max-width: 1380px; margin: 0 auto; padding: 0 60px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 60px; }
.page-header { margin-bottom: 56px; }
.page-header .sec-ey { margin-bottom: 12px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.blog-card { background: var(--bg2); overflow: hidden; transition: background 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { background: var(--bg3); }
.blog-card-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/10; position: relative; flex-shrink: 0; }
.blog-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.05); }
.blog-card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background 0.3s; }
.blog-card:hover .blog-card-overlay { background: rgba(196,154,58,0.08); }
.blog-card-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.blog-card-date { font-size: 11px; color: var(--text3); }
.blog-card-cat { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); background: var(--gold-dim); padding: 2px 8px; border-radius: 20px; }
.blog-card-title { font-family: 'Unbounded',sans-serif; font-size: 17px; font-weight: 800; line-height: 1.3; margin-bottom: 12px; letter-spacing: -0.3px; }
.blog-card-title a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: 13.5px; color: var(--text2); line-height: 1.6; margin-bottom: 0; flex: 1; }
.blog-card-link { font-size: 13px; font-weight: 600; color: var(--gold); text-decoration: none; transition: opacity 0.2s; margin-top: 20px; display: inline-block; }
.blog-card-link:hover { opacity: 0.8; }

/* Single post */
.breadcrumb { font-size: 12px; color: var(--text3); margin-bottom: 24px; }
.breadcrumb a { color: var(--text2); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.single-post-meta { font-size: 12px; color: var(--text3); display: flex; gap: 8px; margin-bottom: 20px; }
.single-post-title { font-family: 'Unbounded',sans-serif; font-size: clamp(22px,3vw,40px); font-weight: 900; line-height: 1.15; letter-spacing: -1px; color: var(--text); margin-bottom: 32px; }
.single-post-thumb { border-radius: 12px; overflow: hidden; margin-bottom: 40px; }
.single-post-thumb img { width: 100%; height: auto; display: block; }
.single-post-content { font-size: 16px; line-height: 1.8; color: var(--text2); }
.single-post-content h2, .single-post-content h3 { font-family: 'Unbounded',sans-serif; color: var(--text); margin: 32px 0 16px; }
.single-post-content h2 { font-size: 22px; }
.single-post-content h3 { font-size: 18px; }
.single-post-content p { margin-bottom: 20px; }
.single-post-content a { color: var(--gold); }
.single-post-content ul, .single-post-content ol { margin: 16px 0 20px 24px; }
.single-post-content li { margin-bottom: 8px; }
.single-post-content blockquote { border-left: 3px solid var(--gold); padding: 16px 24px; margin: 24px 0; color: var(--text); font-style: italic; background: var(--gold-dim); border-radius: 0 8px 8px 0; }
.single-post-content img { max-width: 100%; border-radius: 8px; margin: 20px 0; }

.author-box { display: flex; gap: 24px; align-items: flex-start; background: var(--bg2); border: 1px solid var(--border2); border-radius: 16px; padding: 32px; margin: 48px 0 32px; }
.author-avatar img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.author-name { font-family: 'Unbounded',sans-serif; font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.author-bio { font-size: 14px; color: var(--text2); line-height: 1.6; margin-bottom: 12px; }
.author-link { font-size: 13px; font-weight: 600; color: var(--gold); text-decoration: none; }

.post-cta { background: var(--gold-dim); border: 1px solid rgba(196,154,58,0.2); border-radius: 12px; padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.post-cta-text { font-family: 'Unbounded',sans-serif; font-size: 18px; font-weight: 800; color: var(--text); }

.post-nav { margin: 40px 0; }
.post-nav-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.post-nav-item { background: var(--bg2); border: 1px solid var(--border2); border-radius: 10px; padding: 20px; text-decoration: none; color: var(--text); transition: all 0.3s; display: flex; flex-direction: column; gap: 6px; }
.post-nav-item:hover { border-color: var(--gold); background: var(--gold-dim); }
.post-nav-next { text-align: right; }
.post-nav-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.post-nav-title { font-size: 14px; font-weight: 600; color: var(--text2); }

/* Pagination */
.pagination { margin-top: 60px; text-align: center; }
.pagination .nav-links { justify-content: center; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 6px; border: 1px solid var(--border2); color: var(--text2); text-decoration: none; font-size: 14px; transition: all 0.3s; }
.pagination .page-numbers:hover, .pagination .page-numbers.current { background: var(--gold); border-color: var(--gold); color: #fff; }
.pagination .prev.page-numbers, .pagination .next.page-numbers { width: auto; padding: 0 16px; }

/* No posts */
.no-posts { text-align: center; padding: 60px 20px; color: var(--text2); }
.no-posts p { font-size: 16px; margin-bottom: 24px; }

/* Post tags */
.post-tags { margin-top: 24px; font-size: 13px; color: var(--text2); }
.post-tags a { color: var(--gold); text-decoration: none; }

/* inline form success/error */
.inline-form-msg { padding: 12px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; }
.inline-form-msg.success { background: rgba(196,154,58,0.15); color: #fff; border: 1px solid rgba(196,154,58,0.3); }
.inline-form-msg.error { background: rgba(255,80,80,0.1); color: #fff; border: 1px solid rgba(255,80,80,0.2); }

/* ── GALLERY MOBILE ── */
@media (max-width: 768px) {
  #gallery { padding: 60px 20px; }
  .gal-g {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    gap: 3px;
  }
  .gi { height: 160px; }
  .gi.wide { grid-column: span 2; height: 200px; }
  .gi.tall { grid-row: span 1; height: 160px; }
}
