:root {
  color-scheme: dark;
  --bg: #07070d;
  --bg-2: #0d0d18;
  --panel: rgba(255,255,255,.075);
  --panel-strong: rgba(255,255,255,.12);
  --text: #f8f7ff;
  --muted: #b9b8c9;
  --line: rgba(255,255,255,.16);
  --cyan: #00ffe1;
  --violet: #8b5cff;
  --magenta: #ff3fb4;
  --gold: #ffbf42;
  --radius: 26px;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --max: 1180px;
  --soundcloud: #ff5500;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(0,255,225,.14), transparent 30rem),
    radial-gradient(circle at 90% 0%, rgba(255,63,180,.15), transparent 28rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 75%);
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.section-dark { background: linear-gradient(180deg, rgba(10,10,20,.9), rgba(6,6,11,.96)); }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--cyan);
  color: #000;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 42px);
  z-index: 50;
  transition: background .25s ease, border .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(5,5,10,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 900; letter-spacing: -.02em; text-transform: uppercase; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 55%, var(--gold));
  color: #05050a;
  box-shadow: 0 0 30px rgba(0,255,225,.25);
  font-weight: 950;
}
.site-nav { display: flex; gap: .35rem; align-items: center; }
.site-nav a {
  color: rgba(248,247,255,.82);
  padding: .68rem .82rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .94rem;
}
.site-nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav-cta { background: rgba(255,255,255,.12); border: 1px solid var(--line); }
.nav-toggle { display: none; background: transparent; border: 0; width: 44px; height: 44px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; margin: 6px 0; background: #fff; border-radius: 999px; }

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 96px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,11,.95) 0%, rgba(5,5,11,.72) 48%, rgba(5,5,11,.38) 100%),
    linear-gradient(0deg, rgba(5,5,11,.98), transparent 45%),
    url('../images/hero-dj.jpg') center / cover no-repeat;
  transform: scale(1.03);
}
.hero-noise {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 44%, rgba(0,255,225,.19), transparent 17rem),
    radial-gradient(circle at 83% 12%, rgba(255,63,180,.22), transparent 19rem);
  mix-blend-mode: screen;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: .78rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(4.4rem, 16vw, 12.5rem);
  line-height: .78;
  letter-spacing: -.09em;
  text-transform: uppercase;
  text-shadow: 0 0 70px rgba(139,92,255,.25);
}
.hero-lead {
  margin: 1.8rem 0 0;
  max-width: 720px;
  color: rgba(248,247,255,.88);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}
.hero-actions, .festival-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; align-items: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #05050a;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  box-shadow: 0 18px 45px rgba(0,255,225,.18);
}
.button-ghost {
  border-color: rgba(255,255,255,.23);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.trust-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.45rem; color: var(--muted); font-weight: 700; }
.trust-row span {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: .45rem .7rem;
  background: rgba(255,255,255,.055);
}
.hero-card {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-card img { height: 430px; width: 100%; object-fit: cover; border-radius: 19px; }
.hero-card div { padding: 1.15rem .5rem .4rem; }
.hero-card strong { display: block; font-size: 1.15rem; }
.hero-card p { margin: .5rem 0 0; color: var(--muted); }

.stats-wrap { margin-top: -62px; position: relative; z-index: 3; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.stat-card {
  min-height: 146px;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(15,15,27,.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0,0,0,.25);
}
.stat-kicker { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 900; }
.stat-card strong { display: block; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1; margin: .55rem 0 .25rem; letter-spacing: -.06em; }
.stat-card span:last-child { color: rgba(248,247,255,.82); }

.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(38px, 6vw, 86px); }
.align-center { align-items: center; }
.section-heading { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
h2 { font-size: clamp(2.25rem, 6vw, 4.8rem); line-height: .95; letter-spacing: -.07em; margin: 0 0 1.25rem; }
h3 { margin: 0 0 .8rem; font-size: 1.35rem; line-height: 1.15; letter-spacing: -.04em; }
.section-copy p, .section-heading p, .festival-copy p, .booking-copy p { color: var(--muted); font-size: 1.05rem; }
.portrait-stack { position: relative; min-height: 620px; }
.portrait-main {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
}
.portrait-main img { width: 100%; height: 620px; object-fit: cover; object-position: center top; filter: saturate(.95) contrast(1.05); }
.portrait-mini {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: min(240px, 46%);
  margin: 0;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(16px);
}
.portrait-mini img { border-radius: 15px; height: 270px; width: 100%; object-fit: cover; filter: sepia(.1) contrast(1.05); }
.portrait-mini figcaption { color: var(--muted); font-size: .82rem; padding: .65rem .25rem .1rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.55rem; }
.tag-list span {
  padding: .55rem .75rem;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
}

.services-section { background: #0a0a12; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.service-card {
  position: relative;
  min-height: 310px;
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045));
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -85px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,255,.35), transparent 70%);
}
.service-number { display: inline-block; color: var(--cyan); font-weight: 900; margin-bottom: 3.5rem; }
.service-card p { color: var(--muted); margin: 0; }

.festival-section { overflow: hidden; }
.festival-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 35%, rgba(0,255,225,.16), transparent 26rem), radial-gradient(circle at 90% 75%, rgba(255,191,66,.12), transparent 24rem);
  pointer-events: none;
}
.festival-card {
  position: relative;
  padding: 1rem;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.festival-logo {
  position: absolute;
  left: 2rem;
  top: 2rem;
  z-index: 2;
  width: min(380px, 72%);
  padding: .8rem;
  border-radius: 18px;
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(10px);
}
.festival-photo { width: 100%; height: 520px; object-fit: cover; border-radius: 24px; filter: saturate(1.13) contrast(1.03); }
.text-link { font-weight: 900; color: var(--cyan); }
.text-link:hover { text-decoration: underline; }


.music-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,85,0,.16), transparent 28rem),
    radial-gradient(circle at 82% 35%, rgba(0,255,225,.14), transparent 30rem),
    linear-gradient(180deg, #07070d 0%, #0d0d18 100%);
  overflow: hidden;
}
.music-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(255,255,255,.035) 7% 7.25%, transparent 7.25% 14%),
    linear-gradient(180deg, rgba(255,255,255,.055), transparent 34%);
  background-size: 160px 100%, 100% 100%;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.music-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}
.music-copy p { color: var(--muted); font-size: 1.05rem; }
.sound-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.5rem;
}
.sound-badges span {
  padding: .55rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.075);
  font-weight: 800;
  color: rgba(248,247,255,.9);
}
.music-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; align-items: center; }
.soundcloud-card {
  position: relative;
  padding: 1rem;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.17);
  background:
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.055)),
    rgba(0,0,0,.25);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.soundcloud-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,85,0,.35), transparent 68%);
  pointer-events: none;
}
.soundcloud-card-top {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .2rem .15rem .9rem;
  color: rgba(248,247,255,.9);
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0,255,225,.75);
}
.soundcloud-player {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0,0,0,.35);
}
.soundcloud-note {
  position: relative;
  z-index: 1;
  margin: .85rem .25rem .1rem;
  color: var(--muted);
  font-size: .92rem;
}
.music-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  opacity: .32;
  pointer-events: none;
}
.music-orb-one { width: 250px; height: 250px; left: -80px; top: 16%; background: var(--soundcloud); }
.music-orb-two { width: 320px; height: 320px; right: -120px; bottom: 8%; background: var(--cyan); }


.social-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(24,119,242,.2), transparent 24rem),
    radial-gradient(circle at 88% 75%, rgba(139,92,255,.18), transparent 26rem),
    linear-gradient(180deg, #0a0a14 0%, #06060c 100%);
}
.social-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/restaurant-setup.jpg') center / cover no-repeat;
  opacity: .1;
  filter: saturate(1.15) contrast(1.08);
  pointer-events: none;
}
.social-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: stretch;
}
.social-card,
.social-side {
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border-radius: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.social-card { padding: clamp(1.4rem, 4vw, 3rem); }
.social-card p,
.social-side p { color: var(--muted); font-size: 1.04rem; }
.social-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
  background: rgba(24,119,242,.22);
  border: 1px solid rgba(255,255,255,.16);
  padding: .5rem .75rem;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
  margin-bottom: 1.15rem;
}
.social-kicker::before {
  content: "f";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
}
.social-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; align-items: center; }
.social-side {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
}
.social-side::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -120px;
  bottom: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,119,242,.42), transparent 68%);
  pointer-events: none;
}
.social-side strong { display: block; font-size: clamp(1.4rem, 3vw, 2.05rem); line-height: 1.05; letter-spacing: -.05em; margin: 1.2rem 0 .9rem; }
.social-side a { position: relative; z-index: 1; color: var(--cyan); font-weight: 900; }
.social-side a:hover { text-decoration: underline; }
.social-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1877f2;
  box-shadow: 0 0 26px rgba(24,119,242,.85);
}

.gallery-section { background: #080810; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.45));
  opacity: .55;
  transition: opacity .2s ease;
}
.gallery-item:hover::after { opacity: .25; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.booking-section { overflow: hidden; }
.booking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,255,225,.08), transparent), url('../images/mixer-neon.jpg') center / cover no-repeat;
  opacity: .2;
  filter: saturate(1.2);
}
.booking-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 6vw, 76px); align-items: start; }
.contact-cards { display: grid; gap: .85rem; margin-top: 2rem; }
.contact-card {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
}
.contact-card span { display: block; color: var(--muted); font-size: .83rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }
.contact-card strong { display: block; margin-top: .2rem; font-size: 1.1rem; }
.booking-form {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  background: rgba(8,8,16,.76);
  backdrop-filter: blur(20px);
  padding: clamp(1.1rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1rem; }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; margin: 0 0 .38rem; color: rgba(248,247,255,.86); font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 15px;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: .9rem .95rem;
  outline: none;
}
select option { color: #05050a; }
textarea { resize: vertical; min-height: 128px; }
input:focus, textarea:focus, select:focus { border-color: rgba(0,255,225,.75); box-shadow: 0 0 0 4px rgba(0,255,225,.1); }
.form-button { width: 100%; border: none; cursor: pointer; }
.form-note { margin: .9rem 0 0; color: var(--muted); font-size: .9rem; text-align: center; }

.site-footer { padding: 36px 0; background: #050509; border-top: 1px solid rgba(255,255,255,.1); }
.footer-grid { display: flex; justify-content: space-between; gap: 2rem; align-items: start; }
.footer-grid p { color: var(--muted); max-width: 480px; margin: 1rem 0 0; }
.footer-links { display: grid; gap: .5rem; text-align: right; color: var(--muted); font-weight: 700; }
.footer-links a:hover { color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: grid;
    padding: .75rem;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(8,8,16,.94);
    backdrop-filter: blur(20px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: block; }
  .hero-grid, .two-col, .booking-grid, .music-grid, .social-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 132px 0 84px; }
  .hero-card { max-width: 500px; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portrait-stack { min-height: auto; }
  .portrait-main img { height: 560px; }
  .festival-photo { height: 430px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .site-header { height: 70px; }
  .hero-card img { height: 360px; }
  .stats-wrap { margin-top: 0; padding: 1rem 0 0; background: #080810; }
  .stats-grid, .service-grid, .two-fields { grid-template-columns: 1fr; }
  .stat-card { min-height: 120px; }
  .portrait-main img { height: 470px; }
  .portrait-mini { position: relative; right: auto; bottom: auto; width: 68%; margin: -70px 14px 0 auto; }
  .festival-logo { left: 1.2rem; top: 1.2rem; width: 76%; }
  .festival-photo { height: 360px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item.large, .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .footer-grid { display: grid; }
  .soundcloud-player { min-height: 390px; }
  .footer-links { text-align: left; }
}

/* Language switch */
.header-tools {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: .25rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(12px);
}
.lang-link {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  min-height: 34px;
  padding: .34rem .52rem;
  border-radius: 999px;
  color: rgba(248,247,255,.82);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .02em;
}
.lang-link:hover,
.lang-link.active {
  color: #05050a;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
}
.flag-icon {
  width: 22px;
  height: 16px;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.28), 0 4px 12px rgba(0,0,0,.22);
}
.lang-code { line-height: 1; }
@media (max-width: 1120px) and (min-width: 981px) {
  .site-nav a { padding: .58rem .62rem; font-size: .86rem; }
  .lang-link { padding-inline: .42rem; }
}
@media (max-width: 620px) {
  .brand span:last-child { display: none; }
  .lang-code { display: none; }
  .lang-link { min-height: 36px; padding: .44rem .5rem; }
  .flag-icon { width: 24px; height: 18px; }
}
