/* ─── LUDU SHARED STYLES ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #ffce00;
  --black: #080808;
  --off-black: #0e0e0c;
  --dark: #161614;
  --mid: #1e1e1b;
  --card: #141412;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.14);
  --text: #ccc9c0;
  --text-muted: rgba(204,201,192,0.45);
  --white: #f8f7f2;
  --font-title: 'Unbounded', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

.label-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--yellow);
}
.label-tag::before { content: ''; display: block; width: 20px; height: 1px; background: var(--yellow); }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 48px; transition: all 0.4s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.94); backdrop-filter: blur(16px);
  padding: 16px 48px; border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) { .nav { padding: 20px 24px; } .nav.scrolled { padding: 14px 24px; } }

.nav-logo { font-family: var(--font-title); font-size: 20px; font-weight: 900; letter-spacing: -0.02em; color: var(--white); }
.nav-logo em { color: var(--yellow); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 36px; }
@media (max-width: 960px) { .nav-links { display: none; } }
.nav-links a { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); transition: color 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-btn { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); background: var(--yellow); border: none; padding: 11px 26px; border-radius: 2px; cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
.nav-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }
@media (max-width: 960px) { .hamburger { display: flex; } }

.mob-menu { position: fixed; inset: 0; background: var(--off-black); z-index: 199; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
.mob-menu.open { opacity: 1; pointer-events: all; }
.mob-menu a { font-family: var(--font-title); font-size: clamp(28px,7vw,52px); font-weight: 700; color: var(--white); transition: color 0.25s; }
.mob-menu a:hover { color: var(--yellow); }
.mob-close { position: absolute; top: 24px; right: 28px; font-size: 22px; color: var(--text-muted); cursor: pointer; background: none; border: none; transition: color 0.25s; }
.mob-close:hover { color: var(--yellow); }

/* ─── BREADCRUMB HERO ─── */
.page-hero {
  min-height: 52vh; background: var(--off-black);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 140px 0 72px; position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  font-family: var(--font-title); font-size: clamp(120px,20vw,320px); font-weight: 900;
  letter-spacing: -0.06em; color: rgba(255,255,255,0.022); text-transform: uppercase;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 0 -20px; line-height: 0.85; pointer-events: none; user-select: none;
  overflow: hidden;
}
.page-hero-eyebrow { margin-bottom: 20px; }
.page-hero-title { font-family: var(--font-title); font-size: clamp(40px,6.5vw,100px); font-weight: 900; letter-spacing: -0.04em; color: var(--white); text-transform: uppercase; line-height: 0.92; margin-bottom: 24px; }
.page-hero-title .yl { color: var(--yellow); }
.page-hero-sub { font-size: 16px; line-height: 1.75; color: var(--text-muted); font-weight: 300; max-width: 520px; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 32px; }
.breadcrumb a, .breadcrumb span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb-sep { color: var(--border-strong); }

/* ─── BUTTONS ─── */
.btn-yellow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); background: var(--yellow); padding: 16px 40px; border-radius: 2px; border: none; cursor: pointer; transition: opacity 0.2s, transform 0.2s, gap 0.25s; }
.btn-yellow:hover { opacity: 0.88; transform: translateY(-2px); gap: 18px; }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); border: 1px solid var(--border-strong); padding: 15px 32px; border-radius: 2px; transition: border-color 0.25s, color 0.25s, gap 0.25s; }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); gap: 16px; }
.btn-black { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); background: var(--black); padding: 16px 36px; border-radius: 2px; transition: opacity 0.2s, transform 0.2s; }
.btn-black:hover { opacity: 0.85; transform: translateY(-2px); }

/* ─── SECTION TITLES ─── */
.sec-title { font-family: var(--font-title); font-size: clamp(34px,4vw,64px); font-weight: 700; line-height: 1.02; letter-spacing: -0.03em; color: var(--white); text-transform: uppercase; }
.sec-title .yl { color: var(--yellow); }
.sec-sub { font-size: 16px; line-height: 1.75; color: var(--text-muted); font-weight: 300; max-width: 560px; margin-top: 20px; }

/* ─── MARQUEE ─── */
.marquee-strip { background: var(--yellow); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.m-item { display: flex; align-items: center; gap: 16px; padding: 0 40px; font-family: var(--font-title); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); white-space: nowrap; }
.m-dot { width: 5px; height: 5px; background: rgba(0,0,0,0.35); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── CTA STRIP ─── */
.cta-strip { background: var(--yellow); padding: 80px 0; text-align: center; }
.cta-strip-title { font-family: var(--font-title); font-size: clamp(28px,4vw,56px); font-weight: 900; letter-spacing: -0.03em; color: var(--black); text-transform: uppercase; margin-bottom: 20px; line-height: 1; }
.cta-strip-sub { font-size: 15px; color: rgba(0,0,0,0.6); font-weight: 300; margin-bottom: 36px; }

/* ─── FOOTER ─── */
.footer { background: var(--black); border-top: 1px solid var(--border); padding: 72px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 56px; margin-bottom: 64px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.footer-logo { font-family: var(--font-title); font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: -0.02em; margin-bottom: 16px; }
.footer-logo em { color: var(--yellow); font-style: normal; }
.footer-tagline { font-size: 14px; line-height: 1.75; color: var(--text-muted); font-weight: 300; max-width: 260px; margin-bottom: 28px; }
.socials { display: flex; gap: 12px; }
.social { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; transition: all 0.25s; }
.social:hover { border-color: var(--yellow); color: var(--yellow); }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: var(--text-muted); font-weight: 300; transition: color 0.25s; }
.footer-nav a:hover { color: var(--yellow); }
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-info span, .footer-contact-info a { font-size: 14px; color: var(--text-muted); font-weight: 300; line-height: 1.5; transition: color 0.25s; }
.footer-contact-info a:hover { color: var(--yellow); }
.newsletter-form { display: flex; margin-top: 16px; }
.nl-input { flex: 1; background: var(--mid); border: 1px solid var(--border); border-right: none; border-radius: 2px 0 0 2px; padding: 10px 14px; font-family: var(--font-body); font-size: 13px; color: var(--text); outline: none; }
.nl-input::placeholder { color: var(--text-muted); }
.nl-btn { background: var(--yellow); border: none; padding: 10px 18px; border-radius: 0 2px 2px 0; font-size: 14px; cursor: pointer; color: var(--black); transition: opacity 0.2s; }
.nl-btn:hover { opacity: 0.85; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-copy { font-size: 12px; color: var(--text-muted); font-weight: 300; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--text-muted); font-weight: 300; transition: color 0.25s; }
.footer-legal a:hover { color: var(--yellow); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; } .d3 { transition-delay: 0.24s; } .d4 { transition-delay: 0.32s; }
