/* ============================================================
   Skyline Compass NYC - Editorial White Page Stylesheet
   Art Deco inspired palette: warm cream, charcoal, bronze, gold
   ============================================================ */

:root {
  --bg: #faf6ef;
  --bg-2: #1a1a1a;
  --bg-3: #f1ead9;
  --card: #ffffff;
  --card-2: #f6f0e0;
  --line: #e2d7be;
  --line-2: #d4c5a3;
  --primary: #8c5a2b;
  --primary-2: #6f4423;
  --accent: #c9a14a;
  --gold: #b8862a;
  --text: #1f1a14;
  --muted: #6a5d4a;
  --muted-2: #8c7e64;
  --shadow: 0 1px 3px rgba(31, 26, 20, 0.06), 0 8px 24px rgba(31, 26, 20, 0.04);
  --shadow-lg: 0 4px 12px rgba(31, 26, 20, 0.08), 0 20px 50px rgba(31, 26, 20, 0.10);
  --radius: 4px;
  --radius-lg: 8px;
  --serif: "Playfair Display", "Georgia", "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1240px;
  --maxw-narrow: 880px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--primary-2); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  color: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-links a:hover { color: var(--primary); }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--sans);
  transition: border-color 0.2s, background 0.2s;
}

.lang-toggle:hover { border-color: var(--primary); background: var(--card); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: var(--bg-2);
  color: #fff;
  border-color: var(--bg-2);
}

.btn-primary:hover {
  background: var(--primary-2);
  border-color: var(--primary-2);
  color: #fff;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-secondary:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
}

.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: 5rem 0 5.5rem;
  background: var(--bg);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 161, 74, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-badge svg { color: var(--primary); flex-shrink: 0; }

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 161, 74, 0.4);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.hero-image-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  background: rgba(26, 26, 26, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */

section { padding: 5rem 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-head h2 { margin-top: 0.5rem; margin-bottom: 1rem; }

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-dark {
  background: var(--bg-2);
  color: #f1ead9;
}

.section-dark h2,
.section-dark h3 { color: #fff; }

.section-dark .eyebrow { color: var(--accent); }

.section-dark p { color: #b8a988; }

.section-tinted { background: var(--bg-3); }

/* ============================================================
   INTRO
   ============================================================ */

.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.intro-stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: left;
}

.intro-stat-value {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.intro-stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   DECKS GRID
   ============================================================ */

.decks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.deck-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.deck-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-2);
}

.deck-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.deck-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.deck-card:hover .deck-image img { transform: scale(1.04); }

.deck-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(26, 26, 26, 0.85);
  color: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.deck-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.deck-body h3 { margin-top: 0; margin-bottom: 0.75rem; }

.deck-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.deck-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.deck-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}

.deck-features svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.deck-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  align-self: flex-start;
}

.deck-link:hover { gap: 0.6rem; }

/* ============================================================
   TICKETS
   ============================================================ */

.tickets-intro {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ticket-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.ticket-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.ticket-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--bg-3);
  color: var(--primary);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}

.ticket-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.ticket-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   EVENTS
   ============================================================ */

.events-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}

.event-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1a1a;
  color: #f1ead9;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.event-card.featured {
  grid-row: span 2;
  min-height: 100%;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.event-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.event-body {
  position: relative;
  z-index: 2;
}

.event-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.event-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 0 0.7rem;
  line-height: 1.25;
}

.event-card.featured h3 { font-size: 1.7rem; }

.event-card p {
  color: #d8c9a5;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   VISIT (PRACTICAL INFO)
   ============================================================ */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.visit-item {
  background: var(--card);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
}

.visit-item h3 {
  margin: 0 0 0.7rem;
  font-size: 1.1rem;
}

.visit-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   ARTICLES
   ============================================================ */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.article-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.article-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-image img { transform: scale(1.05); }

.article-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.article-body h3 {
  font-size: 1.15rem;
  margin: 0 0 0.7rem;
  line-height: 1.3;
}

.article-body p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.article-read {
  font-size: 0.8rem;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.open { border-color: var(--primary); }

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.4;
}

.faq-q:hover { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a { max-height: 400px; }

.faq-a-inner {
  padding: 0 1.5rem 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

/* ============================================================
   LEAD CAPTURE / NEWSLETTER
   ============================================================ */

.lead {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2218 100%);
  color: #f1ead9;
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lead::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 161, 74, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.lead h2 { color: #fff; }
.lead p { color: #c2b48f; max-width: 600px; margin: 0 auto 2rem; }

.lead-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 600px;
  margin: 0 auto 1rem;
  justify-content: center;
}

.lead-input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 161, 74, 0.3);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.lead-input::placeholder { color: #8a7d61; }

.lead-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

.lead-form .btn-primary {
  background: var(--accent);
  color: #1a1a1a;
  border-color: var(--accent);
  font-weight: 700;
}

.lead-form .btn-primary:hover {
  background: #d8b25c;
  border-color: #d8b25c;
}

.lead-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #a89a7a;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.5;
}

.lead-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.lead-success {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(201, 161, 74, 0.18);
  border: 1px solid rgba(201, 161, 74, 0.4);
  border-radius: var(--radius);
  color: #f1ead9;
  font-size: 0.95rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

.lead-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #14110d;
  color: #b8a988;
  padding: 4rem 0 2rem;
  border-top: 1px solid #2a241c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-tagline {
  color: #8a7d61;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 320px;
}

.footer-address {
  color: #6a5d4a;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
  margin: 0 0 1.1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  color: #b8a988;
  font-size: 0.9rem;
}

.footer-col a:hover { color: var(--accent); }

.footer-contact-link {
  color: var(--accent);
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #2a241c;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: #6a5d4a;
}

.footer-copy { color: #8a7d61; }

.footer-disclaimer {
  flex: 1;
  min-width: 280px;
  max-width: 760px;
  line-height: 1.6;
  color: #6a5d4a;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-hero {
  background: var(--bg-3);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0 0.75rem;
}

.legal-hero p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.legal-body {
  padding: 4rem 0 5rem;
  background: var(--bg);
}

.legal-content {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  padding-top: 0.5rem;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.75rem 0 0.6rem;
  color: var(--primary-2);
  font-family: var(--sans);
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 1.4rem;
  margin: 0 0 1.25rem;
}

.legal-content ul li { margin-bottom: 0.45rem; }

.legal-content a { color: var(--primary); text-decoration: underline; }

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.legal-meta strong { color: var(--text); font-weight: 600; margin-right: 0.4rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .hero { padding: 3.5rem 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { aspect-ratio: 16/10; order: -1; }
  .decks-grid { grid-template-columns: 1fr; }
  .tickets-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .event-card.featured { grid-column: span 2; grid-row: auto; min-height: 320px; }
  .visit-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  section { padding: 4rem 0; }
  .lead { padding: 2.5rem 1.5rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    border-bottom: 1px solid var(--line);
    gap: 1rem;
  }
  .nav-toggle { display: inline-flex; }
  .nav-right .btn { display: none; }
  .hero { padding: 2.5rem 0; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .tickets-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .event-card.featured { grid-column: auto; }
  .articles-grid { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .intro-stat { padding: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .lead-form { flex-direction: column; }
  .lead-form .btn { width: 100%; }
  .legal-hero { padding: 3rem 0 2rem; }
  .legal-body { padding: 3rem 0 4rem; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  section { padding: 3rem 0; }
}
