/* =========================================================
   Kıbrıs Eğlenceleri — Premium Design System
   ========================================================= */

:root {
  --bg: #090909;
  --bg-2: #121212;
  --bg-3: #171717;
  --gold: #D4AF37;
  --gold-soft: #e8c766;
  --white: #FFFFFF;
  --off-white: rgba(255, 255, 255, 0.72);
  --muted: rgba(255, 255, 255, 0.52);
  --red: #C1121F;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.35);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.18);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { color: var(--off-white); margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

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

.section {
  padding: 96px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(212, 175, 55, 0.32); }

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.4);
  color: #25D366;
}
.btn-whatsapp:hover { background: rgba(37, 211, 102, 0.22); transform: translateY(-2px); }

.btn-outline-gold {
  background: transparent;
  border-color: var(--border-gold);
  color: var(--gold);
}
.btn-outline-gold:hover { background: rgba(212, 175, 55, 0.1); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.navbar.is-scrolled {
  background: rgba(9, 9, 9, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom-color: var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.brand .brand-name span { color: var(--gold); }
.brand .brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--off-white);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 9, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 1.7rem; color: var(--white); }
.mobile-menu a:hover { color: var(--gold); }

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  z-index: 1200;
  transition: width 0.1s linear;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(9,9,9,0.35), rgba(9,9,9,0.85) 70%),
    linear-gradient(180deg, rgba(9,9,9,0.55) 0%, rgba(9,9,9,0.75) 55%, #090909 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 24px;
  animation: fadeUp 1s var(--ease) both;
}

.hero-content .eyebrow { justify-content: center; }
.hero-content .eyebrow::before { display: none; }

.hero h1 {
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--off-white);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-full);
}
.scroll-hint::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: var(--radius-full);
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 8px; }
}

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

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-soft);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.card:hover .card-media img { transform: scale(1.08); }

.card-media .badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(9,9,9,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 8px; }
.card-body .loc { color: var(--gold); font-size: 0.82rem; font-weight: 600; margin-bottom: 10px; letter-spacing: 0.03em; }
.card-body p { flex: 1; color: var(--muted); font-size: 0.94rem; }
.card-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.3s var(--ease);
}
.card:hover .card-link { gap: 12px; }

/* ---------- Glass panel ---------- */
.glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
}

/* ---------- Why us ---------- */
.feature {
  text-align: center;
  padding: 36px 24px;
}
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.feature h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature p { font-size: 0.92rem; color: var(--muted); }

/* ---------- About / long text ---------- */
.prose { max-width: 780px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; color: var(--gold-soft); }
.prose p { color: var(--off-white); }
.prose ul { color: var(--off-white); padding-left: 1.2em; }
.prose li { margin-bottom: 0.5em; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.08rem;
  cursor: pointer;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.faq-q .plus::before { width: 12px; height: 1px; }
.faq-q .plus::after { width: 1px; height: 12px; }
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); background: var(--gold); }
.faq-item.is-open .faq-q .plus::before, .faq-item.is-open .faq-q .plus::after { background: #0a0a0a; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a-inner { padding: 0 4px 22px; color: var(--muted); font-size: 0.96rem; max-width: 700px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.map-frame {
  width: 100%;
  aspect-ratio: 16 / 11;
  border: 0;
  border-radius: var(--radius-lg);
  filter: grayscale(0.4) invert(0.92) contrast(0.9);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.02em; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer a { color: var(--muted); font-size: 0.92rem; transition: color 0.3s var(--ease); }
.footer a:hover { color: var(--gold); }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 950;
  width: 62px; height: 62px;
  border-radius: var(--radius-full);
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6); }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background: #25D366;
  animation: pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 950;
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s, border-color 0.3s var(--ease);
  cursor: pointer;
}
.back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { border-color: var(--gold); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 130px 0 20px;
  font-size: 0.85rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span.sep { margin: 0 8px; opacity: 0.5; }
.breadcrumb .current { color: var(--gold); }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: 40px 0 60px;
  text-align: center;
}
.page-header .eyebrow { justify-content: center; }

/* ---------- Venue detail ---------- */
.venue-cover {
  position: relative;
  height: 60vh;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}
.venue-cover img { width: 100%; height: 100%; object-fit: cover; }
.venue-cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(9,9,9,0.85), transparent 55%);
}
.venue-cover-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  z-index: 2;
}
.venue-cover-info .loc { color: var(--gold); font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.venue-cover-info h1 { color: var(--white); margin: 0; }

.venue-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) { .venue-layout { grid-template-columns: 1fr; } }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 40px;
}
.gallery-grid img {
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.03); }

.feature-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.feature-list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--off-white); font-size: 0.95rem;
}
.feature-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.sidebar-card {
  padding: 28px;
  position: sticky;
  top: 100px;
}
.sidebar-card .info-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.sidebar-card .info-row span:first-child { color: var(--muted); }
.sidebar-card .info-row span:last-child { color: var(--white); text-align: right; font-weight: 500; }
.sidebar-card .btn { margin-top: 20px; }

/* ---------- Blog ---------- */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.blog-meta .cat {
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border-gold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-cover {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}
.toc {
  padding: 24px 26px;
  margin-bottom: 40px;
}
.toc h4 { margin-bottom: 14px; font-size: 0.95rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; }
.toc ul { margin: 0; padding-left: 1.1em; }
.toc li { margin-bottom: 8px; }
.toc a { color: var(--off-white); font-size: 0.92rem; }
.toc a:hover { color: var(--gold); }

/* ---------- Filters ---------- */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-chip {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--off-white);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-chip:hover { border-color: var(--border-gold); }
.filter-chip.is-active { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }

.search-bar {
  max-width: 480px;
  margin: 0 auto 40px;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 15px 20px 15px 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.95rem;
}
.search-bar input:focus { outline: none; border-color: var(--gold); }
.search-bar svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--muted); }

/* ---------- 404 ---------- */
.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 80px;
}
.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 10rem);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  line-height: 1;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.divider { height: 1px; background: var(--border); margin: 56px 0; }

/* ---------- Responsive nav ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-glass-desktop { display: none; }
}

@media (max-width: 640px) {
  .breadcrumb { padding-top: 110px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}

/* Loading */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  animation: loaderPulse 1.4s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

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