/* ============================================================
   RB AGENCY — style.css
   ============================================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; background: #141414; overflow-x: clip; } /* overflow-x:clip clips without creating a scroll container (safe for Lenis) */
body {
  background: #141414;
  color: #F4F4F4;
  font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip; /* clip instead of hidden — does not create a scroll container, so position:sticky works */
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul { list-style: none; }

/* FONTS */
@font-face { font-family:'HelveticaNeue'; src:url('Fonts/HelveticaNeue Bold.woff') format('woff'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'HelveticaNeue'; src:url('Fonts/HelveticaNeue Bold Italic.woff') format('woff'); font-weight:700; font-style:italic; font-display:swap; }
@font-face { font-family:'HelveticaNeue'; src:url('Fonts/HelveticaNeue Regular.woff') format('woff'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'HelveticaNeue'; src:url('Fonts/HelveticaNeue Light.woff') format('woff'); font-weight:300; font-style:normal; font-display:swap; }

/* TOKENS */
:root {
  --black:  #141414;
  --deep:   #0A0A0A;
  --white:  #F4F4F4;
  --gray:   #848484;
  --green:  #D1FA30;
  --pink:   #FF73BC;
  --violet: #9C81FC;
  --gutter: clamp(24px, 5vw, 80px);
  --max:    1750px;
}

/* ============================================================
   NAV — mix-blend-mode: difference
   White elements auto-invert against light/dark backgrounds
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 68px;
  mix-blend-mode: difference;
  /* Never any background — blend mode handles visibility */
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo — always white SVG (inverts via blend mode) */
.nav__logo { display: flex; align-items: center; }
.nav__logo img { width: 120px; height: auto; }
.logo-w { display: block; }
.logo-b { display: none; } /* never show black logo — blend mode handles inversion */

/* Links — all white (inverts via blend mode) */
.nav__links { display: flex; align-items: center; gap: 24px; }

/* Outlined CTA in nav — white border inverts via blend mode */
.nav__cta-btn {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  padding: 7px 16px;
  /* border: 1.5px solid rgba(255,255,255,0.75); */
  border-radius: 0.20rem;
  color: var(--deep);
  white-space: nowrap;
  background: none; cursor: pointer; font-family: inherit;
  background-color: var(--white);
  transition: background-color 0.25s ease, color 0.25s ease;
}
.nav__cta-btn:hover { background-color: #2A04AA; color: var(--white); }

/* Current page indicator */
.nav__link.is-current { color: #ffffff; font-weight: 700; }

.nav__current {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  color: #ffffff; white-space: nowrap;
}
.nav__link {
  font-size: 11px; font-weight: 400;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75); white-space: nowrap;
  transition: color 0.25s ease;
  position: relative;
}
.nav__link::before {
  content: '▶';
  font-size: 7px;
  display: inline-block;
  vertical-align: middle;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transform: translateX(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, max-width 0.22s ease, margin-right 0.22s ease;
  margin-right: 0;
  line-height: 1;
}
.nav__link:hover,
.nav__link.is-current { color: #ffffff; }
.nav__link:hover::before,
.nav__link.is-current::before {
  opacity: 0.7;
  max-width: 12px;
  transform: translateX(0);
  margin-right: 4px;
}

/* When any link is hovered, hide the is-current arrow with the same animation */
.nav__links:has(.nav__link:hover) .nav__link.is-current:not(:hover)::before {
  opacity: 0;
  max-width: 0;
  transform: translateX(-6px);
  margin-right: 0;
}

/* Language switcher — inside nav, inherits mix-blend-mode */
.nav__lang {
  display: flex; align-items: center;
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; user-select: none;
  position: relative;
}
.lang-current {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  display: flex; align-items: center; gap: 5px;
}
.lang-arrow {
  font-size: 9px; opacity: 0.55; display: inline-block;
  transition: transform 0.25s ease;
}
.nav__lang.is-open .lang-arrow { transform: rotate(180deg); }

/* Language dropdown — GSAP drives open/close; CSS only sets defaults */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  opacity: 0;
  visibility: hidden;  /* GSAP toggles this */
  pointer-events: none;
}
.lang-dropdown.is-open { pointer-events: all; }
.lang-dropdown a {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 5px 8px; text-align: center;
  transition: color 0.2s ease; white-space: nowrap;
}
.lang-dropdown a:hover     { color: #ffffff; }
.lang-dropdown a.is-current { color: #ffffff; }

/* ── BURGER — text "MENU / CLOSE" with sliding swap animation */
.nav__burger {
  display: none; /* shown via @media */
  background: none; border: none; cursor: pointer;
  font-family: inherit; padding: 12px 0; /* generous touch target */
  color: #ffffff;
}
.burger-track {
  position: relative; display: block;
  height: 13px; /* no overflow:hidden — opacity handles hiding */
}
.burger-label {
  display: block;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; /* tight, matching design */
  color: #ffffff; white-space: nowrap; line-height: 13px;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.28s ease;
}
.burger-menu  { transform: translateY(0);    opacity: 1; }
.burger-close { position: absolute; top: 0; left: 0; transform: translateY(115%); opacity: 0; }

.nav__burger.open .burger-menu  { transform: translateY(-115%); opacity: 0; }
.nav__burger.open .burger-close { transform: translateY(0);     opacity: 1; }

/* ============================================================
   MOBILE OVERLAY — redesigned (t11 reference)
   ============================================================ */
.nav-overlay {
  position: fixed; inset: 0; z-index: 9100;
  background: var(--black);
  display: flex; flex-direction: column;
  justify-content: flex-end; /* push all content to bottom */
  padding: calc(68px + 24px) var(--gutter) 36px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.38s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* Raise nav above overlay so burger stays clickable */
.nav { z-index: 900; }
.nav.overlay-active { z-index: 9200; }

/* Tagline + divider */
.overlay-top { margin-bottom: 20px; }
.overlay-tagline {
  font-size: 10px; font-weight: 300;
  text-transform: uppercase;
  color: rgba(244,244,244,0.35); margin-bottom: 14px;
}
.overlay-divider { height: 1px; background: rgba(244,244,244,0.1); }

/* Nav links — left-aligned, large */
.overlay-links {
  display: flex; flex-direction: column;
  align-items: flex-start;
  margin-bottom: 28px;
}
.overlay-link {
  display: block;
  font-size: clamp(34px, 8.5vw, 58px);
  font-weight: 700; text-transform: uppercase;
 line-height: 1.08;
  color: #F4F4F4; padding: 3px 0;
  transition: color 0.2s ease;
  /* animation start state */
  opacity: 0; transform: translateY(14px);
}
.overlay-link:hover { color: var(--green); }
.overlay-link--accent { color: var(--green); }

/* Stagger links in when overlay opens */
@keyframes overlayLinkIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-overlay.open .overlay-link {
  animation: overlayLinkIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.nav-overlay.open .overlay-link:nth-child(1) { animation-delay: 0.06s; }
.nav-overlay.open .overlay-link:nth-child(2) { animation-delay: 0.11s; }
.nav-overlay.open .overlay-link:nth-child(3) { animation-delay: 0.16s; }
.nav-overlay.open .overlay-link:nth-child(4) { animation-delay: 0.20s; }
.nav-overlay.open .overlay-link:nth-child(5) { animation-delay: 0.24s; }
.nav-overlay.open .overlay-link:nth-child(6) { animation-delay: 0.28s; }
.nav-overlay.open .overlay-link:nth-child(7) { animation-delay: 0.32s; }

/* Bottom bar */
.overlay-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(244,244,244,0.1);
  flex-wrap: wrap; gap: 8px;
}
.overlay-legal {
  font-size: 10px; font-weight: 300;
  text-transform: uppercase;
  color: rgba(244,244,244,0.3); transition: color 0.2s ease;
}
.overlay-legal:hover { color: rgba(244,244,244,0.65); }
.overlay-copy {
  font-size: 10px; font-weight: 300;
  color: rgba(244,244,244,0.3);
}

/* Language links in overlay bottom */
.overlay-lang {
  display: flex; gap: 14px;
  font-size: 10px; font-weight: 700;
 text-transform: uppercase;
}
.overlay-lang .active { color: var(--green); }
.overlay-lang a { color: rgba(244,244,244,0.35); transition: color 0.2s ease; }
.overlay-lang a:hover { color: rgba(244,244,244,0.75); }

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  height: 800px;
  max-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  display: flex; flex-direction: row;
}

/* Left — white panel with text */
.hero__left {
  flex: 0 0 54%;
  background: #fff;
  display: flex; align-items: flex-end;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}

/* Right — video column: absolutely positioned within .hero so it always
   spans from the white panel's right edge to the full viewport right edge.
   left = min(54vw, center-offset + 54% of max-width) */
.hero__right {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  left: min(54%, calc(50% + var(--max) * 0.04));
  overflow: hidden;
}

.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__body-inner {
  width: 100%;
  padding: 0 var(--gutter);
}

.hero__title {
  font-size: clamp(1rem, 2.4vw, 2.1rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: justify;
  text-align-last: justify;
}
.statement__text {
  font-size: 1.3em !important;
  text-align: justify;

}

.hero__line { display: block; }
.hero__line--dim { opacity: 0.45; }

/* CTA buttons */
.hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-btn {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.hero-btn--fill {
  background: var(--green); color: var(--black);
  border-color: var(--green);
}
.hero-btn--fill:hover { background: transparent; color: var(--green); border-color: var(--green); }
.hero-btn--ghost {
  background: transparent; color: var(--black);
  border-color: rgba(0,0,0,0.3);
}
.hero-btn--ghost:hover { color: var(--black); border-color: var(--black); }

/* ============================================================
   2. STATEMENT — compact, left-aligned, carbon black
   ============================================================ */
.statement {
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
  background: var(--black); /* Carbon Black #141414 */
}

.statement__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 0% 50%, rgba(27,22,55,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 50%, rgba(27,22,55,0.2) 0%, transparent 55%);
  pointer-events: none;
}

.statement__inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 28px var(--gutter) 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* "Despre Noi" header — mirrors trigger bar exactly, but on dark background */
.statement__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  /* border-bottom: 1px solid rgba(244,244,244,0.12); */
  margin-bottom: 16px;
}

/* No super label needed — removed */
.statement__super { display: none; }

/* Heading = same size/weight as trigger-text, white version */
.statement__heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;

  color: #F4F4F4;
  line-height: 1;
}

/* CTA = same as trigger-btn but green (already stands out on dark) */
.statement__read-more {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;

  color: var(--green);
  border-bottom: 1px solid var(--green);
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.statement__read-more:hover { opacity: 0.65; }

.statement__text {
  font-size: clamp(13px, 1.55vw, 20px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: justify;
  line-height: 1.65;

  color: rgba(244,244,244,0.88);
}

/* Logos marquee — single row, GSAP-driven scroll (no CSS animation) */
.logos-marquee {
  position: relative; z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(244,244,244,0.07);
  padding: 30px 0;
}
.logos-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content; 
  /* animation driven entirely by GSAP in main.js */
  will-change: transform;
}

.logo-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
   scale: 1;
  transition: scale 0.3s ease;
}
.logo-item img {
  max-height: 32px;
  max-width: 120px;
  width: auto;
  height: auto;
  display: block;
}
.logo-item:hover { scale: 1.08; }

/* Trigger bar — outer full-width shell */
.statement__cta,
.section-trigger {
  position: relative; z-index: 3;
  flex-shrink: 0;
  /* No margin-top — use padding on parent sections to avoid margin collapse */
  height: 56px;
  background: var(--white);
  border-top: 1px solid rgba(20,20,20,0.08);
  /* No hover color change */
}

/* Inner max-width wrapper — aligns with all other page elements */
.trigger-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* Centering logic — same as all other inner wrappers */
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--gutter);
}

.trigger-text {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
}
.trigger-btn {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  background: var(--black);
  padding: 9px 20px;
  border-radius: 0.20rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
.trigger-btn:hover { background: rgba(20,20,20,0.75); }

/* ============================================================
   3. ARTISTS DRUM-ROLL
   ============================================================ */
.acts-roll {
  position: relative;
  min-height: 80svh;
  background: var(--white);
  display: flex; flex-direction: column;
  align-items: stretch; /* stretch so body fills full width before max-width kicks in */
  justify-content: center;
  overflow: hidden;
  padding: 88px 0 56px;
}

/* Scatter images */
.acts-scatter { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.acts-scatter__item {
  position: absolute;
  overflow: hidden;
  border: none !important;   /* kill any ghost outline */
  outline: none !important;
  box-shadow: none !important;
  background: var(--white);  /* match section bg so cover is seamless */
  aspect-ratio: 3/4; /* default, overridden by JS */
}
.acts-scatter__cover {
  /* Inherits background from parent = section bg color */
  background: var(--white) !important;
  border: none !important;
  outline: none !important;
}

.acts-scatter__item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* White reveal cover */
.acts-scatter__cover {
  position: absolute; inset: 0;
  background: var(--white);
  z-index: 2;
  /* starts covering the image; JS slides it up */
}

/* Small label */
.acts-roll__label {
  position: relative; z-index: 2;
  font-size: 11px; font-weight: 400;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 36px;
}

/* Drum-roll body — same centering logic as .trigger-inner */
.acts-roll__body {
  position: relative; z-index: 2;
  /* Mirror trigger-inner exactly */
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);  /* gutter applied HERE, not on list */
  width: 100%;
}

/* Arrows sit at the gutter edges, absolutely positioned */
.acts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px; font-weight: 300;
  color: rgba(20,20,20,0.22);
  padding: 8px 4px;
  transition: color 0.3s ease;
  line-height: 1;
  z-index: 3;
}
.acts-arrow--prev { left: 0; }
.acts-arrow--next { right: 0; }
.acts-arrow:hover { color: #141414; }

.acts-roll__list {
  width: 100%;
  display: flex; flex-direction: column;
  align-items: flex-start;
  /* No padding here — handled by body above */
}

.acts-item {
  width: 100%;
  text-align: left;           /* names left-aligned */
  font-size: clamp(24px, 5.5vw, 74px);
  font-weight: 700;
  text-transform: uppercase;

  color: var(--black);
  line-height: 1.18;
  padding: 4px 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  user-select: none;
}
.acts-item--active { color: var(--black); }

/* section-trigger is now handled by shared rule above */

/* ============================================================
   4. PROJECTS GRID
   ============================================================ */
.projects {
  background: var(--white);
  /* Padding-top (not margin) keeps white gap — margin would collapse to body black */
  padding-top: 70px;
  padding-bottom: 100px;
}

.projects__row {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px; /* row spacing via margin — no visible border line */
}
.projects__row:last-child { margin-bottom: 0; }

/* Flat grid for portfolio page — items reflow correctly when filtered */
.projects__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.projects__col { position: relative; overflow: hidden; }
/* no border-right — the gap provides visual separation */

.projects__img-wrap {
  width: 100%;
  /* height: clamp(220px, 34vw, 560px); */
  overflow: hidden;
  cursor: pointer; /* native cursor preserved, eye icon is additive */
  aspect-ratio: 5/4 !important; /* enforce square aspect ratio regardless of image dimensions; overridden by JS for non-square images */


}
.projects__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.75s cubic-bezier(0.16,1,0.3,1);
  
}
.projects__col:hover .projects__img-wrap img { transform: scale(1.04); }

/* Whole card is a link — reset anchor styles */
a.projects__col {
  text-decoration: none;
  color: inherit;
  display: block;
}

.projects__info {
  display: flex;
  flex-direction: column;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(20,20,20,0.07);
}

/* Top row: name + pill — vertically centered */
.projects__info-top {
  display: flex;
  align-items: center; /* title and pill on the same horizontal axis */
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.projects__name {
  font-size: clamp(22px, 2.8vw, 42px);
  font-weight: 700;
  text-transform: uppercase;

  color: var(--black);
  line-height: 1.05;
}

/* Event type pill */
.projects__pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;

  white-space: nowrap;
  flex-shrink: 0;
}

.pill--privat,
.pill--private  { background: #1B1637; color: #F4F4F4; }

.pill--concert  { background: #9C81FC; color: #141414; }  /* Chic Violet    */
.pill--festival { background: #FF73BC; color: #141414; }  /* Sexy Pink      */
.pill--public   { background: #141414; color: #F4F4F4; }  /* Teen Green     */
.pill--privat,
.pill--private  { background: #1B1637; color: #F4F4F4; border: 1px solid rgba(255,255,255,0.15); } /* Midnight Indigo */
.pill--brand    { background: #D1FA30; color: #141414; }  

.projects__desc {
  font-size: 14px;
  font-weight: 300;
  max-width: 400px;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 2px;
}

/* Bottom row: location + year — both bottom-aligned */
.projects__info-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: -14px; /* close the gap created by large year font metrics */
}
.projects__location {
  font-size: 13px;
  font-weight: 400;
  color: rgba(20,20,20,0.4);

}
.projects__year {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  color: rgba(20,20,20,0.09);

  margin-bottom: 0px; /* pull up to compensate for large font's built-in descender space */
  line-height: 1;
}

/* Floating eye cursor (follows mouse over project images) */
.projects-eye {
  position: fixed;
  top: 0; left: 0;
  z-index: 9998;
  pointer-events: none;
  width: 60px; height: 60px;
  border-radius: 50%;
  /* backdrop blur glass — no opaque white */
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.28);
  display: flex; align-items: center; justify-content: center;
  /* starts at scale 0, animated to scale 1 via GSAP */
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  will-change: transform, opacity;
}
.projects-eye.visible { opacity: 1; }

/* Keep native cursor on project image wraps */
.projects__img-wrap { cursor: pointer; }

/* ============================================================
   5. SERVICES — reworked: mini bar top, hover color, cursor image
   ============================================================ */
/* Services — WHITE background, same as rest of page */
.services { background: var(--white); padding: 10px 0 100px; }
.services__inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* Mini trigger bar — light version (white bg) matching other white trigger bars */
.services__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  border-bottom: 1px solid rgba(20,20,20,0.1);
  margin-bottom: 0;
}
.services__bar-text {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  color: var(--black);  /* dark on white */
}
.services__bar-cta {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  color: var(--black);   /* dark on white — green has poor contrast on white */
  border-bottom: 1px solid rgba(20,20,20,0.5);
  padding-bottom: 2px;
  transition: opacity 0.3s ease; flex-shrink: 0;
}
.services__bar-cta:hover { opacity: 0.5; }

.services__list { display: flex; flex-direction: column; margin-top: 48px; }
.services__item {
  display: grid;
  grid-template-columns: 52px 1fr 1fr auto;
  align-items: center; gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(20,20,20,0.07);  /* dark border on white */
  cursor: default;
  transition: background 0.35s ease, border-bottom-color 0.35s ease, padding 0.3s ease;
}

/* Hover: Midnight Indigo on white — strong contrast, dramatic */
.services__item:hover {
  background: #e5e5e5;
  border-bottom-color: #DDDDDD;
  padding-left: 20px;
  padding-right: 20px;
}
.services__item:hover .svc-arrow { opacity: 1; color: var(--gray); }
.services__item:hover .svc-num   { color: var(--gray); }
.services__item:hover .svc-name  { color: var(--black); }
.services__item:hover .svc-desc  { color: var(--gray); }

/* Text — dark on white background */
.svc-num  { font-size: 11px; font-weight: 400; text-transform: uppercase; color: rgba(20,20,20,0.35); transition: color 0.3s ease; }
.svc-name { font-size: clamp(15px, 2vw, 21px); font-weight: 700; color: var(--black); text-transform: uppercase; transition: color 0.3s ease; }
.svc-desc { font-size: 13px; font-weight: 300; color: var(--gray); line-height: 1.55; text-align: right; transition: color 0.3s ease; }
.svc-arrow { font-size: 17px; color: var(--black); opacity: 0; transition: opacity 0.3s ease, color 0.3s ease; }

/* Service image cursor — portrait, bigger, velocity-deformable */
.service-img-cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 9990;
  pointer-events: none;
  width: clamp(180px, 16vw, 260px);
  aspect-ratio: 2/3;         /* portrait — tall, not wide */
  overflow: hidden;
  opacity: 0;
  will-change: transform, opacity;
  transform-origin: center center;
}
/* No hover-follow image on mobile / tablet */
@media (max-width: 1024px) {
  .service-img-cursor { display: none !important; }
}
.service-img-cursor img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  will-change: transform;    /* img gets velocity skew applied by GSAP */
  transform-origin: center bottom;
}

/* ============================================================
   6. CONTACT + FOOTER — integrated dark unit
   ============================================================ */

/* Contact lives inside footer — no trigger bar */
.footer__contact {
  border-bottom: 1px solid rgba(244,244,244,0.08);
  padding: 96px 0 56px;
}

.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "title form"
    "details form";
  column-gap: 64px;
  row-gap: 28px;
}
.contact__left  { grid-area: details; }
.contact__right { grid-area: form; }


/* Title — uppercase, bold */
.contact__title {
  grid-area: title;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  color: #F4F4F4;
  margin-bottom: 0;
}
.contact__accent { color: var(--green); }

/* Locations — very tight gap, no emoji */
.contact__locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;              /* very tight */
  padding: 18px 0;
  border-top: 1px solid rgba(244,244,244,0.1);
  border-bottom: 1px solid rgba(244,244,244,0.08);
  margin-bottom: 20px;
}
.contact__region-block { display: flex; flex-direction: column; gap: 4px; }
.contact__region-label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  color: var(--green); margin-bottom: 8px;
}
.contact__phone {
  display: block;
  font-size: 16px; font-weight: 300;  /* bigger */
  color: var(--gray); line-height: 1.7;
  transition: color 0.3s ease;
}
.contact__phone:hover { color: #F4F4F4; }

/* Solo email */
.contact__email--solo {
  display: block;
  font-size: 16px; font-weight: 300;  /* bigger */
  color: var(--gray); margin-bottom: 28px;
  transition: color 0.3s ease;
}
.contact__email--solo:hover { color: var(--green); }

/* Social icon buttons — bigger */
.contact__socials { display: flex; gap: 10px; }
.social-btn {
  width: 48px; height: 48px;           /* bigger */
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(244,244,244,0.15);
  color: rgba(244,244,244,0.45);
  border-radius: 0.25rem;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.social-btn svg { width: 20px; height: 20px; display: block; }  /* bigger icon */
.social-btn:hover { border-color: var(--green); color: var(--green); }

/* Form */
.contact-form {
  /* display: flex; flex-direction: column; gap: 20px; justify-content: space-between; */
  display: flex;
  flex-direction: column;
  flex: 1; /* fill remaining height inside contact__right */
  justify-content: space-between;
  gap: 20px;
}

.contact__right {
  display: flex;
  flex-direction: column;
}

/* Two fields per row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 10px; font-weight: 400;
  text-transform: uppercase; color: var(--gray);
}
.form-group input,
.form-group textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(244,244,244,0.18);
  padding: 10px 0; color: #F4F4F4;
  font-family: inherit; font-size: 14px; font-weight: 300;
  outline: none; width: 100%;
  transition: border-color 0.3s ease;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(132,132,132,0.45); }
.form-group input:focus, .form-group textarea:focus { border-bottom-color: var(--green); }
.form-group select.form-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244,244,244,0.18);
  padding: 10px 24px 10px 0;
  color: rgba(244,244,244,0.55);
  font-family: inherit; font-size: 14px; font-weight: 300;
  outline: none; width: 100%;
  cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(244,244,244,0.45)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.form-group select.form-select:focus { border-bottom-color: var(--green); color: #F4F4F4; }
.form-group select.form-select option { background: #1C1C1C; color: #F4F4F4; }

/* Custom on-brand service select */
.custom-select {
  position: relative;
  user-select: none;
}
.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(244,244,244,0.18);
  cursor: pointer;
  transition: border-color 0.3s ease;
}
.custom-select.open .custom-select__trigger { border-bottom-color: var(--green); }
.custom-select__value {
  font-size: 14px; font-weight: 300;
  color: rgba(132,132,132,0.45);
  transition: color 0.3s ease;
}
.custom-select.selected .custom-select__value { color: #F4F4F4; }
.custom-select__arrow {
  font-size: 11px; color: var(--gray);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.custom-select.open .custom-select__arrow { transform: rotate(180deg); }

/* Dropdown panel */
.custom-select__options {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #1C1C1C;
  border: 1px solid rgba(244,244,244,0.1);
  border-top: none;
  z-index: 200;
  display: none;
  overflow-y: auto;
  max-height: 240px;
}
.custom-select.open .custom-select__options { display: block; }

.custom-select__option {
  padding: 12px 16px;
  font-size: 13px; font-weight: 300;
  color: rgba(244,244,244,0.6);
  border-bottom: 1px solid rgba(244,244,244,0.06);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.custom-select__option:last-child { border-bottom: none; }
.custom-select__option:hover { background: rgba(209,250,48,0.07); color: #F4F4F4; }
.custom-select__option.is-active {
  color: var(--green);
  background: rgba(209,250,48,0.05);
}

.btn-submit {
  background: var(--green); color: var(--black);
  border: 1px solid var(--green);
  padding: 14px 40px;
  width: 100%;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  border-radius: 0.25rem;
  transition: background 0.3s ease, color 0.3s ease; cursor: pointer;
  margin-top: 4px;
  margin-bottom: 10px;
  text-align: center;
}
.btn-submit:hover { background: transparent; color: var(--green); }

/* Two-button row: submit + call — artist booking form */
.booking-form__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.booking-form__actions .btn-submit { flex: 2; min-width: 200px; margin-bottom: 0; }
.btn-call {
  border: 1px solid var(--green);
  padding: 14px 40px;
  width: 50%;
  justify-self: center;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  border-radius: 0.25rem;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  cursor: pointer;
  margin-top: 4px;
  /* margin-bottom: 10px; */
  text-align: center;
  background: var(--green);
  color: var(--black)
}
.btn-call:hover { background: transparent; color: var(--black); border: 1px solid var(--black); }
@media (max-width: 600px) {
  .booking-form__actions { flex-direction: column; gap: 4px; }
 
  .booking-form__actions .btn-submit,
  .btn-call { min-width: 0; width: 100%; flex: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #141414; padding: 0 0 40px; }
.footer__line { height: 1px; background: var(--green); }
.footer__inner { max-width: var(--max); margin: 0 auto; padding: 52px var(--gutter) 0; }
.footer__top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer__logo { width: 110px; height: auto; }
.footer__nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__nav a { font-size: 10px; font-weight: 400; text-transform: uppercase; color: var(--gray); transition: color 0.3s ease; }
.footer__nav a:hover { color: var(--green); }
.footer__divider { height: 1px; background: rgba(244,244,244,0.08); margin: 36px 0 28px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer__bottom p { font-size: 11px; font-weight: 300; color: var(--gray); }

/* ============================================================
   LENIS
   ============================================================ */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__item { grid-template-columns: 44px 1fr auto; }
  .svc-desc { display: none; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: block; } /* text button, not flex */

  /* ── EVENT PAGE — mobile ── */
  /* Hero grid: exact user spec, single column, title on top via order */
  .ev-hero__grid {
    display: grid;
    grid-template-columns: 1fr !important;
    align-items: start;
    gap: 24px;
    padding-bottom: 48px;
    width: 100%;
    justify-items: start;
  }
  .ev-hero__title {
    order: -1;
    text-align: left !important;
    font-size: clamp(36px, 10vw, 60px);
    padding-bottom: 0;
  }
  .ev-hero__left  { order: 1; }
  .ev-hero__label { display: block; font-size: 12px; margin-bottom: 10px !important; }
  .ev-hero__desc  { max-width: 100%; }

  /* Facts: single column on mobile */
  .event-facts {
    grid-template-columns: 1fr !important;
  }
  .event-fact {
    border-right: none !important;
    border-bottom: 1px solid rgba(20,20,20,0.08);
    padding: 20px 0 !important;
  }
  .event-fact:last-child { border-bottom: none; }

  /* Despre proiect: single column */
  .event-section__cols {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  /* Gallery: all full width, consistent tall height */
  .ev-gal__pair   { grid-template-columns: 1fr !important; }
  .ev-gal__full   { height: 700px !important; aspect-ratio: unset !important; }
  .ev-gal__half-wrap { height: 700px !important; aspect-ratio: unset !important; }

  /* Next cards: stack, taller */
  .ev-next-grid { grid-template-columns: 1fr !important; }
  .ev-next-card__img-wrap { height: clamp(320px, 90vw, 560px) !important; }
  .next-items .trigger-inner { padding: 0 20px; }

  /* section-trigger: allow wrap on small screens to prevent horizontal overflow */
  .section-trigger { height: auto; overflow: hidden; }
  .trigger-inner { flex-wrap: wrap; height: auto; padding: 14px var(--gutter); gap: 6px; }

  .hero { height: 90vh; background: none; }
  .hero__right { left: 0; }
  .hero__left {
    position: absolute; inset: 0; z-index: 2;
    background: none;
    display: flex; align-items: flex-end;
    padding-bottom: 36px;
  }
  .hero__left::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
    pointer-events: none;
  }
  .hero__body-inner { position: relative; z-index: 1; }
  .hero__title {
    font-size: clamp(1.25rem, 5.5vw, 1.7rem);
    color: #fff;
    text-align: justify;
    text-align-last: justify;
  }
  .hero__ctas { gap: 10px; }
  .hero-btn { font-size: 10px; padding: 12px 24px; }
  .hero-btn--ghost { color: #fff; border-color: rgba(255,255,255,0.5); }

  /* Scatter images: show above the names as an in-flow block on mobile */
  .acts-scatter {
    display: block;
    position: relative;
    inset: unset;
    width: 100%;
    height: 200px;
    margin-left: 24px;
    flex-shrink: 0;
    overflow: visible;
  }
  .acts-item{
    /* text-align: center; */
    font-size: 2em !important;
  }
  .acts-roll__body { text-align: center; }
  .acts-roll__list { align-items: center; justify-content: center; text-align: center;}
  .acts-roll {
    min-height: auto;
    padding: 32px 0 32px;
    gap: 12px;
    justify-content: center;  
    align-items: center;
  }
  .acts-roll__label { font-size: 10px; }
  .acts-item { font-size: clamp(20px, 7vw, 48px); }
  .acts-arrow { padding: 16px 14px; }

  .projects__row  { grid-template-columns: 1fr; }
  .projects__grid { grid-template-columns: 1fr; }
  .projects__col:first-child { border-right: none; border-bottom: none; }
  .projects__info { border-top: none; }
  .projects__desc { max-width: calc(100% - 60px); }
  .projects__info-bottom { margin-top: 10px; }
  .projects__img-wrap { cursor: pointer; }

  .services__item { grid-template-columns: 44px 1fr; gap: 16px; }
  .svc-arrow { display: none; }

  /* Footer: switch to flex so we can reorder with `order` */
  .contact__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .contact__title { order: 1; font-size: clamp(28px, 8vw, 50px); }
  .contact__right { order: 2; }
  .contact__left  { order: 3; }
  .footer__contact {
    border-bottom: 1px solid rgba(244,244,244,0.08);
    padding: 50px 0 56px;
}

  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  
}
@media (max-width: 480px) {
  :root { --gutter: 20px; }
   .projects{
    padding-bottom: 50px;
    padding-top: 50px;
  }
}


/* ============================================================
   CONTACT MODAL
   ============================================================ */
.contact-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.contact-modal.is-open { opacity: 1; pointer-events: all; }
.contact-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(6px);
}
.contact-modal__box {
  position: relative; z-index: 1;
  background: #141414;
  width: min(900px, 92vw); max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(244,244,244,0.1);
  transform: translateY(24px);
  transition: transform 0.35s ease;
}
.contact-modal.is-open .contact-modal__box { transform: translateY(0); }
.contact-modal__close {
  position: absolute; top: 20px; right: 24px;
  font-size: 18px; color: var(--gray); cursor: pointer;
  background: none; border: none; font-family: inherit;
  transition: color 0.2s ease;
}
.contact-modal__close:hover { color: var(--white); }
.contact-modal__inner {
  display: grid; grid-template-columns: 1fr 1.6fr; min-height: 440px;
}
.contact-modal__left {
  background: #0d0d0d;
  padding: 48px 36px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
  border-right: 1px solid rgba(244,244,244,0.08);
}
.contact-modal__title {
  font-size: clamp(22px, 3vw, 34px); font-weight: 700;
  line-height: 1.0;
  color: #F4F4F4; margin-bottom: 8px;
}
.contact-modal__title span { color: var(--green); }
.contact-modal__detail {
  font-size: 13px; font-weight: 300; color: var(--gray);
  transition: color 0.2s ease;
}
.contact-modal__right { padding: 48px 36px; }
@media (max-width: 640px) {
  .contact-modal__inner { grid-template-columns: 1fr; }
  .contact-modal__left { display: none; }
}

/* ============================================================
   INNER PAGES — merged from pages.css
   ============================================================ */

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  padding: calc(68px + 80px) var(--gutter) 72px;
  max-width: var(--max); margin: 0 auto;
}
.page-hero--full {
  max-width: none;
  padding-left: var(--gutter); padding-right: var(--gutter);
}
.page-hero__meta {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  color: var(--gray); margin-bottom: 20px;
}
.page-hero__title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 700; text-transform: uppercase;
  line-height: 0.88;
  color: var(--black); margin-bottom: 28px;
}
.page-hero__desc {
  max-width: 580px;
  font-size: 16px; font-weight: 300; line-height: 1.65;
  color: var(--gray);
}
/* Dark variant */
.page-hero--dark { background: var(--black); }
.page-hero--dark .page-hero__title { color: #F4F4F4; }
.page-hero--dark .page-hero__meta  { color: rgba(244,244,244,0.4); }
.page-hero--dark .page-hero__desc  { color: rgba(244,244,244,0.55); }

/* ── FILTER BAR ───────────────────────────────────────────── */
.filter-bar {
  border-top: 1px solid rgba(20,20,20,0.1);
  border-bottom: 1px solid rgba(20,20,20,0.1);
  padding: 0;
  background: #F4F4F4;
  /* position: sticky; top: 68px; z-index: 100; */
}
.filter-bar__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; gap: 32px;
  height: 52px; overflow-x: auto; white-space: nowrap;
}
.filter-group { display: flex; align-items: center; gap: 8px; }
.filter-group + .filter-group {
  padding-left: 32px;
  border-left: 1px solid rgba(20,20,20,0.1);
}
.filter-label {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
 color: rgba(20,20,20,0.35);
}
.filter-btn {
  font-family: inherit;
  font-size: 10px; font-weight: 400; text-transform: uppercase;
 color: rgba(20,20,20,0.5);
  background: none; border: none; cursor: pointer; padding: 4px 10px;
  border-radius: 0.25rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.filter-btn.is-active,
.filter-btn:hover {
  background: var(--black); color: #F4F4F4;
}

/* ── PORTFOLIO GRID ───────────────────────────────────────── */
.pg-wrap { background: #F4F4F4; padding: 56px 0 96px; }
.pg-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px 24px;
}
/* Event card (same structure as index projects) */
.ev-card {
  display: block; cursor: pointer;
  border: 1px solid rgba(20,20,20,0.07);
  border-radius: 0; overflow: hidden;
  transition: border-color 0.3s ease;
  background: #fff;
}
.ev-card:hover { border-color: rgba(20,20,20,0.2); }
.ev-card__img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
}
.ev-card__body { padding: 20px 20px 16px; }
.ev-card__top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ev-card__name {
  font-size: clamp(18px, 2.5vw, 28px); font-weight: 700;
  text-transform: uppercase;
  color: var(--black); flex: 1;
}
.ev-card__pill {
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 99px;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
}

.ev-card__desc {
  font-size: 13px; font-weight: 300; color: var(--gray);
  line-height: 1.4; margin-bottom: 12px;
}
.ev-card__bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
}
.ev-card__location {
  font-size: 12px; font-weight: 400;
  color: rgba(20,20,20,0.4);
}
.ev-card__year {
  font-size: clamp(22px, 3vw, 36px); font-weight: 700;
  color: rgba(20,20,20,0.09);
  line-height: 1; margin-bottom: -6px;
}

/* ── ARTIST GRID ──────────────────────────────────────────── */
.ag-wrap { background: #F4F4F4; padding: 56px 0 96px; }
.ag-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px 16px;
}
.artist-card {
  display: block; background: #fff;
  border: 1px solid rgba(20,20,20,0.07);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.artist-card:hover { border-color: rgba(20,20,20,0.2); }
.artist-card__img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
}
.artist-card__body { padding: 14px 14px 16px; }
.artist-card__name {
  font-size: 15px; font-weight: 700;
  text-transform: uppercase;
  color: var(--black); margin-bottom: 6px;
}
.artist-card__genre {
  font-size: 11px; font-weight: 300; color: var(--gray);
  margin-bottom: 14px; line-height: 1.4;
}
.artist-card__cta {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
 color: var(--black);
  border: 1px solid rgba(20,20,20,0.35); border-radius: 0.25rem;
  padding: 7px 14px; width: 100%; justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.artist-card__cta:hover {
  background: var(--black); color: #F4F4F4; border-color: var(--black);
}

/* ── SERVICII PAGE ────────────────────────────────────────── */
.svc-page-hero {
  min-height: 100svh;
  background: #F4F4F4;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 60px;
  position: relative; overflow: hidden;
}
.svc-page-hero__bg-text {
  position: absolute; bottom: -0.1em; left: var(--gutter);
  font-size: clamp(120px, 20vw, 260px); font-weight: 700;
  text-transform: uppercase;
  color: rgba(20,20,20,0.04);
  white-space: nowrap; pointer-events: none; user-select: none;
  line-height: 1;
}
.svc-page-hero__inner {
  max-width: var(--max); margin: 0 auto;
  padding: calc(68px + 100px) var(--gutter) 0;
}
.svc-page-hero__label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
 color: var(--gray); margin-bottom: 24px;
}
.svc-page-hero__title {
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 700; text-transform: uppercase;
  line-height: 0.88;
  color: var(--black); margin-bottom: 48px;
}
.svc-page-hero__desc {
  max-width: 560px;
  font-size: 16px; font-weight: 300; line-height: 1.65; color: var(--gray);
  margin-bottom: 48px;
}

/* Quick jump nav */
.svc-jump-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0 var(--gutter);
  max-width: var(--max); margin: 0 auto;
}
.svc-jump-btn {
  font-family: inherit;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
 color: var(--black);
  border: 1px solid rgba(20,20,20,0.2); border-radius: 0.25rem;
  padding: 8px 16px; background: none; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.svc-jump-btn:hover {
  background: var(--black); color: #F4F4F4; border-color: var(--black);
}

/* Service panel */
.svc-panel {
  padding: 60px 0 150px;
  min-height: 95vh;
  display: flex; flex-direction: column; justify-content: space-between;
}
.svc-panel--light { background: #F4F4F4; }
.svc-panel--dark  { background: var(--black); }
.svc-panel__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
}
.svc-panel__header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 40px;
}
.svc-panel__num {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
 opacity: 0.35;
}
.svc-panel--dark .svc-panel__num { color: #F4F4F4; }
.svc-panel--light .svc-panel__num { color: var(--black); }
.svc-panel__arrow {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: background 0.25s ease;
  flex-shrink: 0;
  cursor:default;
}
.svc-panel--light .svc-panel__arrow {
  border: 1px solid rgba(20,20,20,0.25); color: var(--black);
}
/* .svc-panel--light .svc-panel__arrow:hover { background: var(--black); color: #F4F4F4; border-color: var(--black); } */
.svc-panel--dark .svc-panel__arrow {
  border: 1px solid rgba(244,244,244,0.25); color: #F4F4F4;
}
/* .svc-panel--dark .svc-panel__arrow:hover { background: var(--green); color: var(--black); border-color: var(--green); } */

.svc-panel__title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700; text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 36px;
}
.svc-panel--light .svc-panel__title { color: var(--black); }
.svc-panel--dark  .svc-panel__title { color: #F4F4F4; }

/* 4-image strip */
.svc-panel__imgs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-bottom: 36px;
}
.svc-panel__imgs img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block;
}
/* Footer row: desc + big number */
.svc-panel__foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.svc-panel__foot-label {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
 margin-bottom: 8px; opacity: 0.4;
}
.svc-panel--light .svc-panel__foot-label { color: var(--black); }
.svc-panel--dark  .svc-panel__foot-label { color: #F4F4F4; }
.svc-panel__foot-desc {
  max-width: 420px;
  font-size: 15px; font-weight: 300; line-height: 1.6;
}
.svc-panel--light .svc-panel__foot-desc { color: rgba(20,20,20,0.6); }
.svc-panel--dark  .svc-panel__foot-desc { color: rgba(244,244,244,0.5); }
.svc-panel__big-num {
  font-size: clamp(60px, 10vw, 120px); font-weight: 700;
 line-height: 1;
  flex-shrink: 0;
}
.svc-panel--light .svc-panel__big-num { color: rgba(20,20,20,0.08); }
.svc-panel--dark  .svc-panel__big-num { color: rgba(244,244,244,0.07); }

/* ── ȘTIRI PAGE v2 ──────────────────────────────────────────── */

/* — Hero — */
.news-hero-v2 {
  background: #F4F4F4;
  padding: calc(68px + 56px) 0 48px;
}
.news-hero-v2__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px;
}
.news-hero-v2__title {
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 700;
  letter-spacing: -0.03em; line-height: 1;
  color: var(--black);
  white-space: nowrap;
}
.news-hero-v2__desc {
  font-size: clamp(12px, 1vw, 15px); font-weight: 400;
  line-height: 1.65; color: rgba(20,20,20,0.5);
  max-width: 360px; padding-bottom: 4px;
  flex-shrink: 0;
}

/* — Featured Cluster — */
.news-cluster {
  background: #F4F4F4;
  padding-bottom: 80px;
}
.news-cluster__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.85fr 1fr;
  gap: 4px;
}
.news-cluster__big,
.news-cluster__small {
  position: relative; display: block;
  overflow: hidden; cursor: pointer;
  text-decoration: none;
}
.news-cluster__big { min-height: 560px; }
.news-cluster__stack {
  display: flex; flex-direction: column; gap: 4px;
}
.news-cluster__small { flex: 1; min-height: 278px; }
.news-cluster__img-wrap {
  position: absolute; inset: 0;
}
.news-cluster__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.news-cluster__big:hover .news-cluster__img-wrap img,
.news-cluster__small:hover .news-cluster__img-wrap img {
  transform: scale(1.04);
}
.news-cluster__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
}
.news-cluster__body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 24px; z-index: 2;
}
.news-cluster__text {
  display: flex; flex-direction: column; gap: 6px;
}
.news-cluster__date {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(244,244,244,0.6);
}
.news-cluster__big .news-cluster__title {
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 700; text-transform: uppercase;
  line-height: 1.0; color: var(--white);
  letter-spacing: -0.02em;
}
.news-cluster__small .news-cluster__title {
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 700; text-transform: uppercase;
  line-height: 1.05; color: var(--white);
  letter-spacing: -0.01em;
}

/* — Section divider / "see more" label — */
.news-divider {
  background: #F4F4F4;
}
.news-divider__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 40px var(--gutter) 10px;
  display: flex; align-items: center; gap: 20px;
}
.news-divider__link {
  font-size: 2.5em; font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
  white-space: nowrap;

}
.news-divider__line {
  flex: 1; height: 1px; background: rgba(20,20,20,0.08);
}

/* — 3-col grid row — */
.news-grid-v2 {
  background: #F4F4F4;
  padding: 0 0 80px;
}
.news-grid-v2__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 4px;
}
.news-grid-card {
  display: block; text-decoration: none;
  padding: 5px 0 30px 0;
  /* border-right: 1px solid rgba(20,20,20,0.08); */
  transition: opacity 0.2s ease;
}
/* .news-grid-card:last-child { border-right: none; } */
/* .news-grid-card:hover { opacity: 0.9; } */
.news-grid-card__img-wrap {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  margin-bottom: 20px;
  /* border-radius: 4px; */
}
.news-grid-card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.news-grid-card:hover .news-grid-card__img-wrap img { transform: scale(1.04); }
.news-grid-card__title {
  font-size: clamp(14px, 1.2vw, 17px); font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 1.15; color: var(--black); margin-bottom: 10px;
}
.news-grid-card__date {
  font-size: 10px; font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.07em; color: rgba(20,20,20,0.35);
}
.btn-outline {
  display: inline-flex; align-items: center;
  font-family: inherit; font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  color: var(--black); border: 1px solid rgba(20,20,20,0.3);
  border-radius: 0.25rem; padding: 13px 40px; background: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-outline:hover { background: var(--black); color: #F4F4F4; border-color: var(--black); }
.btn-outline--dark {
  color: #F4F4F4; border-color: rgba(244,244,244,0.3);
}
.btn-outline--dark:hover { background: var(--green); color: var(--black); border-color: var(--green); }

/* ── DESPRE NOI PAGE ──────────────────────────────────────── */
.about-hero {
  background: var(--black);
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 72px;
}
.about-hero__inner {
  max-width: var(--max); margin: 0 auto;
  padding: calc(68px + 80px) var(--gutter) 0;
}
.about-hero__eyebrow {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
 color: var(--green); margin-bottom: 24px;
}
.about-hero__title {
  font-size: clamp(44px, 7vw, 100px);
  font-weight: 700; text-transform: uppercase;
  line-height: 0.9; color: #F4F4F4;
  margin-bottom: 36px;
}
.about-hero__sub {
  max-width: 620px;
  font-size: 16px; font-weight: 300; line-height: 1.7;
  color: rgba(244,244,244,0.55);
}

.about-full-img {
  width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block;
}
.about-body { background: #F4F4F4; }
body:has(.team-section) { background: #F4F4F4; }
.about-section {
  max-width: var(--max); margin: 0 auto;
  padding: 80px var(--gutter);
  border-bottom: 1px solid rgba(20,20,20,0.08);
}
.about-section:last-child { border-bottom: none; }
.about-section__label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
 color: var(--green); margin-bottom: 24px;
}
.about-section__title {
  font-size: clamp(28px, 4vw, 52px); font-weight: 700;
  text-transform: uppercase;
  color: var(--black); margin-bottom: 28px; line-height: 0.95;
}
.about-section__text {
  max-width: 700px;
  font-size: 16px; font-weight: 300; line-height: 1.75; color: rgba(20,20,20,0.65);
}
.about-section__text + .about-section__text { margin-top: 20px; }
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.about-list {
  display: flex; flex-direction: column; gap: 10px;
  list-style: none; margin-top: 20px;
}
.about-list li {
  font-size: 14px; font-weight: 300; color: rgba(20,20,20,0.65);
  padding: 12px 0; border-bottom: 1px solid rgba(20,20,20,0.08);
  display: flex; align-items: center; gap: 12px;
}
.about-list li::before {
  content: '→'; color: var(--green); font-size: 13px; flex-shrink: 0;
}
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(20,20,20,0.08);
  border-bottom: 1px solid rgba(20,20,20,0.08);
}
.about-stat {
  padding: 40px 0; text-align: center;
  border-right: 1px solid rgba(20,20,20,0.08);
}
.about-stat:last-child { border-right: none; }
.about-stat__num {
  font-size: clamp(40px, 6vw, 72px); font-weight: 700;
 color: var(--black); line-height: 1;
}
.about-stat__label {
  font-size: 10px; font-weight: 400; text-transform: uppercase;
 color: var(--gray); margin-top: 8px;
}
.about-imgs-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 40px 0;
}
.about-imgs-row img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* About CTA */
.about-cta {
  background: var(--black);
  padding: 100px var(--gutter);
  text-align: center;
}
.about-cta__title {
  font-size: clamp(36px, 6vw, 80px); font-weight: 700;
  text-transform: uppercase;
  color: #F4F4F4; line-height: 0.9; margin-bottom: 36px;
}
.about-cta__title span { color: var(--green); }
.about-cta__btns { display: flex; gap: 16px; justify-content: center; }

/* ── DESPRE NOI v2 ────────────────────────────────────────── */

/* Big justified intro text (replaces hero) */
.about-intro-text {
  background: var(--white);
  padding: calc(68px + 80px) 0 80px;
}
.about-intro-text__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
}
.about-intro-text__body {
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 700; text-align: justify;
  text-transform: uppercase;
  text-indent: clamp(50px, 13vw, 280px);
  color: var(--black);
  line-height: 1.05;
}

/* Label colour override for white sections */
.about-portfolio .about-section__label,
.about-public .about-section__label,
.about-private .about-section__label {
  color: rgba(20,20,20,0.38);
}

/* Portfolio */
.about-portfolio {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid rgba(20,20,20,0.08);
}
.about-portfolio__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
}
.about-portfolio__lead {
  font-size: clamp(16px, 1.8vw, 24px); font-weight: 400;
  color: rgba(20,20,20,0.55);
  line-height: 1.45; max-width: 680px;
  margin-top: 12px;
}
.about-proj-grid { margin-top: 48px; }
.about-proj-grid .projects__row {
  max-width: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}

/* Public events */
.about-public {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid rgba(20,20,20,0.08);
}
.about-public__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
}
.about-public__title {
  font-size: clamp(26px, 3.5vw, 48px); font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.02em;
  color: var(--black); line-height: 0.95;
  margin-top: 12px; margin-bottom: 24px; max-width: 820px;
}
.about-public__text {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: rgba(20,20,20,0.6);
  max-width: 740px; margin-bottom: 32px;
}
.about-public__tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 48px;
}
.about-posters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.about-poster {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; display: block;
}
.about-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(20,20,20,0.5);
  border: 1px solid rgba(20,20,20,0.15);
  padding: 11px 22px; border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
}
.about-tag:hover { color: var(--black); border-color: rgba(20,20,20,0.4); }

/* Private & corporate */
.about-private {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid rgba(20,20,20,0.08);
}
.about-private__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-private__title {
  font-size: clamp(26px, 3.5vw, 48px); font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.02em;
  color: var(--black); line-height: 0.95;
  margin-top: 12px; margin-bottom: 28px;
}
.about-private__body {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: rgba(20,20,20,0.6);
}
.about-private__body + .about-private__body { margin-top: 18px; }
.about-private__img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
}

@media (max-width: 768px) {
  .about-intro-text__body { font-size: clamp(18px, 5vw, 28px); text-align: justify; }
  .about-posters { grid-template-columns: repeat(2, 1fr); }
  .about-private__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── EVENT PAGE ───────────────────────────────────────────── */

/* Hero */
.ev-hero {
  background: #F4F4F4;
  padding-top: calc(68px + 48px);
}
.ev-hero__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter) 0;
}
.ev-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
 color: rgba(20,20,20,0.45);
  transition: color 0.2s ease; margin-bottom: 48px;
  text-decoration: none;
}
.ev-back:hover { color: var(--black); }
.ev-back__icon { font-size: 14px; }

.ev-hero__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: end; gap: 24px;
  padding-bottom: 48px;
}
.ev-hero__label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
 color: var(--black); margin-bottom: 14px;
}
.ev-hero__desc {
  font-size: 16px; font-weight: 300; line-height: 1.3;
  color: rgba(20,20,20,0.5); max-width: 500px;
}
.ev-hero__title {
  font-size: clamp(40px, 6vw, 88px); font-weight: 700;
  color: var(--black); line-height: 0.9;
  text-align: right; margin: 0;
}

/* Parallax image container */
.ev-hero__img-wrap {
  width: 100%;
  /* height: clamp(570px, 65vw, 900px); */
  overflow: hidden; display: block;
  aspect-ratio: 15/8;
}
.ev-hero__img {
  width: 100%; height: 102%; /* oversized so parallax shift doesn't show edge */
  object-fit: cover; display: block;
  transform-origin: center top;
  will-change: transform;
}

/* Body */
.event-body { background: #F4F4F4; }
.event-section {
  max-width: var(--max); margin: 0 auto;
  padding: 32px var(--gutter) 40px;
  border-bottom: 1px solid rgba(20,20,20,0.08);
}
.event-section__eyebrow {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  color: var(--black); margin-bottom: 28px;
}
.event-section__cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 34px; color: var(--gray);
}
.event-section__body {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: var(--black);
}

/* Facts */
.event-facts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid rgba(20,20,20,0.08);
  border-bottom: 1px solid rgba(20,20,20,0.08);
}
.event-fact {
  padding: 32px 32px;
  border-right: 1px solid rgba(20,20,20,0.08);
}
.event-fact:first-child { padding-left: 0; }
.event-fact:last-child { border-right: none; padding-right: 0; }
.event-fact__label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
 color: var(--gray); margin-bottom: 10px;
}
.event-fact__val {
  font-size: 17px; font-weight: 400; color: var(--black); line-height: 1.3;
}

/* Gallery — alternating: full / half+half / full / half+half */
.event-gallery { width: 100%; }

/* Wrappers define the visible area; overflow:hidden clips the taller image */
.ev-gal__full {
  width: 100%; aspect-ratio: 21/9; overflow: hidden; position: relative;
}
.ev-gal__pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.ev-gal__half-wrap {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
}

/* Image is 120% tall, centered via top:-10%, giving 10% buffer top & bottom for parallax travel */
.ev-gal__img {
  position: absolute;
  top: -10%; left: 0;
  width: 100%; height: 120%;
  object-fit: cover; display: block;
  will-change: transform;
}

/* CTA */
.event-cta {
  background: var(--black); text-align: center;
  padding: 96px var(--gutter);
}
.event-cta__title {
  font-size: clamp(32px, 5vw, 64px); font-weight: 700;
  text-transform: uppercase;
  color: #F4F4F4; line-height: 0.9; margin-bottom: 32px;
}
.event-cta__title span { color: var(--green); }
.event-cta__btns { display: flex; gap: 16px; justify-content: center; }

/* Alte proiecte */
.next-items {
  background: var(--white);
  /* No padding-bottom — full-bleed cards go edge to edge, footer follows directly */
}

/* Full-bleed overlay cards — edge to edge, 50vw each */
.ev-next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ev-next-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.ev-next-card__img-wrap {
  width: 100%;
  height: clamp(220px, 34vw, 560px); /* matches portfolio page card height */
  overflow: hidden;
}

.ev-next-card__img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.ev-next-card:hover .ev-next-card__img { transform: scale(1.03); }

.ev-next-card__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 24px 28px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0,0,0,0.5) 100%
  );
  pointer-events: none; /* let mouse events pass through to the card/img-wrap */
}

/* Dark trigger bar above the overlay cards */
.next-items .section-trigger {
  background: var(--black);
  border-top: none;
}
.next-items .trigger-inner {
  max-width: none;   /* cards are full-bleed — no max-width container */
  padding: 15px 28px;   /* match card overlay padding exactly */
}
.next-items .trigger-text { color: #ffffff; font-size: 12px;}
.next-items .trigger-btn  {
  background: transparent;
  color: var(--green);
  border-bottom: 1px solid rgba(209,250,48,0.5);
  border-radius: 0;
  padding: 0 0 2px 0;
  font-size: 12px;
}
.next-items .trigger-btn:hover { background: transparent; color: var(--green); border-bottom-color: var(--green); opacity: 1; }

.ev-next-card__top,
.ev-next-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ev-next-card__title,
.ev-next-card__year,
.ev-next-card__location {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase;
  color: #ffffff; line-height: 1;
}

/* Type pill — reuses existing pill-- color tokens */
.ev-next-card__type {
  display: inline-flex; align-items: center;
  padding: 5px 13px; border-radius: 100px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap; line-height: 1;
  color: #141414; /* pill text is always dark — colored bg handles contrast */
}

/* ── ARTIST PAGE ──────────────────────────────────────────── */
.artist-header {
  background: var(--black);
  padding: calc(68px + 60px) 0 0;
}
.artist-header__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start;
}
.artist-header__imgs {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto;
  gap: 8px;
}
.artist-header__img { width: 100%; object-fit: cover; display: block; }
.artist-header__img:first-child {
  grid-column: 1 / -1; aspect-ratio: 16/9;
}
.artist-header__img:not(:first-child) { aspect-ratio: 1/1; }

.artist-header__form-wrap {
  position: sticky; top: calc(68px + 24px);
  padding-bottom: 60px;
}
.artist-header__form-wrap h2 {
  font-size: clamp(22px, 3vw, 34px); font-weight: 700;
  text-transform: uppercase;
  color: #F4F4F4; margin-bottom: 8px; line-height: 1;
}
.artist-header__form-wrap h2 span { color: var(--green); }
.artist-header__form-wrap p {
  font-size: 13px; font-weight: 300; color: rgba(244,244,244,0.5);
  margin-bottom: 32px;
}

/* Artist body */
.artist-body { background: #F4F4F4; }
.artist-section {
  max-width: var(--max); margin: 0 auto;
  padding: 64px var(--gutter);
  border-bottom: 1px solid rgba(20,20,20,0.08);
}
.artist-section__label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
 color: var(--gray); margin-bottom: 16px;
}
.artist-section__text {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: rgba(20,20,20,0.65); max-width: 720px;
}
.artist-embed {
  width: 100%; aspect-ratio: 16/9; border: none; display: block; border-radius: 0.65rem;
}

/* ── PORTFOLIO FILTER BAR ─────────────────────────────────── */
.pf-filter-bar {
  background: #F4F4F4;
  border-bottom: 1px solid rgba(20,20,20,0.08);
  padding: 0 var(--gutter);
}
.pf-filter-inner {
  max-width: var(--max); margin: 0 auto;
  height: 52px;
  display: flex; align-items: center; gap: 0;
  justify-content: space-between;
}
.pf-filter-left {
  display: flex; align-items: center;
}
.pf-filter-trigger {
  display: inline-flex; align-items: center; gap: 3px;
  font-family: inherit; font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  color: var(--black); background: none; border: none; cursor: pointer;
  padding: 0; flex-shrink: 0; line-height: 1;
  transition: opacity 0.2s ease;
}
.pf-filter-trigger:hover { opacity: 0.55; }
.pf-filter-trigger__icon {
  margin-top: -4px;
  font-size: 17px; font-weight: 300;
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.pf-filter-trigger.is-open .pf-filter-trigger__icon { transform: rotate(-45deg); margin-top: -3px; margin-left: -1px; }

/* Options panel — slides in horizontally */
.pf-filter-options {
  display: flex; align-items: center; gap: 4px;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  margin-left: 0;
  transition: max-width 0.45s cubic-bezier(0.22,1,0.36,1),
              opacity 0.3s ease,
              margin-left 0.45s cubic-bezier(0.22,1,0.36,1);
  white-space: nowrap;
}
.pf-filter-options.is-open {
  max-width: 700px;
  opacity: 1;
  margin-left: 24px;
}
.pf-filter-btn {
  font-family: inherit;
  font-size: 10px; font-weight: 400; text-transform: uppercase;
 color: rgba(20,20,20,0.5);
  background: none; border: 1px solid transparent;
  cursor: pointer; padding: 5px 14px; border-radius: 99px;
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pf-filter-btn:hover { color: var(--black); }
.pf-filter-btn.is-active {
  background: var(--black); color: #F4F4F4; border-color: var(--black);
}

/* ── PAGE SECTION DIVIDER ─────────────────────────────────── */
.section-divider {
  height: 1px; background: rgba(20,20,20,0.08);
  max-width: var(--max); margin: 0 auto;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ag-inner { grid-template-columns: repeat(2, 1fr); }
  .pg-inner { grid-template-columns: 1fr; }
  .svc-panel__imgs { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-cols { grid-template-columns: 1fr; }
  .artist-header__inner { grid-template-columns: 1fr; }
  /* news v2 responsive */
  .news-cluster__inner { grid-template-columns: 1.4fr 1fr; }
  .news-grid-v2__inner { grid-template-columns: 1fr 1fr; gap: 0 16px; }
  .news-grid-card:last-child { display: none; }
  /* event-facts handled in 768px block above */
}
@media (max-width: 768px) {
  .news-hero-v2__inner { align-items: flex-start; flex-direction: column; gap: 20px; }
  .news-hero-v2__desc { max-width: 100%; }
  .news-cluster__inner { grid-template-columns: 1fr; }
  .news-cluster__big { min-height: 60vw; }
  .news-cluster__small { min-height: 48vw; }
  .news-cluster__stack { gap: 4px; }
  .news-grid-v2__inner { grid-template-columns: 1fr; gap: 0; }
  .news-grid-card { border-right: none; border-bottom: 1px solid rgba(20,20,20,0.08); }
  .news-grid-card:last-child { display: block; border-bottom: none; }
}
@media (max-width: 640px) {
  .ag-inner { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .filter-bar__inner { gap: 16px; }
  .filter-group + .filter-group { padding-left: 16px; }
  .svc-panel__imgs { grid-template-columns: repeat(2, 1fr); }
  .about-imgs-row { grid-template-columns: 1fr; }
}

/* ── PORTFOLIO FILTER — mobile chip strip ────────────────────────────
   Must stay at end of file — wins cascade without !important.
   ────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .pf-filter-bar { position: relative; }

  /* Single-row scrollable chip strip — drops below bar */
  .pf-filter-options {
    position: absolute;
    top: 52px; left: 0; right: 0;
    max-width: none;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;        /* Firefox */
    margin-left: 0;
    gap: 8px;
    align-items: center;
    background: #F4F4F4;
    border-bottom: 1px solid rgba(20,20,20,0.08);
    padding: 10px var(--gutter);
    z-index: 50;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22,1,0.36,1);
  }

  
  .pf-filter-options::-webkit-scrollbar { display: none; } /* Chrome/Safari */

  .pf-filter-options.is-open {
    opacity: 1;
    pointer-events: all;
    max-width: none;
    margin-left: 0;
    transform: translateY(0);
  }

  /* Slightly larger touch targets */
  .pf-filter-btn {
    padding: 8px 20px;
    font-size: 11px;
    flex-shrink: 0;
  }
}

/* ============================================================
   BOOKING ARTIȘTI PAGE
   ============================================================ */
.ba-wrap {
  background: #F4F4F4;
  padding: 56px 0 96px;
}
.ba-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  row-gap: 48px;
}

/* Card — mirrors projects__col exactly, adapted for artists */
.ba-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.ba-card__img-wrap {
  width: 100%;
  /* height: clamp(280px, 32vw, 560px); */
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
}
.ba-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.ba-card:hover .ba-card__img-wrap img { transform: scale(1.04); }

.ba-card__info {
  display: flex;
  flex-direction: column;
  padding: 20px 0 0;
  border-top: 1px solid rgba(20,20,20,0.07);
}
.ba-card__name {
  font-size: clamp(16px, 1.5vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 8px;
}
.ba-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.4;
  margin-bottom: 20px;
}
.ba-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid rgba(20,20,20,0.35);
  border-radius: 0.25rem;
  padding: 9px 16px;
  width: 100%;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.ba-card:hover .ba-card__cta {
  background: var(--black); color: #F4F4F4; border-color: var(--black);
}

/* Responsive */
@media (max-width: 1024px) {
  .ba-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .ba-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ba-card__img-wrap { height: clamp(180px, 45vw, 320px); }
}
@media (max-width: 480px) {
  .ba-inner { grid-template-columns: 1fr; }
  .ba-card__img-wrap { height: clamp(240px, 70vw, 380px); }
}

/* ============================================================
   ARTIST PAGE — rework (white bg, non-sticky form, portrait grid)
   ============================================================ */

/* White background throughout header */
.artist-header {
  background: #fff;
  padding: calc(68px + 60px) 0 60px;
}

/* Two-column: left (photos+meta) | right (form) — stretch = equal column heights */
.artist-header__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 64px; align-items: stretch;
}

/* Left wrapper — photos above, meta tag below */
.artist-header__left { display: flex; flex-direction: column; gap: 16px; }

/* Photo grid: 7:5 ratio, 1 big left spanning both rows + 2 smaller stacked right */
.artist-header__imgs {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
}
.artist-header__img {
  width: 100%; object-fit: cover; display: block;
  aspect-ratio: 7/5;
}
.artist-header__img:first-child {
  grid-column: 1; /* reset old grid-column: 1 / -1 */
  grid-row: 1 / 3;
  height: 100%; /* fill the combined row span */
  aspect-ratio: unset;
}
.artist-header__img:not(:first-child) {
  /* aspect-ratio: 7/5 inherited from base rule */
}

/* Meta line below photos */
.artist-meta {
  font-size: 11px; font-weight: 400;
  color: rgba(20,20,20,0.45);
  padding-top: 0;
}

/* Form — static (not sticky), dark text on white, fills full column height
   Double-class selectors beat old .artist-header__form-wrap p (0,1,1) */
.artist-header .artist-header__form-wrap {
  position: static;
  padding-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
/* Form stretches to fill remaining height below title/desc */
.artist-header .artist-booking-form {
  flex: 1;
  min-height: 0;
}
/* Textarea form-group grows to fill available vertical space */
.artist-header .artist-booking-form .form-group:has(textarea) {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.artist-header .artist-booking-form .form-group:has(textarea) textarea {
  flex: 1;
  resize: none;
  min-height: 80px;
}
.artist-header .artist-header__eyebrow {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  color: rgba(20,20,20,0.35); margin-bottom: 12px;
}
.artist-header .artist-header__title {
  font-size: clamp(22px, 3vw, 34px); font-weight: 700;
  text-transform: uppercase; color: var(--black);
  margin-bottom: 8px; line-height: 1;
}
/* no span in title anymore — removed "— Book Now" */
.artist-header .artist-header__desc {
  font-size: 13px; font-weight: 300;
  color: rgba(20,20,20,0.5); margin-bottom: 32px;
}

/* Form inputs — light bg context (override dark defaults) */
.artist-booking-form .form-group input,
.artist-booking-form .form-group textarea {
  background: transparent;
  border-bottom-color: rgba(20,20,20,0.15);
  color: var(--black);
}
.artist-booking-form .form-group input::placeholder,
.artist-booking-form .form-group textarea::placeholder {
  color: rgba(20,20,20,0.35);
}
.artist-booking-form .form-group label {
  color: rgba(20,20,20,0.55);
}
.artist-booking-form .form-group input:focus,
.artist-booking-form .form-group textarea:focus {
  border-bottom-color: var(--black);
}
/* Submit button — black on white (neon green is illegible on white bg) */
.artist-booking-form .btn-submit {
  background: var(--black);
  color: #F4F4F4;
  border-color: var(--black);
}
.artist-booking-form .btn-submit:hover {
  background: transparent;
  color: var(--black);
}

/* Bio section */
.artist-bio__title {
  font-size: clamp(22px, 2.5vw, 32px); font-weight: 700;
  text-transform: uppercase; color: var(--black);
  margin-bottom: 28px; line-height: 1.05;
}
.artist-bio__body { max-width: 720px; }
.artist-bio__body p {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: rgba(20,20,20,0.65); margin-bottom: 20px;
}
.artist-bio__body p:last-child { margin-bottom: 0; }

/* Rich text elements from TinyMCE inside artist bio */
.artist-bio__body h1,
.artist-bio__body h2 {
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 1.1;
  color: var(--black);
  margin-top: 40px; margin-bottom: 14px;
}
.artist-bio__body h3,
.artist-bio__body h4 {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.02em; line-height: 1.2;
  color: var(--black);
  margin-top: 28px; margin-bottom: 10px;
}
.artist-bio__body h1:first-child,
.artist-bio__body h2:first-child,
.artist-bio__body h3:first-child { margin-top: 0; }
.artist-bio__body strong, .artist-bio__body b { font-weight: 700; color: var(--black); }
.artist-bio__body em, .artist-bio__body i { font-style: italic; }
.artist-bio__body a { color: var(--black); text-decoration: underline; }
.artist-bio__body a:hover { opacity: .65; }
.artist-bio__body ul,
.artist-bio__body ol {
  padding-left: 1.4em; margin-bottom: 20px;
  color: rgba(20,20,20,0.65);
}
.artist-bio__body ul { list-style: disc; }
.artist-bio__body ol { list-style: decimal; }
.artist-bio__body li { font-size: 15px; font-weight: 300; line-height: 1.8; margin-bottom: 6px; }
.artist-bio__body blockquote {
  border-left: 3px solid var(--black);
  padding: 10px 0 10px 20px;
  margin: 28px 0;
  font-style: italic;
  color: rgba(20,20,20,0.55);
}
.artist-bio__body hr {
  border: none; border-top: 1px solid rgba(20,20,20,0.12);
  margin: 36px 0;
}
.artist-bio__body code {
  font-family: monospace; font-size: .9em;
  background: rgba(20,20,20,0.06); border-radius: 3px;
  padding: .1em .35em;
}
.artist-bio__body pre {
  background: rgba(20,20,20,0.06); border-radius: 6px;
  padding: 16px; overflow-x: auto; margin-bottom: 20px;
}
.artist-bio__body pre code { background: none; padding: 0; }

/* Taller Spotify embed */
.artist-embed--spotify {
  height: 520px;
  aspect-ratio: unset;
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .artist-header__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .artist-header__imgs { grid-template-columns: 2fr 1fr; }
  .artist-header__img { aspect-ratio: 7/5; }
 
}

/* ── PHONE INPUT WITH COUNTRY PREFIX ─────────────────────────
   Works in both dark (footer/modal) and light (artist booking) contexts
   ────────────────────────────────────────────────────────── */
.phone-input {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(244,244,244,0.18);
  transition: border-color 0.3s ease;
}
.phone-input:focus-within { border-bottom-color: var(--green); }

.phone-prefix {
  flex-shrink: 0;
  background: transparent;
  border: none;
  outline: none;
  color: rgba(244,244,244,0.7);
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  padding: 10px 20px 10px 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  /* chevron arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='rgba(244,244,244,0.35)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
.phone-prefix::-ms-expand { display: none; }

.phone-input__divider {
  width: 1px; height: 14px;
  background: rgba(244,244,244,0.2);
  flex-shrink: 0;
  margin-right: 10px;
}

/* Number input — no own border (border lives on .phone-input wrapper) */
.phone-input input[type="tel"] {
  flex: 1; min-width: 0;
  background: transparent;
  border: none;
  border-bottom: none;
  padding: 10px 0;
  color: #F4F4F4;
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  width: 100%;
}
.phone-input input[type="tel"]::placeholder { color: rgba(132,132,132,0.45); }

/* White-bg context (artist booking form) */
.artist-booking-form .phone-input {
  border-bottom-color: rgba(20,20,20,0.15);
}
.artist-booking-form .phone-input:focus-within {
  border-bottom-color: var(--black);
}
.artist-booking-form .phone-prefix {
  color: rgba(20,20,20,0.65);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='rgba(20,20,20,0.35)'/%3E%3C/svg%3E");
}
.artist-booking-form .phone-input__divider {
  background: rgba(20,20,20,0.15);
}
.artist-booking-form .phone-input input[type="tel"] {
  color: var(--black);
}
.artist-booking-form .phone-input input[type="tel"]::placeholder {
  color: rgba(20,20,20,0.35);
}

/* ── PHONE COUNTRY SELECTOR (custom searchable dropdown) ─────── */
.phone-country {
  position: relative;
  flex-shrink: 0;
}

.phone-country__trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 10px 10px 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  color: rgba(244,244,244,0.75);
  outline: none;
  white-space: nowrap;
  line-height: 1;
}

.phone-country__arrow {
  font-size: 9px;
  opacity: 0.45;
  transition: transform 0.2s ease;
  display: inline-block;
}
.phone-country.is-open .phone-country__arrow {
  transform: rotate(180deg);
}

.phone-country__dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 260px;
  background: #1a1a1a;
  border: 1px solid rgba(244,244,244,0.1);
  border-radius: 4px;
  z-index: 600;
  overflow: clip; /* clip visually without creating a scroll container */
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.phone-country__dropdown[hidden] { display: none; }

.phone-country__search-wrap {
  padding: 8px;
  border-bottom: 1px solid rgba(244,244,244,0.07);
}
.phone-country__search {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(244,244,244,0.1);
  border-radius: 3px;
  padding: 7px 10px;
  color: #F4F4F4;
  font-family: inherit;
  font-size: 12px;
  font-weight: 300;
  outline: none;
  box-sizing: border-box;
}
.phone-country__search::placeholder { color: rgba(244,244,244,0.3); }

.phone-country__list {
  list-style: none;
  margin: 0; padding: 4px 0;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(244,244,244,0.15) transparent;
}
.phone-country__list::-webkit-scrollbar { width: 4px; }
.phone-country__list::-webkit-scrollbar-thumb {
  background: rgba(244,244,244,0.15);
  border-radius: 2px;
}

.phone-country__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 300;
  color: rgba(244,244,244,0.65);
  transition: background 0.12s ease, color 0.12s ease;
  line-height: 1.3;
}
.phone-country__option:hover { background: rgba(244,244,244,0.07); color: #F4F4F4; }
.phone-country__option.is-active { color: var(--green); }
.phone-country__option-name { flex: 1; }
.phone-country__option-code {
  font-size: 11px;
  opacity: 0.5;
  flex-shrink: 0;
}

.phone-country__empty {
  padding: 12px;
  font-size: 12px;
  color: rgba(244,244,244,0.3);
  text-align: center;
}

/* White-bg context (artist booking form) */
.artist-booking-form .phone-country__trigger { color: rgba(20,20,20,0.65); }
.artist-booking-form .phone-country__dropdown {
  background: #fff;
  border-color: rgba(20,20,20,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.artist-booking-form .phone-country__search {
  background: rgba(20,20,20,0.04);
  border-color: rgba(20,20,20,0.1);
  color: var(--black);
}
.artist-booking-form .phone-country__search::placeholder { color: rgba(20,20,20,0.3); }
.artist-booking-form .phone-country__search-wrap { border-bottom-color: rgba(20,20,20,0.07); }
.artist-booking-form .phone-country__option { color: rgba(20,20,20,0.6); }
.artist-booking-form .phone-country__option:hover { background: rgba(20,20,20,0.05); color: var(--black); }
.artist-booking-form .phone-country__option.is-active { color: var(--black); font-weight: 500; }
.artist-booking-form .phone-country__empty { color: rgba(20,20,20,0.3); }

/* ── SERVICII HERO: scattered floating images ────────────────── */
.svc-hero {
  position: relative;
  min-height: 100svh;
  background: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(68px + 60px) var(--gutter) 80px;
  overflow: hidden;
}

.svc-hero__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.svc-hero__float {
  position: absolute;
  display: block;
  object-fit: cover;
  border-radius: 3px;
  will-change: transform;
}

/* Per-image rotations — CSS rotate composites cleanly with GSAP x/y transform */
.svc-hero__float:nth-child(1) { rotate: -7deg; }
.svc-hero__float:nth-child(2) { rotate:  4deg; }
.svc-hero__float:nth-child(3) { rotate: -2deg; }
.svc-hero__float:nth-child(4) { rotate:  5deg; }
.svc-hero__float:nth-child(5) { rotate: -4deg; }
.svc-hero__float:nth-child(6) { rotate:  8deg; }
.svc-hero__float:nth-child(7) { rotate: -5deg; }
.svc-hero__float:nth-child(8) { rotate:  3deg; }

.svc-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: min(1100px, 90vw);
}

.svc-hero__title {
  font-size: 6.5em;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.88;
  color: var(--black);
  margin-bottom: 0;
}

/* Description lives outside the centered flex block — anchored lower in the section */
.svc-hero__desc {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: max-content;
  max-width: min(560px, 80vw);
  text-align: center;
  font-size: .8em;
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  text-transform: uppercase;
  mix-blend-mode: difference; /* invert text color against background for better contrast */
}

@media (max-width: 768px) {
  .svc-hero {
    padding-top: calc(68px + 32px);
    padding-bottom: 0; /* description is position:absolute so padding only adds dead space */
  }

  /* Show scattered images on mobile */
  .svc-hero__field { display: block; }

  /* Slightly larger than before, rounded corners */
  .svc-hero__float {
    width: clamp(72px, 21vw, 96px) !important;
    border-radius: 5px;
  }

  /*
   * Two safe zones around the headline.
   * The flex-centered title occupies roughly top 48–64% of the section.
   * Images must stay either above ~43% or below ~67% — nothing in between.
   *
   * TOP ZONE   (top  5–40%): images 1, 2, 3, 4
   * BOTTOM ZONE (top 67–80%): images 5, 6, 7, 8
   */


  .svc-hero__float:nth-child(1) { top: 10% !important; left: 6% !important; }
  /* Image 2 — pull down into upper zone (was top:12%) */
  .svc-hero__float:nth-child(2) { top: 29% !important; left: 32% !important; height: clamp(100px, 18vw, 88px) !important; width: auto !important; }
  .svc-hero__float:nth-child(3) { top: 7% !important; left: 40% !important; }
  /* Image 4 — keep below image 3 but above the title (was top:7%) */
  .svc-hero__float:nth-child(4) { top: 10% !important; left: 73% !important;}
  /* Image 5 — move from top:10% (top-right) to bottom zone right side */
  .svc-hero__float:nth-child(5) { top: 67% !important; left: 73% !important; rotate: 9deg !important; scale: .9 !important; }
  /* Images 6, 7, 8 — switch from bottom-anchored to top-anchored, below the title */
  .svc-hero__float:nth-child(6) { bottom: auto !important; top: 68% !important; height: clamp(100px, 18vw, 88px) !important; width: auto !important; }
  .svc-hero__float:nth-child(7) {display: block !important; bottom: auto !important; top: 70% !important; left: 46% !important; /* centre-bottom */}
  .svc-hero__float:nth-child(8) {display: none !important;}


  .svc-hero__title {
    font-size: 2em;
    line-height: 0.9;
    margin-top: -80px;
  }

  /* Tighten description to sit cleanly at the bottom */
  .svc-hero__desc {
    font-size: 11px;
    max-width: min(480px, 88vw);
    bottom: 3%;
  }
}

/* ── ARTIST HEADER: alignment fix ──────────────────────────────────────
   imgs, form-wrap, artist-meta are now direct grid children.
   Grid auto-placement: imgs→(col1,row1)  form-wrap→(col2,row1)  meta→(col1,row2)
   Result: images and form are exactly the same height at all viewports.
   ────────────────────────────────────────────────────────────────────── */

/* Add a row gap between the images row and the meta text row */
.artist-header__inner {
  row-gap: 12px;
  /* column-gap stays 64px from earlier gap:64px shorthand */
}

/* Image grid fills 100% of its grid area height (= form height via stretch) */
.artist-header__imgs {
  height: 100%;
  grid-template-rows: 1fr 1fr; /* equal rows that fill the column height */
}

/* All images: height driven by parent grid rows, not by aspect-ratio */
.artist-header__img {
  height: 100%;
  aspect-ratio: unset;
}

/* Mobile: restore aspect-ratio sizing (single-column stack, no cross-alignment needed) */
@media (max-width: 1024px) {
  .artist-header__imgs {
    height: auto;
    grid-template-rows: auto auto;
  }
  .artist-header__img { aspect-ratio: 7/5; }
  .artist-header__img:first-child { aspect-ratio: unset; height: 100%; }
}

/* ── SVC PANELS: redesign ─────────────────────────────────────── */

/* Hide the old num header entirely */
.svc-panel__header { display: none; }

/* New top row: title left, arrow right */
.svc-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

/* Large mixed-case title — override the existing uppercase rule */
.svc-panel__title {
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 0;
}

/* Bigger circular arrow */
.svc-panel__arrow {
  width: 68px;
  height: 68px;
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 6px; /* nudge down to optical-align with title cap-height */
}

/* Portrait images (was 3/2 landscape) */
.svc-panel__imgs img {
  aspect-ratio: 4 / 5;
}

/* Slightly heavier description text */
.svc-panel__foot-desc { font-weight: 400; }

/* Bigger faded number */
.svc-panel__big-num { font-size: clamp(72px, 12vw, 148px); }

/* ── SVC PANELS: mobile layout ─────────────────────────────────── */
@media (max-width: 768px) {
  /* Reduce vertical padding on mobile */
  .svc-panel { padding: 48px 0 56px; min-height: auto; }

  /* Title + arrow stay on the same row — like the reference */
  .svc-panel__top {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }

  /* Slightly smaller arrow on mobile */
  .svc-panel__arrow {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-top: 4px;
    flex-shrink: 0;
  }

  /* ONE full-width landscape image instead of 4 portrait columns */
  .svc-panel__imgs {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }
  .svc-panel__imgs img {
    aspect-ratio: 4 / 5 !important; /* portrait crop on mobile cards */
    border-radius: 10px;
  }
  /* Hide images 2–4 */
  .svc-panel__imgs img:not(:first-child) { display: none; }

  /* Stack label + description, hide the decorative number on mobile */
  .svc-panel__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .svc-panel__big-num { display: none; }
}

/* ── SVC PANELS: sticky stacking scroll (desktop only) ─────────── */

/*
 * The wrapper defines the sticky zone for all panels.
 * Once the user scrolls past it, every panel unsticks and the footer is free.
 *
 * overflow: clip  — clips rotated card corners that poke outside the wrapper
 *                   (visible as triangles over the footer / during transitions).
 *                   Unlike overflow:hidden it does NOT create a scroll container,
 *                   so position:sticky on children continues to work correctly.
 */
.svc-panels-stack {
  position: relative;
  overflow: clip;
}

@media (min-width: 1025px) {
  /* Each panel sticks to the top; later panels slide on top of earlier ones */
  .svc-panel {
    position: sticky;
    bottom: auto; /* reset old bottom:0 */
    top: 0;
    overflow: hidden;
    will-change: transform;
    transform-origin: top center;
  }

  /* Ascending z-index so each panel covers the previous */
  #svc-01 { z-index: 1; }
  #svc-02 { z-index: 2; }
  #svc-03 { z-index: 3; }
  #svc-04 { z-index: 4; }
  #svc-05 { z-index: 5; }
  #svc-06 { z-index: 6; }
  #svc-07 { z-index: 7; }
  #svc-08 { z-index: 8; }
  #svc-09 { z-index: 9; }
  #svc-10 { z-index: 10; }
  #svc-11 { z-index: 11; }

  /*
   * The last panel must NOT be sticky — nothing comes after it to push it
   * off screen, so leaving it sticky would trap the user and hide the footer.
   * It still gets the entrance animation (panel 10 scales away behind it).
   */
  #svc-11 {
    position: relative;
  }
}

/* ── NEWS ARTICLE PAGE ──────────────────────────────────────── */

/* Back link */
.article-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(20,20,20,0.35);
  transition: color 0.2s ease;
  text-decoration: none;
}
.article-back:hover { color: var(--black); }
.article-back__arrow { font-size: 14px; }

/* Hero */
.article-hero {
  background: #F4F4F4;
  padding: 40px 0 0;
  display: flex; align-items: center; justify-content: center;
}
.article-hero__inner {
  max-width: var(--max); margin: 0 auto;
  /* padding: 0 var(--gutter); */
  text-align: center;
}
.article-hero__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 48px;
}
.article-hero__category {
  font-size: 11px; font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(20,20,20,0.4);
}
.article-hero__title {
  font-size: clamp(32px, 5.5vw, 76px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.03em; color: var(--black);
  max-width: 960px; margin-bottom: 20px;
}
.article-hero__meta {
  display: flex; align-items: center; gap: 32px; justify-content: center;
  padding: 20px 0;
  margin: 0 auto;
  border-top: 1px solid rgba(20,20,20,0.08);
}
.article-hero__date {
  font-size: 11px; font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(20,20,20,0.4);
}
.article-hero__read {
  font-size: 11px; font-weight: 400; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(20,20,20,0.25);
}
.article-hero__dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(20,20,20,0.15); flex-shrink: 0;
}

/* Cover image — full bleed, connected to top/left/right */
.article-cover {
  background: #141414;
  position: relative;
  overflow: hidden;
  aspect-ratio: 21/7; /* height on the container, not the image */
}
.article-cover__inner {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 130%; /* 30% extra travel room below */
}
.article-cover__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
@media (max-width: 768px) {
  .article-cover { aspect-ratio: 16/9; }
}

/* Article body */
.article-body {
  background: #F4F4F4;
  padding: 44px 0 100px;
  margin: 0 auto;
}
.article-body__inner {
  /* max-width: calc(740px + 2 * var(--gutter)); */
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Native HTML elements from TinyMCE inside article body */
.article-body__inner p {
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 300; line-height: 1.8;
  color: rgba(20,20,20,0.65);
  margin-bottom: 22px;
}
.article-body__inner h1,
.article-body__inner h2 {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 1.1;
  color: var(--black);
  margin-top: 56px; margin-bottom: 18px;
}
.article-body__inner h3,
.article-body__inner h4 {
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.02em; line-height: 1.2;
  color: var(--black);
  margin-top: 36px; margin-bottom: 12px;
}
.article-body__inner h1:first-child,
.article-body__inner h2:first-child { margin-top: 0; }
.article-body__inner strong, .article-body__inner b { font-weight: 700; color: var(--black); }
.article-body__inner em, .article-body__inner i { font-style: italic; }
.article-body__inner a { color: var(--black); text-decoration: underline; }
.article-body__inner a:hover { opacity: .65; }
.article-body__inner ul,
.article-body__inner ol {
  padding-left: 1.5em; margin-bottom: 22px;
  color: rgba(20,20,20,0.65);
}
.article-body__inner ul { list-style: disc; }
.article-body__inner ol { list-style: decimal; }
.article-body__inner li {
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 300; line-height: 1.8; margin-bottom: 8px;
}
.article-body__inner blockquote {
  border-left: 3px solid var(--black);
  padding: 12px 0 12px 24px;
  margin: 36px 0;
  font-style: italic;
  color: rgba(20,20,20,0.55);
  font-size: clamp(16px, 1.3vw, 18px);
}
.article-body__inner hr {
  border: none; border-top: 1px solid rgba(20,20,20,0.12);
  margin: 48px 0;
}
.article-body__inner code {
  font-family: monospace; font-size: .9em;
  background: rgba(20,20,20,0.06); border-radius: 3px;
  padding: .1em .35em;
}
.article-body__inner pre {
  background: rgba(20,20,20,0.06); border-radius: 6px;
  padding: 16px; overflow-x: auto; margin-bottom: 22px;
}
.article-body__inner pre code { background: none; padding: 0; }
.article-body__inner figure { margin: 32px 0; }
.article-body__inner figcaption {
  font-size: 13px; color: rgba(20,20,20,0.45);
  margin-top: 8px; text-align: center;
}
.article-body__inner img {
  max-width: 100%; height: auto;
  border-radius: 4px; display: block;
}

/* Lead paragraph */
.article-lead {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 400; line-height: 1.7;
  color: rgba(20,20,20,0.85);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(20,20,20,0.1);
}

/* Section heading */
.article-h2 {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 1.1;
  color: var(--black);
  margin-top: 56px; margin-bottom: 18px;
}

/* Body paragraph */
.article-p {
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 300; line-height: 1.8;
  color: rgba(20,20,20,0.65);
  margin-bottom: 22px;
}

/* Closing statement / pull-quote */
.article-closing {
  margin-top: 56px; padding: 32px 0 0;
  border-top: 2px solid var(--black);
}
.article-closing__text {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 700; line-height: 1.55;
  color: var(--black);
  margin-bottom: 0;
}

/* Article footer row */
.article-footer-row {
  background: #F4F4F4;
  padding: 0 0 60px;
  border-top: 1px solid rgba(20,20,20,0.08);
}
.article-footer-row__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 28px var(--gutter) 0;
  display: flex; align-items: center;
  justify-content: space-around;
  /* gap: 24px; */
}
.article-footer-row__back {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--black);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: opacity 0.2s ease;
}
.article-footer-row__back:hover { opacity: 0.5; }
.article-footer-row__share {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(20,20,20,0.35);
}

@media (max-width: 768px) {
  .article-hero__title { margin-bottom: 32px; }
  .article-hero__meta { gap: 16px; flex-wrap: wrap; }
  .article-body { padding: 48px 0 72px; }
  .article-h2 { margin-top: 40px; }
  .article-footer-row__inner { flex-direction: column; align-items: flex-start; }
  .artist-header__title{
    font-size: 2.4em !important;
  }
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-section {
  padding: 80px var(--gutter) 100px;
  max-width: var(--max);
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.team-card__photo-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ddddd8;
  border-radius: 4px;
  margin-bottom: 16px;
}

.team-card__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e0e0dc 0%, #c8c8c4 100%);
}

.team-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.78rem;
  color: rgba(15,23,42,0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .team-section { padding: 48px var(--gutter) 64px; }
}
