/* ============================================================
   SUMMIT. ENTERTAINMENT — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@1,300;1,400&family=DM+Mono:wght@300;400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #080808;
  --off-white:  #f0ece3;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --crimson:    #9b1c2e;
  --dim:        #2a2520;
  --muted:      #7a6f60;
}

html { scroll-behavior: smooth; font-size: 18px; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  cursor: none;
}
body:not(.cursor-ready) { cursor: auto; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px;
}
nav::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.92), transparent);
  pointer-events: none;
  transition: opacity 0.3s;
}
nav.scrolled::before { opacity: 0; }
.nav-logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
  position: relative; z-index: 1;
  line-height: 1;
}
.nav-logo img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height 0.3s ease;
}
nav.scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: #080808;
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}
nav.scrolled .nav-logo img { height: 44px; }
.footer-logo {
  display: inline-flex; align-items: center;
}
.footer-logo img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex; gap: 40px; align-items: center;
  list-style: none; position: relative; z-index: 1;
}
.nav-links li { display: flex; align-items: center; }
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  position: relative; z-index: 1; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--off-white);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
  transform-origin: center;
}
.nav-hamburger:hover span { background: var(--gold); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,0.97);
  z-index: 99;
  flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; letter-spacing: 0.08em;
  color: rgba(240,236,227,0.4);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  width: 80%; text-align: center;
  transition: color 0.3s;
}
.nav-drawer a:hover,
.nav-drawer a.active { color: var(--gold); }
.nav-drawer-close {
  position: absolute; top: 28px; right: 24px;
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  background: none; border: none; cursor: pointer;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dim);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 50px 60px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  display: inline-flex; align-items: center;
}
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.15em; color: var(--muted);
}
.footer-links { display: flex; gap: 30px; list-style: none; }
.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 20px; align-items: center; margin-top: 16px; }
.footer-socials a {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  border: 1px solid rgba(201,168,76,0.15); padding: 6px 14px;
  transition: color 0.3s, border-color 0.3s;
}
.footer-socials a:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  font-family: 'DM Mono', monospace; font-size: 0.78rem; letter-spacing: 0.2em;
  text-transform: uppercase; background: var(--gold); color: var(--black);
  padding: 16px 40px; border: none; text-decoration: none; display: inline-block;
  transition: background 0.3s, transform 0.2s; font-weight: 400;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  font-family: 'DM Mono', monospace; font-size: 0.78rem; letter-spacing: 0.2em;
  text-transform: uppercase; border: 1px solid rgba(240,236,227,0.2);
  color: var(--off-white); padding: 16px 40px; text-decoration: none;
  display: inline-block; transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 120px 60px; }
.section-tag {
  font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1; letter-spacing: 0.02em;
}

/* ============================================================
   GRAIN
   ============================================================ */
.grain {
  position: absolute; inset: 0; z-index: 2; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px; pointer-events: none;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dim);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 36px 60px;
  display: flex; justify-content: space-around; align-items: center; gap: 20px;
}
.stat { text-align: center; position: relative; }
.stat::after {
  content: ''; position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%); width: 1px; height: 40px;
  background: rgba(201,168,76,0.2);
}
.stat:last-child::after { display: none; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--gold); line-height: 1; }
.stat-label { font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  /* top padding clears the fixed nav (100px logo + 2x28px padding = 156px);
     min-height lets the hero grow on short viewports instead of clipping
     the headline behind the nav */
  justify-content: flex-end; padding: 176px 60px 120px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(155,28,46,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 80%, rgba(155,28,46,0.08) 0%, transparent 40%),
    var(--black);
  z-index: 0;
}
.beams { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.beam {
  position: absolute; bottom: -10%; width: 2px; height: 70%;
  background: linear-gradient(to top, rgba(201,168,76,0.6), transparent);
  transform-origin: bottom center;
  animation: beam-sweep 6s ease-in-out infinite; opacity: 0.4;
}
.beam:nth-child(1) { left: 25%; animation-delay: 0s; }
.beam:nth-child(2) { left: 40%; animation-delay: 1s; width: 1px; opacity: 0.25; }
.beam:nth-child(3) { left: 55%; animation-delay: 2s; }
.beam:nth-child(4) { left: 70%; animation-delay: 0.5s; width: 1px; opacity: 0.25; }
.beam:nth-child(5) { left: 32%; animation-delay: 3s; }
@keyframes beam-sweep {
  0%, 100% { transform: rotate(-12deg); opacity: 0.2; }
  50%       { transform: rotate(12deg);  opacity: 0.5; }
}
.stage-line {
  position: absolute; bottom: 20%; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent 5%, rgba(201,168,76,0.2) 20%, rgba(201,168,76,0.4) 50%, rgba(201,168,76,0.2) 80%, transparent 95%);
  z-index: 3;
}
.hero-content { position: relative; z-index: 5; }
.hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 0.78rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 8rem); line-height: 0.92; letter-spacing: 0.02em;
  color: var(--off-white); opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title .accent { color: var(--gold); }
.hero-title .line2 { display: block; color: transparent; -webkit-text-stroke: 1px rgba(240,236,227,0.3); }
.hero-sub {
  margin-top: 30px; font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 300;
  color: var(--muted); max-width: 520px; line-height: 1.75;
  opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
}
.hero-cta {
  margin-top: 48px; display: flex; gap: 20px; align-items: center;
  opacity: 0; animation: fadeUp 0.9s 1s forwards;
}
.hero-scroll {
  position: absolute; bottom: 40px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s 1.5s forwards; z-index: 5;
}
.hero-scroll span {
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.25em;
  color: var(--muted); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative; padding: 200px 60px 100px; overflow: hidden;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(155,28,46,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 20%, rgba(201,168,76,0.07) 0%, transparent 45%),
    var(--black);
}
.page-hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 0.78rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards; position: relative; z-index: 1;
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem); line-height: 0.92; letter-spacing: 0.02em;
  opacity: 0; animation: fadeUp 0.9s 0.4s forwards; position: relative; z-index: 1;
}
.page-hero-sub {
  margin-top: 24px; font-size: 1.1rem; font-weight: 300;
  color: var(--muted); max-width: 600px; line-height: 1.7;
  opacity: 0; animation: fadeUp 0.9s 0.6s forwards; position: relative; z-index: 1;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.85) saturate(0.9); transition: transform 0.6s ease; }
.about-visual:hover img { transform: scale(1.03); }
.about-visual-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 50%); }
.about-visual-caption { position: absolute; bottom: 28px; left: 28px; right: 28px; font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(201,168,76,0.7); }
.about-quote { font-size: 1.7rem; line-height: 1.5; color: var(--off-white); border-left: 2px solid var(--gold); padding-left: 20px; margin-bottom: 28px; }
.about-text p { font-size: 1.15rem; font-weight: 300; line-height: 1.8; color: rgba(240,236,227,0.75); margin-bottom: 20px; }
.about-text p strong { color: var(--off-white); font-weight: 400; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.tag { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; border: 1px solid rgba(201,168,76,0.3); color: var(--gold); padding: 7px 16px; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--dim); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 70px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(201,168,76,0.1); }
.service-card { background: var(--dim); padding: 50px 35px; position: relative; overflow: hidden; transition: background 0.4s; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover { background: rgba(201,168,76,0.04); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; color: rgba(201,168,76,0.08); line-height: 1; margin-bottom: 20px; transition: color 0.4s; }
.service-card:hover .service-num { color: rgba(201,168,76,0.15); }
.service-icon { font-size: 2rem; margin-bottom: 20px; }
.service-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: 0.05em; margin-bottom: 16px; color: var(--off-white); }
.service-desc { font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--muted); }

/* Service card rendered as a link (e.g. Marketing & Audience Growth) */
a.service-card { display: block; text-decoration: none; color: inherit; }
a.service-card::before { transform: scaleX(1); background: rgba(201,168,76,0.35); }
a.service-card:hover::before { background: var(--gold); }
.service-link {
  display: inline-block; margin-top: 20px;
  font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  transition: color 0.3s;
}
a.service-card:hover .service-link { color: var(--gold-light); }
.service-list { margin-top: 20px; list-style: none; }
.service-list li { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(201,168,76,0.6); padding: 6px 0; border-bottom: 1px solid rgba(201,168,76,0.08); display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: '—'; color: rgba(201,168,76,0.3); }

/* ============================================================
   PROCESS
   ============================================================ */
#process { background: var(--black); position: relative; overflow: hidden; }
#process::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.15) 20%, rgba(201,168,76,0.15) 80%, transparent); }
.process-header { text-align: center; margin-bottom: 80px; }
.process-grid { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; max-width: 900px; margin: 0 auto; }
.process-item { padding: 40px; position: relative; }
.process-item.right { text-align: right; }
.process-step-num { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: rgba(201,168,76,0.06); line-height: 1; position: absolute; top: 10px; }
.process-item.right .process-step-num { right: 40px; }
.process-item:not(.right) .process-step-num { left: 40px; }
.process-dot { display: flex; align-items: center; justify-content: center; padding-top: 48px; }
.dot-inner { width: 12px; height: 12px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 20px rgba(201,168,76,0.5); }
.process-phase { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.process-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.04em; margin-bottom: 12px; }
.process-desc { font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--muted); }

/* ============================================================
   FINANCING
   ============================================================ */
#financing { background: var(--dim); }
.financing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }
.financing-card { border: 1px solid rgba(201,168,76,0.12); padding: 50px 40px; position: relative; transition: border-color 0.3s; }
.financing-card:hover { border-color: rgba(201,168,76,0.3); }
.financing-card-label { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.financing-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.04em; margin-bottom: 20px; color: var(--off-white); }
.financing-list { list-style: none; }
.financing-list li { font-size: 1rem; font-weight: 300; line-height: 1.7; color: rgba(240,236,227,0.7); padding: 8px 0; border-bottom: 1px solid rgba(201,168,76,0.08); display: flex; align-items: center; gap: 12px; }
.financing-list li::before { content: '◆'; color: rgba(201,168,76,0.3); font-size: 0.5rem; flex-shrink: 0; }

/* ============================================================
   SUPPLIERS
   ============================================================ */
#suppliers { background: var(--black); }
.suppliers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,0.08); margin-top: 60px; }
.supplier-card { background: var(--black); padding: 40px 32px; transition: background 0.3s; }
.supplier-card:hover { background: rgba(201,168,76,0.03); }
.supplier-icon { font-size: 2rem; margin-bottom: 16px; }
.supplier-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.05em; margin-bottom: 10px; color: var(--off-white); }
.supplier-desc { font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--muted); }

/* ============================================================
   CUSTOMERS
   ============================================================ */
#customers { background: var(--dim); }
.customers-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
.customers-group-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 28px; }
.customers-list { list-style: none; }
.customers-list li { font-size: 1.05rem; font-weight: 300; line-height: 1.6; color: rgba(240,236,227,0.75); padding: 12px 0; border-bottom: 1px solid rgba(201,168,76,0.1); display: flex; align-items: center; gap: 14px; }
.customers-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; opacity: 0.6; }

/* ============================================================
   PARTNERS
   ============================================================ */
#partners { background: var(--black); text-align: center; }
.partners-title { font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--muted); margin-bottom: 50px; }
.partners-grid { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 2px; }
.partner-logo-item { padding: 32px 56px; background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.3s, border-color 0.3s; }
.partner-logo-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(201,168,76,0.2); }
.partner-logo-item img { height: 44px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(1) brightness(2); opacity: 0.55; transition: opacity 0.3s, filter 0.3s; display: block; }
.partner-logo-item:hover img { opacity: 0.9; filter: grayscale(0) brightness(1); }

/* ============================================================
   SHOWCASE PAGE
   ============================================================ */
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(201,168,76,0.08); margin-top: 80px; }
.showcase-card { background: var(--black); position: relative; overflow: hidden; aspect-ratio: 16/10; }
.showcase-card img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.55) saturate(0.8); transition: filter 0.5s, transform 0.6s; }
.showcase-card:hover img { filter: brightness(0.35) saturate(0.6); transform: scale(1.04); }
.showcase-card-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 60%); z-index: 1; transition: opacity 0.35s; }
.showcase-card:hover .showcase-card-overlay { opacity: 0; }
.showcase-card-tag { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.showcase-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 0.04em; line-height: 1; margin-bottom: 10px; color: var(--off-white); }
.showcase-card-meta { font-size: 0.95rem; font-weight: 300; color: rgba(240,236,227,0.55); margin-bottom: 20px; }
.showcase-card-stats { display: flex; gap: 24px; }
.showcase-stat { display: flex; flex-direction: column; }
.showcase-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--gold); line-height: 1; }
.showcase-stat-label { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.showcase-card-link { position: absolute; top: 28px; right: 28px; font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); text-decoration: none; border: 1px solid rgba(201,168,76,0.3); padding: 8px 16px; opacity: 0; transition: opacity 0.3s, background 0.3s; }
.showcase-card:hover .showcase-card-link { opacity: 1; }
.showcase-card-link:hover { background: var(--gold); color: var(--black); }
.showcase-card.featured { grid-column: 1 / -1; aspect-ratio: 21/8; }
.showcase-card.featured .showcase-card-title { font-size: 3.5rem; }
.showcase-detail { padding: 80px 60px; background: var(--dim); }
.showcase-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 50px; }
.showcase-detail-item { border-left: 1px solid rgba(201,168,76,0.2); padding-left: 28px; }
.showcase-detail-label { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.showcase-detail-value { font-size: 1.1rem; font-weight: 300; line-height: 1.7; color: var(--off-white); }
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; margin-top: 80px; }
.video-wrap iframe,
.video-wrap video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; background: #000; object-fit: cover; }
.video-section { padding: 80px 60px; background: var(--black); }

/* Instagram Reel embed */
.reel-embed { margin: 50px auto 0; max-width: 420px; width: 100%; }
.reel-embed iframe {
  display: block; width: 100%; height: 720px;
  border: 1px solid rgba(201,168,76,0.2); background: #0a0a0a;
}
.reel-credit { text-align: center; margin-top: 20px; }
.reel-credit a {
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); text-decoration: none;
}
.reel-credit a:hover { color: var(--gold-light); }
@media (max-width: 768px) {
  .reel-embed iframe { height: 640px; }
}
.video-section-label { font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.video-section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.video-section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 40px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
#contact { background: var(--black); position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(155,28,46,0.12), transparent 60%); pointer-events: none; }
.contact-conclusion { position: relative; z-index: 1; background: rgba(201,168,76,0.04); border: 1px solid rgba(201,168,76,0.15); padding: 50px 60px; margin-bottom: 80px; border-left: 3px solid var(--gold); }
.contact-conclusion p { font-size: 1.1rem; font-weight: 300; line-height: 1.9; color: rgba(240,236,227,0.8); }
.contact-conclusion p strong { color: var(--off-white); font-style: normal; font-weight: 400; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; position: relative; z-index: 1; }
.contact-left .section-title { margin-bottom: 24px; }
.contact-left p { font-size: 1.15rem; font-weight: 300; line-height: 1.8; color: var(--muted); margin-bottom: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-label { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); min-width: 80px; padding-top: 3px; }
.contact-info-value { font-size: 1.05rem; font-weight: 300; color: var(--off-white); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-select, .form-textarea { background: rgba(240,236,227,0.04); border: 1px solid rgba(201,168,76,0.15); color: var(--off-white); padding: 15px 18px; font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 300; outline: none; transition: border-color 0.3s; width: 100%; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.form-select option { background: var(--dim); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit { font-family: 'DM Mono', monospace; font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase; background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 18px 44px; cursor: pointer; transition: background 0.3s, color 0.3s; align-self: flex-start; margin-top: 10px; }
.btn-submit:hover { background: var(--gold); color: var(--black); }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 60px; position: relative; overflow: hidden; }
.error-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%, rgba(155,28,46,0.15) 0%, transparent 55%), radial-gradient(ellipse at 50% 20%, rgba(201,168,76,0.07) 0%, transparent 45%), var(--black); }
.error-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(10rem, 25vw, 22rem); line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,0.15); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%); pointer-events: none; user-select: none; }
.error-content { position: relative; z-index: 2; }
.error-tag { font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
.error-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 7vw, 6rem); line-height: 1; margin-bottom: 24px; opacity: 0; animation: fadeUp 0.8s 0.4s forwards; }
.error-sub { font-size: 1.1rem; font-weight: 300; color: var(--muted); max-width: 460px; line-height: 1.7; margin: 0 auto 48px; opacity: 0; animation: fadeUp 0.8s 0.6s forwards; }
.error-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.8s forwards; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 900px) {
  html { font-size: 16px; }

  nav { padding: 16px 24px; }
  .nav-logo img { height: 60px; }
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .nav-drawer { display: flex; }

  section { padding: 80px 24px; }

  #hero {
    /* mobile nav = 60px logo + 2x16px padding = 92px */
    padding: 112px 24px 60px;
    justify-content: flex-start;
    height: auto;
    min-height: 100svh;
  }
  .hero-eyebrow { animation: none !important; opacity: 1 !important; }
  .hero-title   { animation: none !important; opacity: 1 !important; font-size: clamp(3.2rem, 13vw, 4.5rem); }
  .hero-sub     { animation: none !important; opacity: 1 !important; }
  .hero-cta     { animation: none !important; opacity: 1 !important; }
  .hero-scroll  { display: none; }
  .stage-line   { top: 80%; bottom: unset; }

  .page-hero { padding: 120px 24px 80px; }
  .page-hero-eyebrow { animation: none !important; opacity: 1 !important; }
  .page-hero-title   { animation: none !important; opacity: 1 !important; }
  .page-hero-sub     { animation: none !important; opacity: 1 !important; }

  #about { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { aspect-ratio: 3/2; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .financing-grid { grid-template-columns: 1fr; gap: 30px; }
  .suppliers-grid { grid-template-columns: 1fr; }
  .customers-layout { grid-template-columns: 1fr; gap: 50px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-dot { display: none; }
  .process-item.right { text-align: left; }
  .contact-conclusion { padding: 36px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 40px 24px; }
  .stats-bar { padding: 24px; flex-wrap: wrap; gap: 30px; }
  .partner-item { padding: 20px 30px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card.featured { grid-column: 1; aspect-ratio: 16/10; }
  .showcase-card.featured .showcase-card-title { font-size: 2.2rem; }
  .showcase-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .showcase-detail { padding: 60px 24px; }
  .video-section { padding: 60px 24px; }
  .error-page { padding: 40px 24px; }
}

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; line-height: 1; }
.nav-dropdown > a::after {
  content: ''; width: 5px; height: 5px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px); display: inline-block; flex-shrink: 0;
  transition: transform 0.2s;
}
.nav-dropdown:hover > a::after { transform: rotate(-135deg) translateY(1px); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%);
  background: rgba(8,8,8,0.98); border: 1px solid rgba(201,168,76,0.15);
  min-width: 260px; padding: 8px 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
  z-index: 9999;
}
/* Transparent bridge covers the gap so mouse doesn't lose hover */
.nav-dropdown-menu::before {
  content: '';
  position: absolute; top: -20px; left: -20px; right: -20px; height: 20px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; pointer-events: all;
}
.nav-dropdown-menu a {
  display: block; padding: 12px 24px;
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  border-bottom: none; width: auto; text-align: left;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(201,168,76,0.05); }
.nav-dropdown-menu a::after { display: none !important; }

/* NAV CTA BUTTON */
.nav-cta {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; background: var(--gold); color: var(--black) !important;
  padding: 11px 24px; text-decoration: none; white-space: nowrap;
  transition: background 0.3s; position: relative; z-index: 1;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ============================================================
   SERVICES GRID — 2 COLUMNS DESKTOP
   ============================================================ */
.services-grid { grid-template-columns: repeat(2, 1fr) !important; }

/* ============================================================
   ABOUT TEXT BLOCK (simplified)
   ============================================================ */
.about-block { padding: 100px 60px; background: var(--black); border-bottom: 1px solid rgba(201,168,76,0.08); }
.about-block-inner { max-width: 860px; }
.about-body { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 300; line-height: 1.9; color: rgba(240,236,227,0.75); margin-bottom: 24px; }

/* ============================================================
   FEATURED PROJECTS (HOMEPAGE)
   ============================================================ */
#featured { padding: 100px 60px; background: var(--black); }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(201,168,76,0.08); margin-top: 60px; }
.featured-card { position: relative; overflow: hidden; aspect-ratio: 3/4; display: block; text-decoration: none; }
.featured-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) saturate(0.85); transition: filter 0.5s, transform 0.6s; display: block; }
.featured-card:hover img { filter: brightness(0.3) saturate(0.6); transform: scale(1.04); }
.featured-card-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, transparent 60%); }
.featured-card-tag { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.featured-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: 0.04em; line-height: 1.05; color: var(--off-white); margin-bottom: 14px; }
.featured-card-cta { font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s; }
.featured-card:hover .featured-card-cta { opacity: 1; transform: translateY(0); }

/* ============================================================
   CONTACT CTA STRIP
   ============================================================ */
.cta-strip { background: var(--crimson); padding: 100px 60px; text-align: center; }
.cta-strip-eyebrow { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(240,236,227,0.55); margin-bottom: 20px; }
.cta-strip-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 16px; color: var(--off-white); }
.cta-strip-sub { font-size: 1.05rem; font-weight: 300; color: rgba(240,236,227,0.65); max-width: 480px; margin: 0 auto 44px; line-height: 1.7; }
.cta-strip .btn-primary { background: var(--off-white); color: var(--black); }
.cta-strip .btn-primary:hover { background: var(--gold); }

/* ============================================================
   OUR WORK PAGE — CARD CHIPS + HOVER
   ============================================================ */
.card-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.card-chip { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.35); padding: 4px 10px; }
.showcase-card-hover { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; opacity: 0; transition: opacity 0.35s; background: rgba(8,8,8,0.75); z-index: 2; }
.showcase-card:hover .showcase-card-hover { opacity: 1; }
.showcase-card-hover-summary { font-size: 0.95rem; font-weight: 300; color: rgba(240,236,227,0.75); line-height: 1.6; margin-bottom: 20px; }
.showcase-card-hover-cta { font-family: 'DM Mono', monospace; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-decoration: none; border: 1px solid rgba(201,168,76,0.4); padding: 10px 20px; display: inline-block; transition: background 0.25s, color 0.25s; }
.showcase-card-hover-cta:hover { background: var(--gold); color: var(--black); }

/* VIDEO BG ON CARD */
.card-video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) saturate(0.85); transition: filter 0.5s, transform 0.6s; }
.showcase-card:hover .card-video-bg { filter: brightness(0.35) saturate(0.6); transform: scale(1.04); }

/* ============================================================
   PROJECT PAGES
   ============================================================ */
.project-hero { position: relative; height: 80vh; min-height: 520px; overflow: hidden; display: flex; align-items: flex-end; }
.project-hero img,
.project-hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); }
.project-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.15) 65%, transparent 100%); z-index: 1; }
.project-hero-content { position: relative; z-index: 2; padding: 60px; width: 100%; }
.project-hero-tag { font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
.project-hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 7rem); line-height: 0.92; letter-spacing: 0.02em; margin-bottom: 16px; opacity: 0; animation: fadeUp 0.9s 0.5s forwards; }
.project-hero-date { font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.2em; color: rgba(240,236,227,0.5); opacity: 0; animation: fadeUp 0.8s 0.7s forwards; }

.project-chips { display: flex; flex-wrap: wrap; gap: 12px; padding: 50px 60px 0; }
.project-chip { font-family: 'DM Mono', monospace; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); padding: 8px 18px; }

.project-intro { padding: 50px 60px 80px; max-width: 900px; }
.project-intro p { font-size: 1.2rem; font-weight: 300; line-height: 1.9; color: rgba(240,236,227,0.8); letter-spacing: 0.01em; }

.project-details { background: var(--dim); }
.project-details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,0.08); }
.project-detail-item { background: var(--dim); padding: 40px 36px; }
.project-detail-label { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.project-detail-value { font-size: 1rem; font-weight: 300; line-height: 1.75; color: var(--off-white); }

.project-gallery { padding: 100px 60px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 50px; }
.gallery-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; filter: brightness(0.88) saturate(0.9); transition: filter 0.4s, transform 0.4s; overflow: hidden; }
.gallery-img:hover { filter: brightness(1) saturate(1); transform: scale(1.02); }
.gallery-wide { grid-column: span 2; }
.gallery-wide .gallery-img { aspect-ratio: 16/9; }

/* ============================================================
   TYPOGRAPHY FIXES (SHOWCASE DEEP DIVE)
   ============================================================ */
.showcase-detail > p { letter-spacing: 0.01em !important; }
@media (max-width: 768px) {
  .showcase-detail > p { font-size: 1rem !important; line-height: 1.75 !important; }
}

/* ============================================================
   MOBILE — NEW SECTIONS
   ============================================================ */
@media (max-width: 900px) {
  .nav-cta { display: none; }
  .nav-dropdown-menu { display: none; }
  #featured { padding: 60px 24px; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card { aspect-ratio: 16/10; }
  .about-block { padding: 60px 24px; }
  .cta-strip { padding: 70px 24px; }
  .services-grid { grid-template-columns: 1fr !important; }
  .project-hero { height: 65vh; }
  .project-hero-content { padding: 32px 24px; }
  .project-chips { padding: 36px 24px 0; gap: 8px; }
  .project-intro { padding: 36px 24px 60px; }
  .project-details-grid { grid-template-columns: 1fr 1fr; }
  .project-gallery { padding: 60px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-wide { grid-column: span 2; }
}

/* ============================================================
   BEYOND THE STAGE — secondary scope feature
   Deliberately lighter than the main showcase treatment:
   supporting visual + copy, no click-through.
   ============================================================ */
.beyond {
  background: var(--dim); padding: 100px 60px;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.beyond-head { max-width: 700px; margin-bottom: 56px; }
.beyond-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.beyond-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.beyond-lede { font-size: 1.15rem; font-weight: 300; line-height: 1.7; color: rgba(240,236,227,0.75); }

.beyond-item { display: grid; grid-template-columns: 260px 1fr; gap: 52px; align-items: start; }
.beyond-poster { position: relative; display: block; }
.beyond-poster img {
  width: 100%; height: auto; display: block;
  border: 1px solid rgba(201,168,76,0.22);
  filter: brightness(0.94);
}
.beyond-poster figcaption {
  margin-top: 12px;
  font-family: 'DM Mono', monospace; font-size: 0.6rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(240,236,227,0.35); line-height: 1.6;
}
.beyond-body { padding-top: 4px; }
.beyond-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: 0.04em; line-height: 1.1; color: var(--off-white); margin-bottom: 10px;
}
.beyond-role {
  font-family: 'DM Mono', monospace; font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.beyond-meta {
  font-family: 'DM Mono', monospace; font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(240,236,227,0.4); margin-bottom: 22px;
}
.beyond-desc { font-size: 1rem; font-weight: 300; line-height: 1.85; color: rgba(240,236,227,0.72); }
.beyond-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.beyond-tag {
  font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(201,168,76,0.85);
  border: 1px solid rgba(201,168,76,0.25); padding: 7px 14px;
}

/* Compact variant — homepage */
.beyond--compact { padding: 80px 60px; }
.beyond--compact .beyond-head { margin-bottom: 44px; }
.beyond--compact .beyond-item { grid-template-columns: 190px 1fr; gap: 40px; }
.beyond--compact .beyond-desc { font-size: 0.95rem; }

@media (max-width: 900px) {
  .beyond, .beyond--compact { padding: 64px 24px; }
  .beyond-item, .beyond--compact .beyond-item { grid-template-columns: 1fr; gap: 32px; }
  .beyond-poster { max-width: 260px; }
  .beyond-lede { font-size: 1rem; }
}
