*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #111;
  --gold: #b8952a;
  --gold-light: #d4aa3a;
  --white: #fff;
  --bg: #f8f7f4;
  --card: #fff;
  --gray: #777;
  --border: #e8e4dc;
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', sans-serif; background: var(--bg); color: var(--black); }

/* NAV */
nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 40px; display: flex; justify-content: space-between; align-items: center; height: 64px; position: sticky; top: 0; z-index: 100; }
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links a { color: var(--black); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0 16px; height: 64px; display: flex; align-items: center; border-bottom: 2px solid transparent; transition: border-color 0.15s; font-weight: 500; }
.nav-links a:hover { border-bottom-color: #ddd; }
.nav-links a.active { border-bottom-color: #cc2200; }
.nav-ticket-btn { background: #cc2200 !important; color: var(--white) !important; font-weight: 700; border-bottom: none !important; padding: 0 20px !important; margin-left: 8px; border-radius: 2px; }
.nav-ticket-btn:hover { background: #aa1a00 !important; }

/* HERO — fullscreen */
.hero-full { position: relative; height: calc(100vh - 64px); display: flex; flex-direction: column; overflow: hidden; }
.hero-full-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; filter: brightness(0.55); }
.hero-full-content { position: relative; z-index: 2; padding: 0 40px 40px; margin-top: auto; max-width: 600px; }
.hero-tag { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 12px; font-weight: 500; }
.hero-logo-img { width: 180px; height: auto; display: block; margin-bottom: 16px; }
.hero-sub { font-size: 0.95rem; color: rgba(255,255,255,0.7); font-style: italic; margin-bottom: 24px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 11px 24px; border-radius: 2px; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: background 0.15s, border-color 0.15s; cursor: pointer; border: none; }
.btn-red { background: #cc2200; color: #fff; }
.btn-red:hover { background: #aa1a00; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border: 1.5px solid var(--border); color: var(--black); background: none; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.6); color: #fff; background: none; }
.btn-outline-white:hover { border-color: #fff; }
.hero-full-stats { display: none; }

/* PAGE WRAPPER */
.page { max-width: 1100px; margin: 0 auto; padding: 64px 48px; }
.page-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.page-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 48px; }

/* CONCERTS */
.concert-list { display: flex; flex-direction: column; gap: 16px; }
.concert-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 24px 28px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; transition: border-color 0.15s, box-shadow 0.15s; }
.concert-card:hover { border-color: var(--gold); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.date-block { text-align: center; min-width: 56px; }
.date-day { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.date-month { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); }
.concert-info { flex: 1; min-width: 180px; }
.concert-title { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.concert-venue { font-size: 0.84rem; color: var(--gray); margin-bottom: 8px; }
.concert-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { font-size: 0.7rem; letter-spacing: 0.07em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; background: #f0ece3; color: var(--gray); }
.tag-green { background: #e8f5e9; color: #2e7d32; }
.tag-orange { background: #fff3e0; color: #e65100; }
.tag-red { background: #fce4ec; color: #c62828; }
.concert-right { text-align: right; }
.price { font-size: 1.5rem; font-weight: 900; color: var(--black); }
.price span { font-size: 0.8rem; font-weight: 400; color: var(--gray); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item { aspect-ratio: 4/3; background: #ede8df; border-radius: 6px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.about-text p { font-size: 0.92rem; line-height: 1.8; color: #555; margin-bottom: 14px; }
.members-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.member { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 14px 16px; }
.member-name { font-size: 0.88rem; font-weight: 700; margin-bottom: 3px; }
.member-role { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; }

/* CONTACT */
.contact-inner { max-width: 560px; }
.contact-inner p { font-size: 0.92rem; line-height: 1.8; color: #555; margin-bottom: 16px; }
.contact-email { font-size: 1.1rem; color: var(--gold); text-decoration: none; font-weight: 700; }
.contact-email:hover { color: var(--gold-light); }

/* FOOTER */
footer { background: var(--white); border-top: 1px solid var(--border); padding: 32px 48px; text-align: center; color: var(--gray); font-size: 0.78rem; }
.footer-links { display: flex; gap: 20px; justify-content: center; margin-bottom: 12px; flex-wrap: wrap; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.06em; }
.footer-links a:hover { color: var(--gold); }

/* MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: 10px; padding: 36px; max-width: 420px; width: 100%; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.modal h3 { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.modal-sub { color: var(--gray); font-size: 0.82rem; margin-bottom: 24px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.form-group input, .form-group select { width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 5px; padding: 11px 13px; color: var(--black); font-size: 0.9rem; outline: none; transition: border-color 0.15s; }
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.modal-total { background: #f8f4ec; border-radius: 6px; padding: 14px 16px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }
.modal-total-label { font-size: 0.8rem; color: var(--gray); }
.modal-total-amount { font-size: 1.3rem; font-weight: 900; color: var(--gold); }
.modal-actions { display: flex; gap: 10px; }
.btn-cancel { flex: 1; background: none; border: 1px solid var(--border); color: var(--gray); padding: 12px; border-radius: 5px; cursor: pointer; font-size: 0.85rem; transition: border-color 0.15s; }
.btn-cancel:hover { border-color: #aaa; }
.btn-pay { flex: 2; background: var(--gold); color: var(--white); border: none; padding: 12px; border-radius: 5px; font-weight: 800; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background 0.15s; }
.btn-pay:hover { background: var(--gold-light); }
.btn-pay:disabled { background: #ccc; color: #999; cursor: not-allowed; }
.stripe-note { text-align: center; margin-top: 12px; font-size: 0.7rem; color: var(--gray); }

@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links a:not(.nav-ticket-btn) { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding: 48px 20px; }
  .hero-image { display: none; }
  .page { padding: 48px 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .members-grid { grid-template-columns: 1fr 1fr; }
  .concert-card { flex-direction: column; align-items: flex-start; }
  .concert-right { text-align: left; }
  footer { padding: 24px 20px; }
}
