/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #f5f0e6;
  --cream-2: #ede5d3;
  --dark: #15161b;
  --dark-2: #1d1f26;
  --gold: #c9a04e;
  --gold-light: #ddba71;
  --text-dark: #1c1c1c;
  --text-muted: #6b6558;
  --text-light: #f5f0e6;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', Arial, sans-serif;
  --script: 'Dancing Script', cursive;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(245, 240, 230, 0.55);
}
.btn-outline:hover {
  background: rgba(245, 240, 230, 0.12);
  border-color: var(--text-light);
}

.btn-sm { padding: 10px 18px; font-size: 12px; }

.link-arrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.link-arrow:hover { border-color: var(--gold); }
.link-arrow.small { font-size: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}

.logo {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo span {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
  margin-top: 4px;
}

.main-nav {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--text-dark);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  border-color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.social-icon {
  color: var(--text-dark);
  transition: color 0.2s ease;
}
.social-icon:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--text-light);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,8,6,0.78) 0%, rgba(10,8,6,0.42) 42%, rgba(10,8,6,0.15) 65%, rgba(10,8,6,0.35) 100%),
    linear-gradient(0deg, rgba(10,8,6,0.5) 0%, rgba(10,8,6,0) 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.overline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: 1px;
  max-width: 820px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.hero-text {
  max-width: 480px;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.9);
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-script {
  position: absolute;
  right: 6%;
  bottom: 14%;
  z-index: 1;
  font-family: var(--script);
  font-size: 30px;
  line-height: 1.25;
  color: var(--text-light);
  text-align: right;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* ---------- Concerts ---------- */
.concerts {
  background: var(--cream);
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 20px;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 1px;
}

.concert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.concert-card {
  position: relative;
  aspect-ratio: 3 / 3.6;
  border-radius: 6px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.concert-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.concert-card:hover img { transform: scale(1.06); }

.concert-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,8,6,0.92) 0%, rgba(10,8,6,0.35) 45%, rgba(10,8,6,0.08) 62%, rgba(10,8,6,0.4) 100%);
}

.concert-date {
  position: relative;
  z-index: 1;
  padding: 18px 18px 0;
  color: var(--gold-light);
  font-family: var(--serif);
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}
.concert-date .day { font-size: 30px; font-weight: 800; line-height: 1; }
.concert-date .month { font-size: 13px; font-weight: 700; letter-spacing: 2px; }

.concert-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 18px;
  color: var(--text-light);
}

.weekday {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(245,240,230,0.7);
  margin-bottom: 6px;
}

.concert-info h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.concert-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.concert-meta .tags { color: var(--gold-light); }
.concert-meta .time { color: rgba(245,240,230,0.85); }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--text-light);
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feature-card:hover img { transform: scale(1.06); }

.feature-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,6,4,0.85) 0%, rgba(8,6,4,0.15) 55%, rgba(8,6,4,0.35) 100%);
}

.feature-content {
  position: relative;
  z-index: 1;
  padding: 34px;
}

.feature-content h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.feature-sub {
  font-size: 14px;
  color: rgba(245,240,230,0.85);
  margin-bottom: 20px;
  max-width: 320px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream-2);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  padding: 56px 32px;
}

.footer-logo {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer-logo span {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
  margin-top: 4px;
}

.footer-col { font-size: 13.5px; }
.footer-icon-line {
  margin-bottom: 8px;
  color: var(--text-dark);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social .social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social .social-icon:hover {
  border-color: var(--gold);
}

.footer-script {
  font-family: var(--script);
  font-size: 26px;
  color: var(--text-dark);
  line-height: 1.2;
  margin-left: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 32px;
  font-size: 11.5px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .concert-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .footer-script { margin-left: 0; }
}

@media (max-width: 860px) {
  .main-nav, .header-actions .btn-gold, .header-actions .social-icon {
    display: none;
  }
  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 32px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 16px 24px rgba(0,0,0,0.06);
  }

  .header-actions { gap: 12px; }
  .header-actions .btn-gold { display: none; }

  .hero-script { display: none; }
  .hero-title { font-size: clamp(34px, 9vw, 56px); }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .concert-grid { grid-template-columns: 1fr; }
  .header-inner { height: 68px; }
  .logo { font-size: 18px; }
  .hero { min-height: 100vh; }
  .footer-top { padding: 40px 20px; }
  .footer-bottom-inner { padding: 16px 20px; }
}
