
:root {
  --bg: #090909;
  --bg-soft: #121212;
  --panel: #141414;
  --panel-2: #171717;
  --text: #f5f1e8;
  --muted: #b8b1a2;
  --gold: #c9a34e;
  --gold-soft: rgba(201, 163, 78, 0.16);
  --line: rgba(201, 163, 78, 0.22);
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0,0,0,.38);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(9,9,9,.72);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 82px; gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: 44px; width: auto; }
.footer-logo { height: 40px; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a:not(.btn) { color: #e9e2d2; font-size: .95rem; }
.nav-toggle {
  display: none; border: 1px solid var(--line); background: transparent; color: var(--text);
  padding: 10px 14px; border-radius: 999px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px; font-weight: 600; transition: .25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #13110d; }
.btn-outline { border: 1px solid rgba(255,255,255,.18); color: var(--text); background: rgba(255,255,255,.02); }
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat url('assets/hero-buses.jpg');
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(9,9,9,.32) 0%, rgba(9,9,9,.45) 35%, rgba(9,9,9,.88) 100%),
    linear-gradient(90deg, rgba(9,9,9,.82) 0%, rgba(9,9,9,.26) 44%, rgba(9,9,9,.5) 100%);
}
.hero-content {
  position: relative; z-index: 1; padding: 160px 0 92px;
  max-width: 760px;
}
.eyebrow, .section-label {
  text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; color: var(--gold);
}
.hero h1, .section-title, h2, h3 {
  font-family: 'Cormorant Garamond', serif; line-height: 1.02; margin: 0;
}
.hero h1 { font-size: clamp(3.4rem, 8vw, 6.3rem); margin-top: 12px; }
.hero-copy { font-size: 1.12rem; color: #e5dece; max-width: 620px; margin: 22px 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.section { padding: 98px 0; }
.section-dark { background: var(--bg); }
.section-contrast { background: linear-gradient(180deg, #101010 0%, #0d0d0d 100%); }
.section-goldline { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro { padding: 56px 0 28px; }
.intro-grid, .about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: start;
}
.lead, .about-copy p, .section-copy { color: var(--muted); font-size: 1.05rem; }
.section-title { font-size: clamp(2.3rem, 5vw, 4rem); margin-top: 8px; }
.section-heading {
  display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px;
}
.section-heading.stack { align-items: start; }
.cards.three-up {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px;
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.media-card { overflow: hidden; padding: 0; }
.media-card img { width:100%; aspect-ratio: 4/3; object-fit: cover; }
.media-card h3, .media-card p { padding-left: 24px; padding-right: 24px; }
.media-card h3 { padding-top: 22px; }
.media-card p { padding-bottom: 24px; }
.card h3 { font-size: 2rem; margin-bottom: 12px; }
.card p { color: var(--muted); margin: 0; }
.card a { color: var(--gold); }
.project {
  position: relative; overflow: hidden; border-radius: var(--radius); background: #121212;
  border: 1px solid rgba(255,255,255,.06); box-shadow: var(--shadow);
}
.project img { width: 100%; height: 100%; object-fit: cover; }
.project-wide { min-height: 560px; }
.project-wide img { min-height: 560px; }
.project figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.82));
}
.project figcaption span { display: block; color: var(--gold); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.project figcaption strong { display: block; margin-top: 8px; font-size: 1.2rem; }
.gallery {
  display:grid; gap:22px; margin-top: 24px;
}
.gallery-5 { grid-template-columns: repeat(5, 1fr); }
.gallery-5 img, .masonry img {
  width:100%; height:100%; object-fit:cover; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06); box-shadow: var(--shadow); background:#111;
}
.gallery-5 img { aspect-ratio: 4/5; }
.masonry {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.masonry img { aspect-ratio: 4/5; }
.masonry .span-2 { grid-column: span 2; aspect-ratio: 16/10; }
.ecosystem .compact .card-min { padding: 24px; }
.cta-box {
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px);
  background: radial-gradient(circle at top left, rgba(201,163,78,.08), transparent 34%), #111;
  padding: 42px;
}
.site-footer {
  border-top: 1px solid rgba(255,255,255,.06); padding: 28px 0 40px; background: #070707;
}
.footer-wrap {
  display: flex; justify-content: space-between; gap: 24px; align-items: flex-end;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); }
.footer-brand { margin-bottom: 8px; }
.site-footer p { color: var(--muted); margin: 0; max-width: 460px; }

@media (max-width: 1100px) {
  .gallery-5 { grid-template-columns: repeat(3,1fr); }
  .masonry { grid-template-columns: repeat(2, 1fr); }
  .masonry .span-2 { grid-column: span 2; }
}
@media (max-width: 980px) {
  .site-nav {
    position: absolute; top: 82px; right: 20px; left: 20px; display: none;
    flex-direction: column; align-items: stretch; gap: 12px; padding: 18px;
    border-radius: 20px; background: rgba(10,10,10,.96); border: 1px solid rgba(255,255,255,.06);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .intro-grid, .about-grid, .cards.three-up, .footer-wrap, .section-heading {
    grid-template-columns: 1fr; display: grid;
  }
  .footer-wrap { display: grid; align-items: start; }
  .section-heading { align-items: start; }
  .project-wide, .project-wide img { min-height: 380px; }
  .gallery-5 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .hero-content { padding: 140px 0 70px; }
  .brand-logo { height: 36px; }
  .card h3 { font-size: 1.8rem; }
  .section { padding: 74px 0; }
  .cta-box { padding: 28px; }
  .gallery-5, .masonry { grid-template-columns: 1fr; }
  .masonry .span-2 { grid-column: span 1; aspect-ratio: 4/5; }
}


.heritage-note {
  margin-top: 16px;
  max-width: 760px;
  font-size: .96rem;
  color: #d7cfbf;
}

.heritage-note a,
.text-link {
  color: var(--gold);
}

.heritage-panel {
  margin-top: 28px;
  padding: 28px;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(201,163,78,.10), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  box-shadow: var(--shadow);
}

.heritage-panel h3 {
  margin-top: 6px;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.heritage-panel p {
  margin: 0 0 12px;
  max-width: 760px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.text-link::after {
  content: '→';
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(2px);
}

.hero-copy {
  text-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.card, .project, .cta-box, .heritage-panel {
  backdrop-filter: blur(2px);
}
