/* ─── THE ELECTROSTRINGS · CITY LANDING PAGE STYLES ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --gold: #c9a96e; --gold-light: #e2c992; --accent: #5ba4cf;
  --dark: #0d0d0d; --darker: #080808; --panel-bg: #111111;
  --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--dark); color: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ─── NAV ─── */
nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; display: flex; justify-content: space-between; align-items: center; padding: 1rem 2.5rem; background: rgba(8,8,8,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-logo { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; background: linear-gradient(135deg, var(--gold-light), var(--gold), #b8944f); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-decoration: none; }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a { font-size: 0.68rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(201,169,110,0.7); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.cta { color: var(--gold); font-weight: 600; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: 0.3s; }

/* ─── BREADCRUMB ─── */
.breadcrumb { padding: 1.2rem 4rem; background: var(--darker); border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 62px; }
.breadcrumb a { color: rgba(201,169,110,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.6rem; }

/* ─── HERO ─── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero.hero-center { align-items: center; }
.hero.hero-right { justify-content: flex-end; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.15) 100%); }
.hero-overlay.overlay-left { background: linear-gradient(to right, rgba(0,0,0,0.92) 45%, rgba(0,0,0,0.15) 100%); }
.hero-overlay.overlay-right { background: linear-gradient(to left, rgba(0,0,0,0.9) 45%, rgba(0,0,0,0.15) 100%); }
.hero-content { position: relative; z-index: 2; padding: 8rem 4rem 5rem; max-width: 680px; }
.hero-content.right-aligned { text-align: right; }
.hero-eyebrow { font-size: 0.68rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; display: block; }
.hero-h1 { font-family: var(--font-heading); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; line-height: 1.1; letter-spacing: 1px; background: linear-gradient(135deg, #fff 25%, var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1.5rem; }
.hero-desc { font-size: 0.85rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.65); max-width: 560px; margin-bottom: 2.5rem; }
.hero-cta { display: inline-block; padding: 0.9rem 2.4rem; border: 1px solid rgba(255,255,255,0.3); color: #fff; font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; }
.hero-cta:hover { background: #fff; color: var(--dark); }

/* ─── SECTION DIVIDER ─── */
.divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent); opacity: 0.25; }

/* ─── CONTENT SECTIONS ─── */
.section { padding: 6rem 4rem; }
.section.dark { background: var(--darker); }
.section.panel { background: var(--panel-bg); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.three-col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; }

/* ─── TEXT ELEMENTS ─── */
.eyebrow { font-size: 0.65rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.section-heading { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 500; letter-spacing: 1px; line-height: 1.2; margin-bottom: 1.5rem; background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.body-text { font-size: 0.83rem; font-weight: 300; line-height: 1.95; color: rgba(255,255,255,0.62); }
.body-text + .body-text { margin-top: 1.2rem; }
.body-text strong { font-weight: 500; color: rgba(255,255,255,0.82); }

/* ─── FEATURE CARDS ─── */
.feature-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 2rem 2rem 2.2rem; position: relative; margin-bottom: 1.5rem; }
.feature-card:last-child { margin-bottom: 0; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%; background: linear-gradient(to bottom, var(--gold), transparent); }
.feature-card h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 500; letter-spacing: 1px; color: #fff; margin-bottom: 0.9rem; }
.feature-card p { font-size: 0.8rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.55); }

/* ─── PULL QUOTE ─── */
.pull-quote { border-left: 2px solid var(--gold); padding: 1.5rem 2rem; margin: 2.5rem 0; background: rgba(201,169,110,0.04); }
.pull-quote p { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 400; font-style: italic; line-height: 1.6; color: rgba(255,255,255,0.8); }

/* ─── VENUE LIST ─── */
.venue-list { list-style: none; margin: 1.5rem 0; }
.venue-list li { font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.6); padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: baseline; gap: 0.8rem; }
.venue-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ─── VIDEO SECTION ─── */
.video-section { padding: 4rem 4rem 3rem; background: var(--darker); }
.video-section .section-inner { text-align: center; }
.video-wrap { max-width: 340px; margin: 0 auto; border-radius: 4px; overflow: hidden; background: #000; box-shadow: 0 12px 48px rgba(0,0,0,0.7); }
.video-wrap video { width: 100%; display: block; }

/* ─── PHOTO STRIP ─── */
.photo-strip-section { padding: 3rem 4rem; background: var(--panel-bg); }
.photo-strip { display: flex; gap: 0.8rem; overflow-x: auto; padding-bottom: 0.5rem; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
.photo-strip::-webkit-scrollbar { height: 3px; }
.photo-strip::-webkit-scrollbar-thumb { background: rgba(201,169,110,0.4); border-radius: 2px; }
.photo-strip img { flex: 0 0 auto; height: 260px; width: auto; object-fit: cover; border-radius: 2px; display: block; }

/* ─── CTA STRIP ─── */
.cta-strip { background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%); border-top: 1px solid rgba(201,169,110,0.2); border-bottom: 1px solid rgba(201,169,110,0.2); padding: 5rem 4rem; text-align: center; }
.cta-strip h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.cta-strip p { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.8; }
.cta-btn { display: inline-block; padding: 1rem 3rem; background: transparent; border: 1px solid var(--gold); color: var(--gold); font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; transition: all 0.3s; }
.cta-btn:hover { background: var(--gold); color: var(--dark); }

/* ─── FOOTER ─── */
footer { background: var(--darker); padding: 2rem 4rem; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-left { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-left .label { font-size: 0.65rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.footer-left a { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.footer-left a:hover { color: #fff; }
.footer-tagline { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.35); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(8,8,8,0.97); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 0.85rem; }
  .hamburger { display: flex; z-index: 1001; }
  .hero-content { padding: 6rem 2rem 4rem; }
  .hero-content.right-aligned { text-align: left; }
  .breadcrumb { padding: 1rem 2rem; }
  .section { padding: 4rem 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .three-col { grid-template-columns: 1fr; }
  .cta-strip { padding: 4rem 2rem; }
  .video-section { padding: 3rem 2rem; }
  .photo-strip-section { padding: 2rem; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem; }
}
