/* ============================================
   BEAM GLOBAL — GLOBAL STYLESHEET
   Version 1.0
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --obsidian:     #0C0C0C;
  --ash-slate:    #222222;
  --gold:         #E2B644;
  --gold-light:   #F0CC77;
  --white:        #FFFFFF;
  --off-white:    #F5F0E8;
  --muted:        rgba(255,255,255,0.5);
  --border:       #222222;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   7rem;
  --space-xxl: 10rem;

  --max-w: 1280px;
  --nav-h: 80px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--obsidian);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

/* REMOVED: Light sections — design system is dark-only */
.section--light {
  background: #0C0C0C;
  color: #FFFFFF;
}
.section--light .body-lg,
.section--light .body-md {
  color: rgba(255,255,255,0.7);
}
.section--light h2,
.section--light h3,
.section--light p { color: #FFFFFF; }
.section--warm {
  background: #0C0C0C;
  color: #FFFFFF;
}
.section--warm .body-lg,
.section--warm .body-md {
  color: rgba(255,255,255,0.7);
}

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

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

ul {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-1 {
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
}

.display-2 {
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.display-3 {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.heading-1 {
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.heading-2 {
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}

.body-md {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

/* --- LAYOUT --- */
.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.section-sm {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.section--dark {
  background: var(--obsidian);
}

.section--slate {
  background: var(--ash-slate);
}

.section--amber {
  background: #251C0D;
}

.section--gold-border {
  border-top: 1px solid var(--border);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}

/* --- NAVIGATION --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(26, 18, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-mark svg {
  width: 20px;
  height: 20px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--obsidian) !important;
  padding: 0.55rem 1.25rem;
  font-weight: 600 !important;
  letter-spacing: 0.12em;
  transition: opacity 0.25s ease !important;
}

.nav-cta:hover {
  opacity: 0.88;
  color: var(--obsidian) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--obsidian);
  padding: 1rem 2.25rem;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.25rem;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 0;
  gap: 0.75rem;
}

.btn-ghost::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.btn-ghost:hover::after {
  transform: translateX(5px);
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: var(--space-xl);
  padding-top: calc(var(--nav-h) + 3rem);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--obsidian);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,12,0.3) 0%, rgba(12,12,12,0.85) 70%, var(--obsidian) 100%);
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
}

.hero-headline {
  max-width: 16ch;
  margin-bottom: 1.75rem;
}

.hero-sub {
  max-width: 55ch;
  margin-bottom: 2.5rem;
}

.hero-lines {
  margin: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-lines p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

/* --- DIVIDER --- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- SECTION HEADER --- */
.section-header {
  margin-bottom: 4rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .divider {
  margin-left: auto;
  margin-right: auto;
}

/* --- CARDS --- */
.card {
  background: var(--ash-slate);
  padding: 2.5rem;
  border-top: 2px solid var(--border);
  transition: border-color var(--transition);
}

.card:hover {
  border-top-color: var(--gold);
}

.card-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(226,182,68,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.card-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* --- STAT BLOCKS --- */
.stat-block {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* --- PHASE BLOCKS --- */
.phase-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.phase-item {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.phase-item:first-child {
  border-top: 1px solid var(--border);
}

.phase-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  white-space: nowrap;
  padding-top: 0.25rem;
  min-width: 80px;
}

.phase-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.phase-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* --- QUOTE BLOCK --- */
.pullquote {
  border-left: 2px solid var(--gold);
  padding: 1.5rem 2.5rem;
  margin: 3rem 0;
}

.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}

/* --- ARCHITECTURE BLOCKS --- */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.arch-block {
  background: var(--obsidian);
  padding: 2.5rem;
  transition: background var(--transition);
}

.arch-block:hover {
  background: #131313;
}

.arch-block-icon {
  width: 32px;
  height: 32px;
  background: rgba(226,182,68,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.arch-block-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.arch-block h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.arch-block p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* --- AUDIO PLAYER --- */
.audio-player {
  background: var(--ash-slate);
  border: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 620px;
}

.audio-play-btn {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.audio-play-btn:hover {
  opacity: 0.85;
}

.audio-play-btn svg {
  width: 18px;
  height: 18px;
  color: var(--obsidian);
  margin-left: 2px;
}

.audio-info {
  flex: 1;
}

.audio-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.audio-progress {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  position: relative;
  margin-top: 0.5rem;
}

.audio-progress-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}

.audio-time {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* --- VERTICAL CARDS --- */
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.vertical-card {
  background: var(--obsidian);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.vertical-card:hover {
  background: #111111;
}

.vertical-status {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  margin-bottom: 2rem;
  display: inline-block;
}

.status-live { 
  color: var(--gold); 
  background: rgba(226,182,68,0.1);
}
.status-dev { 
  color: rgba(255,255,255,0.5); 
  background: rgba(255,255,255,0.05);
}
.status-planned { 
  color: rgba(255,255,255,0.3); 
  background: rgba(255,255,255,0.03);
}

.vertical-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.vertical-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* --- MARQUEE --- */
.marquee-wrapper {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ash-slate);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}

.marquee-item span {
  color: var(--gold);
  margin: 0 1rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- FORM ELEMENTS --- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--ash-slate);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* --- FOOTER --- */
footer {
  background: var(--ash-slate);
  border-top: 1px solid var(--border);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.footer-brand-name span { color: var(--gold); }

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-email {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* --- FULL-WIDTH EDITORIAL SECTION --- */
.editorial-section {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
}

.editorial-section .inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

/* --- PAGE HERO (Internal pages) --- */
.page-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

/* --- SEQUENCE / FLOW VISUAL --- */
.sequence-flow {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.seq-item {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--border);
  white-space: nowrap;
}

.seq-arrow {
  font-size: 0.75rem;
  color: var(--gold);
  padding: 0 0.25rem;
}

/* --- MOBILE NAV OVERLAY --- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--obsidian);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
  line-height: 1.4;
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- UTILITY --- */
.text-gold { color: var(--gold); }
.text-muted { color: rgba(255,255,255,0.5); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* --- COMING SOON / PLACEHOLDER --- */
.placeholder-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-h);
  position: relative;
}

.placeholder-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(226,182,68,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- DECORATIVE ELEMENTS --- */
.beam-mark {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  margin-right: 0.75rem;
  vertical-align: middle;
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-info-value {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}

/* --- MEDIA PAGE --- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.media-card {
  border: 1px solid var(--border);
  transition: border-color var(--transition);
  overflow: hidden;
}

.media-card:hover {
  border-color: rgba(226,182,68,0.4);
}

.media-thumb {
  aspect-ratio: 16/9;
  background: var(--ash-slate);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-thumb-icon {
  width: 56px;
  height: 56px;
  background: rgba(226,182,68,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226,182,68,0.3);
}

.media-thumb-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin-left: 3px;
}

.media-info {
  padding: 1.5rem;
}

.media-type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.media-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.media-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* --- LEADERSHIP TEAM CARDS --- */
.team-card:hover .team-portrait {
  transform: scale(1.05);
  filter: brightness(1.0) contrast(1.05) !important;
}

.team-card:hover .team-gold-bar {
  transform: scaleX(1) !important;
}

/* Responsive: stack portrait + bio on small screens */
@media (max-width: 860px) {
  div[style*="grid-template-columns:320px 1fr"],
  div[style*="grid-template-columns:1fr 320px"] {
    display: flex !important;
    flex-direction: column;
  }
  div[style*="grid-template-columns:320px 1fr"] > div:first-child,
  div[style*="grid-template-columns:1fr 320px"] > div:last-child {
    min-height: 320px !important;
  }
}

/* Team grid collapses on mobile */
@media (max-width: 900px) {
  div[style*="repeat(5,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  div[style*="repeat(5,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* --- CINEMATIC IMAGE TREATMENTS --- */
.portrait-img {
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

.portrait-img:hover,
div:hover .portrait-img {
  transform: scale(1.04);
  filter: grayscale(0%) !important;
}

/* Full-bleed photo section */
.photo-bleed {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
}

.photo-bleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-bleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.96) 0%, rgba(12,12,12,0.5) 50%, rgba(12,12,12,0.2) 100%);
}

.photo-bleed-content {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  width: 100%;
}

/* Cinematic split responsive */
@media (max-width: 960px) {
  .cinematic-split {
    grid-template-columns: 1fr !important;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .nav-links {
    gap: 1.4rem;
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .editorial-section .inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .arch-grid { grid-template-columns: repeat(2, 1fr); }
  .vertical-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root {
    --space-xl: 4.5rem;
    --space-lg: 3rem;
  }

  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .arch-grid { grid-template-columns: 1fr; }
  .vertical-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .sequence-flow { flex-direction: column; align-items: flex-start; }
  .seq-arrow { transform: rotate(90deg); }
  .phase-item { flex-direction: column; gap: 0.75rem; }
  .audio-player { flex-direction: column; align-items: flex-start; }
  .pullquote { padding: 1.25rem 1.5rem; }

  /* Split-screen stacks on mobile */
  section > div[style*="grid-template-columns:1fr 1fr"] {
    display: flex !important;
    flex-direction: column;
  }

  /* Portrait grid collapses */
  div[style*="repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}
