/* ============================================
   ONE COLLECTIVE — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS Variables ── */
:root {
  --bg:           #030303;
  --bg-secondary: #0d0d0d;
  --bg-card:      #141414;
  --text:         #F5F5F5;
  --text-muted:   #888888;
  --border:       #2A2A2A;
  --accent:       #FFFFFF;
  --nav-height:   84px;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Lamp effect */
  --lamp:       rgba(255, 255, 255, 0.55);
  --lamp-soft:  rgba(255, 255, 255, 0.10);
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: transparent;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  transition: background-color 0.2s ease, color 0.2s ease;
  overflow-x: hidden;
}


img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
.font-display { font-family: var(--font-display); line-height: 0.95; letter-spacing: 0.02em; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  z-index: 50;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background-color: rgba(3, 3, 5, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: none;
}

.nav-logo img {
  height: 54px;
  width: auto;
  transition: opacity 0.2s ease;
}
.nav-logo img:hover { opacity: 0.7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0.875rem;
  border-radius: 9999px;
  background: transparent;
  border: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease,
              transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.04);
  box-shadow:
    0 0 8px rgba(0,0,0,0.03),
    0 2px 6px rgba(0,0,0,0.08),
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.6),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.6),
    inset 0 0 6px 6px rgba(255,255,255,0.12),
    inset 0 0 2px 2px rgba(255,255,255,0.06),
    0 0 12px rgba(0,0,0,0.15);
}

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

.nav-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 8px rgba(0,0,0,0.03),
    0 2px 6px rgba(0,0,0,0.08),
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.6),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.6),
    inset 0 0 6px 6px rgba(255,255,255,0.12),
    inset 0 0 2px 2px rgba(255,255,255,0.06),
    0 0 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-instagram:hover {
  transform: scale(1.08);
  color: var(--text);
  box-shadow:
    0 0 8px rgba(0,0,0,0.03),
    0 4px 12px rgba(0,0,0,0.12),
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.7),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.7),
    inset 0 0 6px 6px rgba(255,255,255,0.15),
    inset 0 0 2px 2px rgba(255,255,255,0.08),
    0 0 20px rgba(255,255,255,0.08);
}


/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background-color: var(--bg);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav-mobile a:hover { color: var(--text); }

/* ── Page Layout ── */
main { padding-top: var(--nav-height); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ── Section Base ── */
.section { padding: clamp(4rem, 10vw, 8rem) 0; }

/* Remove all inline border-bottom on sections */
section {
  border-bottom: none !important;
  position: relative;
}

.section-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--text);
  margin-bottom: 1.5rem;
}

.section-divider { display: none; }

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) clamp(1.5rem, 5vw, 4rem) 4rem;
  position: relative;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 30vw, 28rem);
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.4)  45%,
    rgba(255,255,255,0.025) 55%,
    rgba(255,255,255,0.025) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.18);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

/* ── Lamp Effect ── */
.hero-lamp {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 440px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Subtle top backdrop-blur strip */
.hero-lamp-topblur {
  position: absolute;
  top: 0;
  width: 100%;
  height: 12rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0.08;
  z-index: 5;
}

/* Broad soft glow behind everything */
.hero-lamp-glow {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(32rem, 75vw);
  height: 18rem;
  border-radius: 50%;
  background: var(--lamp);
  filter: blur(5rem);
  opacity: 0;
  z-index: 5;
  animation: lampGlowIn 1s ease-out 0.15s forwards;
}

/* Tighter focused beam */
.hero-lamp-beam {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  height: 9rem;
  border-radius: 50%;
  background: var(--lamp);
  filter: blur(1.5rem);
  opacity: 0;
  z-index: 6;
  animation: lampBeamIn 0.8s ease-in-out 0.3s forwards;
}

/* Horizontal glowing line */
.hero-lamp-line {
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  height: 1.5px;
  background: var(--lamp);
  opacity: 0;
  z-index: 7;
  animation: lampLineIn 0.8s ease-in-out 0.3s forwards;
}

/* Left conic cone */
.hero-lamp-cone-left {
  position: absolute;
  top: 0;
  right: 50%;
  width: min(32rem, 44vw);
  height: 14rem;
  overflow: hidden;
  background: conic-gradient(from 70deg at 100% 0%, var(--lamp) 0%, transparent 24%);
  opacity: 0;
  z-index: 4;
  animation: lampConeIn 0.9s ease-in-out 0.3s forwards;
}

.hero-lamp-cone-left::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: transparent;
  pointer-events: none;
}

/* Right conic cone */
.hero-lamp-cone-right {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(32rem, 44vw);
  height: 14rem;
  overflow: hidden;
  background: conic-gradient(from 290deg at 0% 0%, var(--lamp) 0%, transparent 24%);
  opacity: 0;
  z-index: 4;
  animation: lampConeIn 0.9s ease-in-out 0.3s forwards;
}

.hero-lamp-cone-right::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: transparent;
  pointer-events: none;
}

/* Full-height bottom fade to blend lamp into page */
.hero-lamp-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8rem;
  background: transparent;
  z-index: 8;
}

/* Lamp animations */
@keyframes lampGlowIn {
  from { opacity: 0; }
  to   { opacity: 0.65; }
}

@keyframes lampBeamIn {
  from { width: 8rem;  opacity: 0; }
  to   { width: 16rem; opacity: 0.75; }
}

@keyframes lampLineIn {
  from { width: 15rem; opacity: 0; }
  to   { width: min(30rem, 68vw); opacity: 0.55; }
}

@keyframes lampConeIn {
  from { opacity: 0; }
  to   { opacity: 0.30; }
}


/* Hero content sits above the lamp */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: heroContentIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes heroContentIn {
  from { transform: translateY(5rem); opacity: 0.4; }
  to   { transform: translateY(0);    opacity: 1; }
}

.hero-mark {
  width: clamp(130px, 20vw, 240px);
  height: auto;
  margin: 0 auto 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.hero-badge-text {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.hero-tagline {
  font-size: clamp(3.5rem, 10vw, 9rem);
  max-width: 18ch;
  margin-bottom: 1.5rem;
}

.hero-tagline-line1 {
  display: block;
  background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-tagline-line2 {
  display: block;
  color: var(--text);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.4);
  max-width: 48ch;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ── Buttons ── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 8px rgba(0,0,0,0.03),
    0 2px 6px rgba(0,0,0,0.08),
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.6),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.6),
    inset 0 0 6px 6px rgba(255,255,255,0.12),
    inset 0 0 2px 2px rgba(255,255,255,0.06),
    0 0 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.btn:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 8px rgba(0,0,0,0.03),
    0 4px 12px rgba(0,0,0,0.12),
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.7),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.7),
    inset 0 0 6px 6px rgba(255,255,255,0.15),
    inset 0 0 2px 2px rgba(255,255,255,0.08),
    0 0 20px rgba(255,255,255,0.08);
}

.btn:active { transform: scale(0.98); }

.btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Cards ── */
.card {
  background: rgba(255,255,255,0.04);
  border: none;
  padding: 2rem;
  transition: background 0.25s ease, transform 0.25s ease;
}
.card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  background: transparent;
  border: none;
}

.service-card {
  background: rgba(255,255,255,0.03);
  padding: clamp(2rem, 4vw, 3rem);
  transition: background-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover { background: rgba(255,255,255,0.06); }

.service-card::before {
  content: attr(data-number);
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.20);
  line-height: 1;
  transition: color 0.25s ease;
}
.service-card:hover::before { color: rgba(255,255,255,0.35); }

.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.service-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
  color: var(--text);
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Portfolio ── */

/* Category navigation */
.pf-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.pf-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 8px rgba(0,0,0,0.03),
    0 2px 6px rgba(0,0,0,0.08),
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.6),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.6),
    inset 0 0 6px 6px rgba(255,255,255,0.12),
    inset 0 0 2px 2px rgba(255,255,255,0.06),
    0 0 12px rgba(0,0,0,0.15);
  transition: color 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.pf-nav-btn:hover {
  color: var(--text);
  transform: scale(1.04);
  box-shadow:
    0 0 8px rgba(0,0,0,0.03),
    0 4px 12px rgba(0,0,0,0.12),
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.7),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.7),
    inset 0 0 6px 6px rgba(255,255,255,0.15),
    inset 0 0 2px 2px rgba(255,255,255,0.08),
    0 0 20px rgba(255,255,255,0.08);
}
.pf-nav-btn:active { transform: scale(0.98); }
.pf-nav-count {
  font-size: 0.7rem;
  opacity: 0.5;
  font-weight: 400;
}

/* Category section */
.pf-section {
  padding-top: clamp(3rem, 6vw, 5rem);
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

.pf-section + .pf-section {
  margin-top: 0;
  position: relative;
}
.pf-section + .pf-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.pf-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pf-section-meta {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}

.pf-section-num {
  font-size: 4rem;
  line-height: 1;
  color: rgba(255,255,255,0.22);
  flex-shrink: 0;
}

.pf-section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text);
  line-height: 1;
}

.pf-section-count {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  padding-bottom: 0.2rem;
}

/* Portfolio grid (shared) */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* ── Focus Rail Carousel ── */
.fr-wrap {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 4px;
  outline: none;
  user-select: none;
}

.fr-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
  z-index: 12;
  pointer-events: none;
}

.fr-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.fr-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(60px) saturate(1.8);
  opacity: 0.22;
  transform: scale(1.08);
  transition: opacity 0.6s ease;
}

.fr-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 26%, transparent 74%, var(--bg) 100%),
    linear-gradient(to top,   var(--bg) 0%, transparent 50%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 30%);
}

.fr-stage {
  position: relative;
  z-index: 10;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  cursor: grab;
}
.fr-stage:active { cursor: grabbing; }

.fr-card {
  position: absolute;
  width: 210px;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  transition:
    transform  0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity    0.4s  ease,
    filter     0.4s  ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.fr-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  draggable: false;
}

#carousel-brand .fr-card {
  background: #fff;
}

#carousel-brand .fr-card img {
  object-fit: contain;
  padding: 12%;
}

.fr-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.fr-info {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 0;
  gap: 1rem;
}

.fr-info-text { flex: 1; min-width: 0; }

.fr-info-meta {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  opacity: 0.8;
}

.fr-info-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fr-controls {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  padding: 0.2rem;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fr-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.6),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.6),
    inset 0 0 6px 6px rgba(255,255,255,0.12),
    0 2px 6px rgba(0,0,0,0.08);
  transition: color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.fr-btn:hover {
  color: var(--text);
  transform: translateY(-50%) scale(1.08);
  box-shadow:
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.7),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.7),
    inset 0 0 6px 6px rgba(255,255,255,0.15),
    0 4px 12px rgba(0,0,0,0.12),
    0 0 16px rgba(255,255,255,0.06);
}
.fr-btn:active { transform: translateY(-50%) scale(0.94); }

.fr-btn-prev,
.fr-btn-next {
  position: absolute;
  top: 170px;
  transform: translateY(-50%);
  z-index: 15;
}
.fr-btn-prev { left:  1.25rem; }
.fr-btn-next { right: 1.25rem; }

/* ── Lightbox ── */
.fr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.fr-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.fr-lb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  max-width: min(88vw, 640px);
}
.fr-lb-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  transition: opacity 0.15s ease;
  display: block;
}
.fr-lb-caption {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}
.fr-lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.fr-lb-close:hover { background: rgba(255, 255, 255, 0.16); }
.fr-lb-nav {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.fr-lb-nav:hover { background: rgba(255, 255, 255, 0.16); }
@media (max-width: 480px) {
  .fr-lb-nav { display: none; }
  .fr-lb-content { max-width: 95vw; }
}

/* ── Impressum ── */
.impressum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem) clamp(3rem, 8vw, 7rem);
  max-width: 900px;
}

.impressum-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.impressum-heading {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}

.impressum-block p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
}

.impressum-link {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.impressum-link:hover { opacity: 0.7; }

@media (max-width: 640px) {
  .impressum-grid { grid-template-columns: 1fr; }
}

/* Legacy filter (kept for JS compat) */
.portfolio-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  position: relative;
  padding: 0.4rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 9999px;
  border: 1px solid transparent;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease,
              transform 0.3s ease, box-shadow 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.04);
  box-shadow:
    0 0 8px rgba(0,0,0,0.03),
    0 2px 6px rgba(0,0,0,0.08),
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.6),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.6),
    inset 0 0 6px 6px rgba(255,255,255,0.12),
    inset 0 0 2px 2px rgba(255,255,255,0.06),
    0 0 12px rgba(0,0,0,0.15);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: transparent;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-secondary);
  cursor: pointer;
}

.portfolio-item-bg {
  width: 100%; height: 100%;
  background: var(--bg-card);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item:hover .portfolio-item-bg { transform: scale(1.04); }

.portfolio-placeholder-icon {
  width: 48px; height: 48px;
  color: var(--border);
}

.portfolio-item-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-item-title {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.portfolio-item-cat {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.portfolio-item.hidden { display: none; }

/* ── About / Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  background: transparent;
  border: none;
  margin-top: 4rem;
}

.value-card {
  background: rgba(255,255,255,0.03);
  padding: 2.5rem 2rem;
}

.value-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.20);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.value-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.value-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 200px));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: start;
}

.team-card { text-align: center; }

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.04);
  border: none;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}

.team-photo svg {
  width: 36px; height: 36px;
  color: var(--border);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(20%) brightness(0.9);
  transition: filter 0.3s ease;
}

.team-card:hover .team-photo img {
  filter: grayscale(0%) brightness(1);
}

.team-name {
  font-size: 0.9375rem;
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.contact-info-text {
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
  font-size: 1.0625rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 8px rgba(0,0,0,0.03),
    0 2px 6px rgba(0,0,0,0.08),
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.6),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.6),
    inset 0 0 6px 6px rgba(255,255,255,0.12),
    inset 0 0 2px 2px rgba(255,255,255,0.06),
    0 0 12px rgba(0,0,0,0.15);
  transition: color 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.social-link:hover {
  color: var(--text);
  transform: scale(1.04);
  box-shadow:
    0 0 8px rgba(0,0,0,0.03),
    0 4px 12px rgba(0,0,0,0.12),
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.7),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.7),
    inset 0 0 6px 6px rgba(255,255,255,0.15),
    inset 0 0 2px 2px rgba(255,255,255,0.08),
    0 0 20px rgba(255,255,255,0.08);
}
.social-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  color: var(--text);
  padding: 0.9375rem 1.125rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.04);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.22); }

.form-textarea { resize: vertical; min-height: 150px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

.form-select option {
  background: var(--bg-card);
  color: var(--text);
}

.contact-form-wrap {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.form-error {
  font-size: 0.8125rem;
  color: #e05252;
  display: none;
}
.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea { border-color: #e05252; }

.form-success {
  display: none;
  padding: 2rem;
  border: none;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
}
.form-success.visible { display: block; }
.form-success-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.form-success-text {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Anker-Offset für fixe Navbar */
#social-media, #print-design, #videografie, #brand-identity {
  scroll-margin-top: var(--nav-height);
}

/* ── Page Hero ── */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) clamp(1.5rem, 5vw, 4rem) 4rem;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

/* Subtle lamp glow on inner pages */
.page-hero::before {
  content: '';
  position: absolute;
  top: -4rem;
  left: clamp(1.5rem, 5vw, 4rem);
  width: min(20rem, 50vw);
  height: 12rem;
  border-radius: 50%;
  background: var(--lamp);
  filter: blur(4rem);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
  animation: lampGlowIn 1s ease-out 0.1s both;
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.page-hero-title {
  font-size: clamp(4rem, 12vw, 10rem);
  color: var(--text);
  line-height: 0.9;
}

/* ── Statement / Quote ── */
.statement {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-bottom: 1px solid var(--border);
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  max-width: 22ch;
  color: var(--text);
}

.statement-text em {
  font-style: normal;
  color: var(--text-muted);
}

/* ── Footer ── */
.footer {
  border-top: none;
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo img { height: 24px; width: auto; }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Partners Banner ── */
.partners-section {
  padding: 4rem 0;
}

.partners-label {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.partners-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: ticker 60s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.partner-item img {
  height: 44px;
  width: auto;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s ease;
  object-fit: contain;
}

.partner-item img:hover {
  filter: grayscale(0%) opacity(0.85);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-grid        { grid-template-columns: repeat(2, 1fr); }
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links      { display: none; }
  .nav-hamburger  { display: flex; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-grid        { grid-template-columns: repeat(2, 1fr); }
  .pf-section-num { font-size: 2.5rem; }
  .pf-section-header { align-items: center; }
  .fr-wrap        { height: 420px; }
  .fr-stage       { height: 290px; }
  .fr-card        { width: 160px; }
}

@media (max-width: 480px) {
  .portfolio-grid   { grid-template-columns: 1fr; }
  .pf-grid          { grid-template-columns: repeat(2, 1fr); }
  .pf-section-count { display: none; }
  .fr-wrap          { height: 370px; }
  .fr-stage         { height: 255px; }
  .fr-card          { width: 130px; }
  .fr-info-meta     { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-content { animation: none; transform: none; opacity: 1; }
  .hero-lamp-glow  { opacity: 0.65; animation: none; }
  .hero-lamp-beam  { width: 16rem; opacity: 0.75; animation: none; }
  .hero-lamp-line  { width: min(30rem, 68vw); opacity: 0.55; animation: none; }
  .hero-lamp-cone-left,
  .hero-lamp-cone-right { opacity: 0.30; animation: none; }
}

/* ── Dotted Surface (Three.js background) ── */
/* ── Aurora Background ── */
#dotted-surface {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: #030303;
}
html.light #dotted-surface { background: #f5f5f5; }

.aurora-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.4;
}

.aurora-layer1 {
  position: absolute;
  inset: -100%;
  background: repeating-linear-gradient(100deg,
    #ffffff 10%, #555555 15%, #cccccc 20%, #333333 25%, #aaaaaa 30%
  );
  background-size: 300% 100%;
  filter: blur(80px);
  animation: aurora-shift 90s linear infinite;
}

.aurora-layer2 {
  position: absolute;
  inset: -10px;
  background:
    repeating-linear-gradient(100deg,
      rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.05) 7%,
      transparent 10%, transparent 12%, rgba(255,255,255,0.05) 16%
    ),
    repeating-linear-gradient(100deg,
      #ffffff 10%, #555555 15%, #cccccc 20%, #333333 25%, #aaaaaa 30%
    );
  background-size: 200%, 100%;
  background-position: 50% 50%, 50% 50%;
  mix-blend-mode: difference;
  animation: aurora-glass 70s linear infinite;
}

.aurora-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.85) 100%);
}

@keyframes aurora-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes aurora-glass {
  0%   { background-position: 50% 50%, 50% 50%; }
  50%  { background-position: 100% 50%, 150% 50%; }
  100% { background-position: 50% 50%, 50% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-layer1, .aurora-layer2 { animation: none; }
}

/* ── Language Switch ── */
.lang-switch {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 8px rgba(0,0,0,0.03),
    0 2px 6px rgba(0,0,0,0.08),
    inset 1px 1px 1px -0.5px rgba(255,255,255,0.6),
    inset -1px -1px 1px -0.5px rgba(255,255,255,0.6),
    inset 0 0 6px 6px rgba(255,255,255,0.12),
    inset 0 0 2px 2px rgba(255,255,255,0.06),
    0 0 12px rgba(0,0,0,0.15);
  opacity: 0.45;
  transition: opacity 0.25s ease, transform 0.3s ease;
}
.lang-switch:hover {
  opacity: 1;
  transform: scale(1.04);
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
  padding: 0.125rem 0.25rem;
  line-height: 1;
  min-width: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.lang-btn.active { color: var(--text); }
.lang-btn:hover:not(.active) { color: var(--text); }
.lang-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.6875rem;
  user-select: none;
  line-height: 1;
}
