/* Scarlet Dusk Brand */
:root{
  --bg: #0b0b10;
  --panel: #121219;
  --panel-2: #181823;
  --text: #f2f2f2;
  --muted: #a7aab0;
  --brand: #d81b60; /* scarlet pink */
  --brand-2: #ff7aa8;
  --border: #2a2d35;
  --shadow: 0 16px 40px rgba(0,0,0,.35);
}

@media (prefers-color-scheme: light){
  :root{
    --bg: #ffffff;
    --panel: #faf9fb;
    --panel-2: #f1eff4;
    --text: #181a1f;
    --muted: #5e636e;
    --brand: #d81b60;
    --brand-2: #ff7aa8;
    --border: #e7e7ef;
    --shadow: 0 12px 28px rgba(0,0,0,.08);
  }
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, "Noto Sans SC", ui-sans-serif, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "PingFang SC", "Microsoft Yahei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img{ max-width:100%; display:block; border-radius:14px; }
a{ color:inherit; text-decoration:none; }

.container{ width:min(1120px, 92%); margin:0 auto; }

/* Header */
.site-header{
  position: sticky; top:0; z-index:100;
  background: rgba(10,10,16,.55);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.logo{ display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.4px; }
.logo.small .logo-text{ font-size: 14px; }
.logo-mark{ width:28px; height:28px; }
.nav-list{ list-style:none; display:flex; gap:16px; padding:0; margin:0; align-items:center; }
.nav-toggle{ display:none; background:none; border:1px solid var(--border); padding:6px 10px; border-radius:10px; color:var(--text); }
.chip{ background: transparent; border:1px solid var(--border); padding:8px 10px; border-radius:999px; cursor:pointer; }

@media (max-width: 760px){
  .nav-toggle{ display:block; }
  .nav-list{ position:absolute; right:4%; top:58px; flex-direction:column; background:var(--panel-2); border:1px solid var(--border); padding:10px; border-radius:12px; display:none; }
  .nav-list.show{ display:flex; }
}

/* Hero */
.hero{
  position:relative;
  padding: 100px 0 52px;
  background:
    radial-gradient(1100px 520px at 10% -10%, rgba(216,27,96,.35), transparent 60%),
    radial-gradient(1100px 520px at 90% 10%, rgba(255,122,168,.20), transparent 60%);
}
.hero-inner{ text-align:center; }
.hero h1{ font-size: clamp(28px, 4.2vw, 56px); margin:0 0 10px; line-height:1.12; }
.muted{ color: var(--muted); }
.hero-actions{ display:flex; gap:12px; justify-content:center; margin-top:16px; }
.btn{
  display:inline-block; padding:12px 18px; border-radius:12px;
  border:1px solid var(--border); box-shadow: var(--shadow);
  background: var(--panel);
}
.btn.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#fff; border:none;
}
.meta-badges{ display:flex; gap:24px; justify-content:center; margin-top:22px; color:var(--muted); }
.meta-badges strong{ display:block; font-size:22px; color:var(--text); }
.hero-wave{ position:absolute; bottom:-1px; left:0; width:100%; height:120px; fill: var(--bg); }

/* Sections */
.section{ padding: 64px 0; }
.section.alt{ background: var(--panel-2); }
.section h2{ font-size: clamp(22px, 3.2vw, 34px); margin:0 0 18px; }
.section-head{ margin-bottom: 18px; }
.two-col{ display:grid; grid-template-columns: 1.2fr .8fr; gap:24px; align-items:start; }
@media (max-width: 900px){ .two-col{ grid-template-columns: 1fr; } }

/* Cards */
.cards{ display:grid; grid-template-columns: 1fr; gap:16px; }
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
@media (max-width: 980px){ .grid-3{ grid-template-columns: 1fr; } }
.card{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.card .card-body{ padding:16px; }
.card .chips{ display:flex; gap:8px; flex-wrap:wrap; margin:10px 0; }
.card .chip{ border-radius:999px; padding:6px 10px; border:1px solid var(--border); }

/* Tickets */
.ticket-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.ticket{ display:block; border:1px dashed var(--border); border-radius:16px; overflow:hidden; }
.ticket-head{ background: linear-gradient(135deg, var(--brand), var(--brand-2)); color:#fff; padding:12px 14px; font-weight:700; }
.ticket-body{ padding:16px; display:flex; align-items:center; gap:10px; }

/* Gallery */
.gallery{ display:grid; grid-template-columns: repeat(4, 1fr); gap:10px; }
@media (max-width: 1020px){ .gallery{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px){ .gallery{ grid-template-columns: repeat(2, 1fr); } }

/* Form */
.contact-form{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  box-shadow: var(--shadow);
  max-width:720px;
}
.form-row{ display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
input, textarea{
  border:1px solid var(--border); border-radius:10px; padding:10px 12px;
  background: transparent; color: var(--text);
}
input::placeholder, textarea::placeholder{ color: var(--muted); }
.error{ color:#ff6b6b; min-height:18px; }
.form-status{ color: var(--brand-2); min-height:20px; }

/* Footer */
.site-footer{ border-top:1px solid var(--border); }
.footer-inner{ display:flex; gap:20px; justify-content:space-between; padding:20px 0; }
.footer-col{ display:flex; flex-direction:column; gap:8px; }

@media (max-width: 760px){
  .nav-list{ width:max-content; }
  .footer-inner{ flex-direction:column; }
}
