/* ============================================================
   HISTRION – Shared Stylesheet
   Fonts: Rubik (headings) + Poppins (body/ui)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Poppins:wght@300;400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #060213;
  --bg-2:         #0c0720;
  --bg-card:      #100b26;
  --bg-card-alt:  #16103a;
  --accent:       #AC81FA;
  --accent-2:     #FF4573;
  --gradient:     linear-gradient(143deg, #AC81FA 0%, #FF4573 100%);
  --gradient-h:   linear-gradient(90deg, #06021380 0%, #261B47C0 100%);
  --logo-purple:  #605BE5;
  --text:         #FFFFFF;
  --text-2:       #C4BAD8;
  --text-muted:   #7A7090;
  --border:       rgba(172, 129, 250, 0.18);
  --border-2:     rgba(172, 129, 250, 0.08);
  --shadow:       0 8px 32px rgba(6, 2, 19, 0.6);
  --radius:       6px;
  --radius-lg:    12px;
  --header-h:     72px;
  --topbar-h:     38px;
  --font-body:    'Poppins', sans-serif;
  --font-head:    'Rubik', sans-serif;
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

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

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(172, 129, 250, 0.35);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(172, 129, 250, 0.12);
  color: var(--accent);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(172, 129, 250, 0.22);
  border-color: var(--accent);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 12px;
}

/* ── Section Titles ───────────────────────────────────────── */
.section-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gradient);
  margin-top: 8px;
  border-radius: 2px;
}
.section-title.center {
  display: block;
  text-align: center;
}
.section-title.center::after {
  margin: 8px auto 0;
}

section { padding: 60px 0; }

/* ── TOP BAR ──────────────────────────────────────────────── */
.topbar {
  height: var(--topbar-h);
  background: rgba(6, 2, 19, 0.95);
  border-bottom: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 13px;
  transition: all var(--transition);
}
.topbar__social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(172, 129, 250, 0.1);
}
.topbar__social {
  display: flex;
  gap: 6px;
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(6, 2, 19, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(6, 2, 19, 0.8);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo__img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(172, 129, 250, 0.3));
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text);
}

.logo__sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 3px;
}

/* Main nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-2);
  border-radius: var(--radius);
  transition: all var(--transition);
  text-transform: uppercase;
}

.nav__link:hover,
.nav__item.active > .nav__link {
  color: var(--accent);
  background: rgba(172, 129, 250, 0.08);
}

.nav__link svg { opacity: 0.6; transition: transform var(--transition); }
.nav__item:hover > .nav__link svg { transform: rotate(180deg); opacity: 1; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: #13092e;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.22s ease;
  z-index: 100;
  overflow: hidden;
}

.nav__item:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-2);
  border-bottom: 1px solid rgba(172, 129, 250, 0.06);
  transition: all var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover {
  background: rgba(172, 129, 250, 0.12);
  color: var(--accent);
  padding-left: 22px;
}

/* active underline indicator */
.nav__link.current {
  color: var(--accent);
}
.nav__link.current::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  margin-top: calc(var(--topbar-h) + var(--header-h));
}

.hero__slides {
  position: relative;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__slide.active { opacity: 1; }

.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero__slide.active .hero__slide-bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 2, 19, 0.82) 0%,
    rgba(38, 27, 71, 0.65) 50%,
    rgba(6, 2, 19, 0.55) 100%
  );
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.hero__text {
  max-width: 680px;
}

.hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(172, 129, 250, 0.15);
  border: 1px solid rgba(172, 129, 250, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(6, 2, 19, 0.6);
}

.hero__subtitle {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero nav dots */
.hero__dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.hero__dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Hero prev/next */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(172, 129, 250, 0.15);
  border: 1px solid var(--border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 18px;
}
.hero__arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }

/* ── SCHEDULE SECTION ─────────────────────────────────────── */
.schedule {
  background: var(--bg);
}

.schedule__group { margin-bottom: 48px; }
.schedule__group-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-2);
}

/* Show card (schedule list item) */
.show-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
  transition: all var(--transition);
}
.show-card:hover {
  border-color: var(--border);
  background: var(--bg-card-alt);
  transform: translateX(3px);
  box-shadow: var(--shadow);
}

.show-card__thumb {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
}
.show-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.show-card:hover .show-card__thumb img {
  transform: scale(1.06);
}

.show-card__body {
  flex: 1;
  padding: 12px 20px;
  min-width: 0;
}

.show-card__author {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.show-card__title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.show-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.show-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-2);
}

.show-card__meta-item svg {
  color: var(--accent);
  opacity: 0.8;
  flex-shrink: 0;
}

.show-card__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 16px;
  flex-shrink: 0;
}

/* ── PREDSTAVE GRID ───────────────────────────────────────── */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.show-poster {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  transition: all var(--transition);
  cursor: pointer;
}
.show-poster:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(6, 2, 19, 0.7);
  border-color: var(--border);
}

.show-poster__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.show-poster__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.show-poster:hover .show-poster__img img {
  transform: scale(1.06);
}

.show-poster__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,2,19,0.95) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
}
.show-poster:hover .show-poster__overlay { opacity: 1; }

.show-poster__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--gradient);
  color: #fff;
}

.show-poster__info {
  padding: 14px 16px;
}
.show-poster__author {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.show-poster__title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* ── NEWS CARDS ───────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.news-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.news-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card__img img {
  transform: scale(1.05);
}

.news-card__body {
  padding: 20px;
}
.news-card__title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.35;
}
.news-card__excerpt {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-card__link::after {
  content: '→';
  transition: transform var(--transition);
}
.news-card:hover .news-card__link::after {
  transform: translateX(4px);
}

/* ── SPONSORS ─────────────────────────────────────────────── */
.sponsors {
  background: var(--bg-2);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 40px 0;
}

.sponsors__label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.sponsors__track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.sponsors__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.5);
  transition: all var(--transition);
  opacity: 0.6;
}
.sponsors__logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #050110;
  border-top: 1px solid var(--border-2);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-2);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__logo img {
  height: 48px;
  width: auto;
}
.footer__logo-text { }
.footer__logo-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
}
.footer__logo-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(172, 129, 250, 0.1);
}

.footer__col-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.footer__links { }
.footer__links li { margin-bottom: 8px; }
.footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__links a::before {
  content: '›';
  color: var(--accent);
  font-size: 16px;
}
.footer__links a:hover { color: var(--text); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer__contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 12px;
  color: var(--text-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a { color: var(--text-muted); }
.footer__bottom-links a:hover { color: var(--accent); }

/* ── INNER PAGE HEADER ────────────────────────────────────── */
.page-hero {
  margin-top: calc(var(--topbar-h) + var(--header-h));
  padding: 60px 0 50px;
  background: linear-gradient(135deg, #0d0720 0%, #060213 100%);
  border-bottom: 1px solid var(--border-2);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(172,129,250,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.page-hero__breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero__breadcrumb a { color: var(--text-muted); }
.page-hero__breadcrumb a:hover { color: var(--accent); }
.page-hero__breadcrumb span { color: var(--accent); }

/* ── PRICE PAGE ───────────────────────────────────────────── */
.price-list { }

.price-show {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 12px;
  transition: all var(--transition);
}
.price-show:hover {
  border-color: var(--border);
  background: var(--bg-card-alt);
}

.price-show__name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-2);
}

.price-show__rows { display: flex; flex-direction: column; gap: 6px; }

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-2);
}
.price-row__label { flex: 1; }
.price-row__amount {
  font-weight: 600;
  color: var(--accent);
  font-size: 15px;
}

.price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

.policy-block {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 16px;
}
.policy-block h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.policy-block p {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 10px;
  line-height: 1.65;
}
.policy-block p:last-child { margin-bottom: 0; }
.policy-block strong { color: var(--text); }
.policy-block a { color: var(--accent); text-decoration: underline; }

/* ── ABOUT / TEXT PAGES ───────────────────────────────────── */
.content-page { padding: 60px 0; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.content-body p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}
.content-body h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 16px;
}
.content-body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin: 24px 0 12px;
}

.content-aside {
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 24px);
}

.aside-nav {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.aside-nav__title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-2);
}
.aside-nav__links a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(172,129,250,0.05);
  transition: all var(--transition);
}
.aside-nav__links a:last-child { border-bottom: none; }
.aside-nav__links a:hover,
.aside-nav__links a.active {
  color: var(--text);
  background: rgba(172,129,250,0.08);
  padding-left: 28px;
}
.aside-nav__links a.active { color: var(--accent); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-2);
}
.contact-info__item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(172,129,250,0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 16px;
}

.contact-info__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 14px;
  color: var(--text);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-2);
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85);
}

/* ── UTILITIES ────────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-24 { margin-top: 24px; }

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
