:root {
  --ink: #151515;
  --muted: #65615c;
  --paper: #f5f0e8;
  --surface: #fffaf2;
  --line: #ddd4c7;
  --charcoal: #20201e;
  --orange: #ee7d3b;
  --green: #4d6a58;
  --blue: #2f6075;
  --gold: #d5b56c;
  --shadow: 0 24px 70px rgba(21, 21, 21, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 70px;
  padding: 12px clamp(18px, 5rem, 66px);
  color: #fff;
  background: rgba(21, 21, 21, .9);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}
.brand, nav, .header-actions, .hero-actions { display: flex; align-items: center; }
.brand { gap: 10px; min-width: 226px; text-decoration: none; }
.brand img { width: 42px; height: 30px; object-fit: contain; }
.brand strong, .brand small { display: block; }
.brand small { color: rgba(255,255,255,.68); font-size: .78rem; }
nav { gap: 4px; }
nav a, .lang-toggle, .header-cta {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  background: transparent;
}
.lang-toggle, .header-cta { border-color: rgba(255,255,255,.2); color: #fff; }
.header-cta { background: var(--orange); border-color: var(--orange); font-weight: 850; }
.header-actions { gap: 8px; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .38fr);
  align-items: end;
  gap: 24px;
  min-height: calc(100svh - 128px);
  padding: clamp(70px, 8rem, 118px) clamp(18px, 5rem, 66px) 42px;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21,21,21,.88), rgba(21,21,21,.44) 52%, rgba(21,21,21,.72)),
    linear-gradient(0deg, rgba(21,21,21,.82), rgba(21,21,21,.1) 44%),
    url("assets/images/hero-concert.jpg") center / cover no-repeat;
}
.hero-content, .hero-panel { position: relative; z-index: 1; }
.hero-content { max-width: 860px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.8rem, 5.8rem);
  line-height: .94;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.5rem, 3.5rem);
  line-height: 1.03;
  letter-spacing: 0;
}
h3 { font-size: 1.55rem; line-height: 1.16; }
.hero p { max-width: 720px; color: rgba(255,255,255,.82); font-size: 1.12rem; }
.hero-actions { flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
}
.button.primary { color: #fff; background: var(--orange); border-color: var(--orange); }
.button.secondary { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); }
.hero-panel {
  align-self: end;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(21,21,21,.46);
  box-shadow: var(--shadow);
}
.hero-panel span, .hero-panel small { display: block; color: rgba(255,255,255,.72); }
.hero-panel strong { display: block; margin: 8px 0; font-size: 2rem; color: #fff; }

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5rem, 66px);
  transform: translateY(-1px);
}
.quick-strip a {
  display: block;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: var(--charcoal);
}
.quick-strip a:first-child { border-radius: 0 0 0 8px; }
.quick-strip a:last-child { border-radius: 0 0 8px 0; }
.quick-strip span { display: block; color: #d7c8b8; font-size: .78rem; font-weight: 900; text-transform: uppercase; }
.quick-strip strong { display: block; overflow-wrap: anywhere; }

.section { padding: clamp(58px, 7rem, 112px) clamp(18px, 5rem, 66px); }
.intro, .proof, .planner, .contact {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .72fr);
  gap: clamp(24px, 5rem, 72px);
  align-items: start;
}
.intro p, .section-head p, .proof-copy p, .planner-copy p { color: var(--muted); font-size: 1.08rem; }
.section-head { max-width: 860px; margin-bottom: 28px; }
.section-head.compact { max-width: 780px; }

.space-layout {
  display: grid;
  grid-template-columns: minmax(290px, .44fr) minmax(0, 1fr);
  gap: 16px;
}
.space-tabs { display: grid; gap: 10px; }
.space-tab {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 12px;
  min-height: 88px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: left;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}
.space-tab span { grid-row: span 2; color: var(--orange); font-weight: 900; }
.space-tab small { color: var(--muted); }
.space-tab.active { color: #fff; background: var(--charcoal); border-color: var(--charcoal); }
.space-tab.active small { color: rgba(255,255,255,.72); }
.space-card {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.space-card img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.space-card > div { padding: clamp(20px, 3rem, 42px); }
.space-card dl { display: grid; gap: 12px; margin: 24px 0 0; }
.space-card dl div { padding: 14px; border-radius: 8px; background: #eee7db; }
dt { color: var(--muted); font-size: .78rem; font-weight: 900; text-transform: uppercase; }
dd { margin: 4px 0 0; }

.image-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  padding: 0 clamp(18px, 5rem, 66px);
}
.image-band img { width: 100%; height: 340px; object-fit: cover; border-radius: 8px; }

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.event-chip {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: left;
  background: var(--surface);
  cursor: pointer;
}
.event-chip strong { font-size: 1.1rem; }
.event-chip span { color: var(--muted); }
.event-chip.active { color: #fff; background: var(--green); border-color: var(--green); }
.event-chip.active span { color: rgba(255,255,255,.78); }

.proof { color: #fff; background: var(--charcoal); }
.proof .eyebrow { color: var(--gold); }
.proof-copy p { color: rgba(255,255,255,.74); }
.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.proof-cards article {
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.proof-cards strong { display: block; margin-bottom: 10px; font-size: 2rem; color: #fff; }
.proof-cards span { color: rgba(255,255,255,.72); }

.planner { background: var(--green); color: #fff; }
.planner .eyebrow { color: #f2d391; }
.planner-copy p { color: rgba(255,255,255,.78); }
.planner-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3rem, 36px);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}
.planner-form label { display: grid; gap: 7px; color: var(--muted); font-weight: 850; }
.planner-form input, .planner-form select, .planner-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
}
.planner-form small { color: var(--muted); }

.contact { background: var(--surface); }
.contact dl {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.contact dl div { padding-bottom: 10px; border-bottom: 1px solid var(--line); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5rem, 66px) 92px;
  color: #fff;
  background: var(--charcoal);
}
.mobile-bar { display: none; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero, .intro, .proof, .planner, .contact, .space-layout, .space-card { grid-template-columns: 1fr; }
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.35rem; }
  .quick-strip, .event-grid, .proof-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .image-band { grid-template-columns: 1fr; }
  .space-card img { min-height: 320px; }
}

@media (max-width: 640px) {
  .site-header { padding: 10px 14px; }
  .brand { min-width: 0; }
  .brand small, .header-cta { display: none; }
  .hero { min-height: calc(100svh - 112px); padding: 58px 14px 34px; }
  h1 { font-size: 2.48rem; }
  h2 { font-size: 1.95rem; }
  .hero p, .intro p, .section-head p { font-size: 1rem; }
  .hero-actions { display: grid; }
  .quick-strip, .event-grid, .proof-cards { grid-template-columns: 1fr; }
  .quick-strip, .section, .image-band { padding-left: 14px; padding-right: 14px; }
  .quick-strip a, .quick-strip a:first-child, .quick-strip a:last-child { border-radius: 8px; }
  .image-band img { height: auto; aspect-ratio: 4 / 3; }
  .site-footer { display: block; }
  .mobile-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 242, .96);
    box-shadow: 0 16px 34px rgba(21,21,21,.2);
  }
  .mobile-bar a {
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 850;
    background: var(--charcoal);
  }
  .mobile-bar a:last-child { background: var(--orange); }
}
