/* ═══════════════════════════════════════════════════════════════
   BLACK SWAN TATTOO
   Design: Editoriale Bianco / Nero — ispirato Riva Ink
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --black:      #0d0d0d;
  --black-2:    #181818;
  --black-3:    #232323;
  --white:      #ffffff;
  --off-white:  #111111;
  --light:      #181818;
  --gray:       #999896;
  --gray-light: rgba(255,255,255,.2);
  --border-l:   rgba(255,255,255,.1);
  --border-d:   rgba(255,255,255,.1);

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;

  --nav-h:    76px;
  --ease:     cubic-bezier(.25,.46,.45,.94);
  --t:        .4s var(--ease);
  --t-fast:   .18s ease;

  --max:      1280px;
  --pad:      clamp(20px, 5vw, 72px);
  --gap:      clamp(72px, 10vw, 130px);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100vw; }
body  { background: #000; color: var(--white); font-family: var(--font-sans); font-weight: 300; line-height: 1.7; overflow-x: hidden; max-width: 100vw; cursor: none; }
@media (pointer: coarse) { body { cursor: auto; } }
img   { display: block; width: 100%; height: 100%; object-fit: cover; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* ── Custom Cursor ───────────────────────────────────────────── */
.cursor, .cursor-dot {
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 34px; height: 34px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  transition: width .3s var(--ease), height .3s var(--ease), background .3s, border-color .3s;
}
.cursor.on-dark { border-color: var(--white); }
.cursor.hovered { width: 56px; height: 56px; background: rgba(0,0,0,.06); }
.cursor.hovered.on-dark { background: rgba(255,255,255,.08); }
.cursor-dot {
  width: 4px; height: 4px;
  background: var(--white); border-radius: 50%;
  transition: background .2s;
}
.cursor-dot.on-dark { background: var(--white); }
@media (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* ── Layout ──────────────────────────────────────────────────── */
.wrap    { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--gap) 0; }
.section--black { background: var(--black); color: var(--white); }
.section--light { background: var(--off-white); color: var(--white); }

/* ── Scroll Reveal ───────────────────────────────────────────── */
[data-reveal] { opacity: 0; transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].visible { opacity: 1; transform: none; }

/* ── Typography ──────────────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: .62rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 16px;
}
.section--black .label { color: rgba(255,255,255,.4); }

.title-hero {
  font-family: var(--font-serif);
  font-size: clamp(5.5rem, 15vw, 14rem);
  font-weight: 300; line-height: .88;
  letter-spacing: -.03em;
}
.title-hero em { font-style: italic; }

.title-xl {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 6.5rem);
  font-weight: 300; line-height: .95;
  letter-spacing: -.025em;
  white-space: nowrap; overflow: hidden;
}
.title-xl em { font-style: italic; }

.title-lg {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -.02em;
  white-space: nowrap; overflow: hidden;
}
.title-lg em { font-style: italic; }

.title-md {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300; line-height: 1.2;
}

.body-text {
  font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.9; max-width: 58ch;
  margin-left: auto; margin-right: auto;
}
.body-text strong { color: var(--white); font-weight: 500; }
.section--black .body-text { color: rgba(255,255,255,.55); }
.section--black .body-text strong { color: var(--white); }

/* ── Dividers ────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border-l); }
.section--black .divider { background: var(--border-d); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans); font-size: .7rem;
  font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  transition: var(--t); white-space: nowrap;
}
.btn-black {
  background: var(--black); color: var(--white);
  border: 1.5px solid var(--black);
}
.btn-black:hover { background: var(--black-3); transform: translateY(-2px); }

.btn-white {
  background: var(--white); color: var(--black);
  border: 1.5px solid var(--white);
}
.btn-white:hover { background: rgba(255,255,255,.88); transform: translateY(-2px); }

.btn-outline-black {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-black:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); transition: gap var(--t-fast);
}
.link-arrow .arr { transition: transform var(--t-fast); }
.link-arrow:hover .arr { transform: translateX(5px); }
.section--black .link-arrow { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 var(--pad);
  background: #000;
  border-bottom: 1px solid var(--border-d);
}
.nav.light { background: #000; border-color: var(--border-d); }
.nav.solid-black { background: #000; border-color: var(--border-d); }

/* Logo centered */
.nav__logo {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; flex-direction: column;
  text-align: center; line-height: 1.2;
}
.nav__logo img { height: 52px; width: auto; display: block; filter: invert(1); }
.nav__logo-main {
  font-family: var(--font-serif); font-size: .88rem; font-weight: 600;
  letter-spacing: .08em; color: var(--white);
}
.nav__logo-sub {
  font-size: .48rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* Menu */
.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-size: .64rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6); border-radius: 2px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover, .nav__link.active { color: var(--white); }

.nav__link--cta {
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,.3);
  margin-left: 8px;
}
.nav__link--cta:hover { background: var(--white); color: var(--black) !important; border-color: var(--white); }

/* Dropdown */
.nav__dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--black-2); border: 1px solid var(--border-d);
  padding: 8px; min-width: 200px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: none; }
.nav__dropdown a {
  display: block; padding: 9px 14px;
  font-size: .64rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.6); border-radius: 2px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__dropdown a:hover { color: var(--white); background: var(--black-3); }
.nav__chevron { width: 10px; height: 10px; transition: transform .2s ease; }
.nav__item:hover .nav__chevron { transform: rotate(180deg); }

/* Burger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: var(--t);
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile overlay */
.nav__mobile {
  position: fixed; inset: 0; z-index: 199;
  background: #000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
}
.nav__mobile.open { transform: none; }
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 300; color: rgba(255,255,255,.45); letter-spacing: .02em;
  padding: 4px 20px; transition: color var(--t-fast);
}
.nav__mobile a:hover, .nav__mobile a.active { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   HERO — full viewport, sfondo NERO, testo BIANCO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(56px, 8vw, 96px);
  background: var(--black);
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  /* aggiungi: background-image: url('../images/hero.jpg'); background-size: cover; background-position: center; */
}
.hero__bg img { filter: brightness(.35) grayscale(.4); }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,.92) 0%, rgba(13,13,13,.3) 60%, transparent 100%);
}

.hero__body { position: relative; z-index: 2; }

.hero__eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.hero__eyebrow-line { width: 40px; height: 1px; background: rgba(255,255,255,.4); }
.hero__eyebrow span {
  font-size: .6rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 300; line-height: .88; letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 32px;
}
.hero__title em { font-style: italic; }

.hero__foot {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.hero__tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(.9rem, 1.6vw, 1.15rem); font-weight: 300;
  color: rgba(255,255,255,.45); max-width: 38ch; line-height: 1.8;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero__scroll {
  position: absolute; bottom: clamp(28px,5vw,48px); right: var(--pad); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .55rem; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { transform: scaleY(1); opacity: .4; }
  50%      { transform: scaleY(.5) translateY(12px); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════════
   MARQUEE — sfondo NERO, testo bianco tenue
   ══════════════════════════════════════════════════════════════ */
.marquee {
  background: var(--black); overflow: hidden;
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
  padding: 14px 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 44px; white-space: nowrap;
  font-family: var(--font-serif); font-size: .85rem; font-style: italic;
  color: rgba(255,255,255,.28); letter-spacing: .05em;
  animation: marquee 32s linear infinite;
}
.marquee__sep { color: rgba(255,255,255,.18); font-style: normal; font-size: .5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════════════════
   PAGE HEADER (pagine interne) — sfondo BIANCO
   ══════════════════════════════════════════════════════════════ */
.page-header {
  background: #000;
  border-bottom: 1px solid var(--border-d);
  padding-top: calc(var(--nav-h) + clamp(64px, 9vw, 110px));
  padding-bottom: clamp(64px, 9vw, 110px);
  text-align: center;
}
.page-header .label,
.page-header .title-xl,
.page-header .body-text {
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════════════════════
   SECTION HEADER — sh
   ══════════════════════════════════════════════════════════════ */
.sh {
  display: grid; grid-template-columns: 1fr auto;
  align-items: flex-end; gap: 24px;
  margin-bottom: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--border-l);
}
.sh--center { grid-template-columns: 1fr; text-align: center; }
.section--black .sh { border-bottom-color: var(--border-d); }

/* ══════════════════════════════════════════════════════════════
   HOME INTRO — sfondo BIANCO, testo NERO
   ══════════════════════════════════════════════════════════════ */
.intro-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
  max-width: 900px; margin: 0 auto;
}
.intro-split__img-wrap {
  position: relative;
}
.intro-split > div:last-child {
  text-align: center;
}
.intro-split__img-stack {
  display: grid; grid-template-columns: 5fr 3fr; gap: 12px;
}
.intro-split__img {
  background: var(--light); overflow: hidden;
}
.intro-split__img-a { aspect-ratio: 3/4; }
.intro-split__img-b { aspect-ratio: 1/1; align-self: end; }
.intro-split__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--light);
  font-family: var(--font-serif); font-size: 1rem; font-style: italic;
  color: var(--gray-light); letter-spacing: .2em;
}
.intro-split__badge {
  position: absolute; bottom: 20px; left: -16px;
  background: var(--black); color: var(--white);
  padding: 14px 22px; text-align: center; line-height: 1.3;
  font-family: var(--font-serif);
}
.intro-split__badge-big {
  display: block; font-size: 1.8rem; font-weight: 300;
}
.intro-split__badge-label {
  display: block; font-size: .55rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-top: 4px;
  font-family: var(--font-sans);
}
.intro-split__stats {
  display: flex; gap: 0; margin-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--border-l);
}
.intro-split__stat {
  flex: 1; padding: clamp(18px,2.5vw,24px) 0;
  border-right: 1px solid var(--border-l);
}
.intro-split__stat:last-child { border-right: none; }
.intro-split__stat-n {
  display: block; font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300;
  color: var(--white); line-height: 1;
}
.intro-split__stat-l {
  display: block; margin-top: 6px; font-size: .6rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gray);
}

/* ══════════════════════════════════════════════════════════════
   VALUES — sfondo NERO, testo BIANCO (stile Riva Ink)
   ══════════════════════════════════════════════════════════════ */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.value-item {
  padding: clamp(36px, 5vw, 60px) clamp(24px, 3.5vw, 44px);
  border-right: 1px solid var(--border-d);
  transition: background var(--t);
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: var(--black-2); }
.value-item__num {
  font-family: var(--font-serif); font-size: .75rem; font-weight: 300;
  color: rgba(255,255,255,.18); letter-spacing: .2em; margin-bottom: 28px; display: block;
}
.value-item__title {
  font-family: var(--font-serif); font-size: 1.7rem; font-weight: 300;
  color: var(--white); margin-bottom: 14px;
}
.value-item__text { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.8; }

/* ══════════════════════════════════════════════════════════════
   ARTIST CARDS — preview home, sfondo BIANCO
   ══════════════════════════════════════════════════════════════ */
/* ── Artist mini cards — "Gli altri artisti" in detail pages ───── */
.artist-mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; max-width: 800px; margin: 0 auto; }
.artist-mini {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  background: #000; display: block; text-decoration: none;
}
.artist-mini img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .5s ease, filter .4s ease;
  filter: grayscale(10%); display: block;
}
.artist-mini:hover img { transform: scale(1.04); filter: grayscale(0); }
.artist-mini__cover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: rgba(0,0,0,0);
  transition: background .3s ease;
}
.artist-mini:hover .artist-mini__cover { background: rgba(0,0,0,0.62); }
.artist-mini__name {
  font-family: var(--font-serif);
  font-size: clamp(18px,2.2vw,26px); font-weight: 300;
  color: #fff; text-align: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}
.artist-mini:hover .artist-mini__name { opacity: 1; transform: translateY(0); }
.artist-mini__role {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  opacity: 0; transform: translateY(7px);
  transition: opacity .3s .07s ease, transform .3s .07s ease;
}
.artist-mini:hover .artist-mini__role { opacity: 1; transform: translateY(0); }

.artists-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border-l); }
.artist-card {
  position: relative; overflow: hidden;
  background: var(--black-2);
}
.artist-card__img {
  aspect-ratio: 3/4; overflow: hidden; position: relative;
  background: var(--light);
}
.artist-card__inner {
  width: 100%; height: 100%;
  transition: transform .8s var(--ease);
}
.artist-card:hover .artist-card__inner { transform: scale(1.04); }
.artist-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--light);
  font-family: var(--font-serif); font-size: 4rem; font-weight: 300;
  color: var(--gray-light); letter-spacing: .1em;
}
.artist-card__hover {
  position: absolute; inset: 0;
  background: rgba(13,13,13,.82);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; opacity: 0;
  transition: opacity .4s ease;
}
.artist-card:hover .artist-card__hover { opacity: 1; }
.artist-card__name {
  font-family: var(--font-serif); font-size: 1.7rem; font-weight: 300;
  color: var(--white); margin-bottom: 4px;
}
.artist-card__role {
  font-size: .62rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px;
}
.artist-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.artist-card__tags span {
  font-size: .58rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.15);
  padding: 3px 8px;
}
.artist-card__bio {
  font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 18px;
}
.artist-card__link {
  font-size: .65rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--white);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap var(--t-fast);
}
.artist-card__link:hover { gap: 13px; }

/* Artist card — homepage style with footer (used on contatti.html) */
.artist-card.hp-card {
  display: block; text-decoration: none; cursor: pointer;
  aspect-ratio: 3/4; overflow: hidden; position: relative; background: #000;
}
.artist-card.hp-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  filter: grayscale(5%);
  transition: transform .5s ease, filter .4s ease; display: block;
}
.artist-card.hp-card:hover img { transform: scale(1.04); filter: grayscale(0); }
.artist-card__footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 24px 24px;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,0) 100%);
  display: flex; flex-direction: column; gap: 4px;
  pointer-events: none;
}
.artist-card__cover-role {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.artist-card__cover-name {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 24px); font-weight: 300;
  color: #fff;
}
.artist-card__cta-btn {
  margin-top: 10px;
  display: inline-block; width: fit-content;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.5);
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: #fff;
  background: transparent;
  transition: background .25s ease, border-color .25s ease;
  pointer-events: all;
}
.artist-card.hp-card:hover .artist-card__cta-btn { background: rgba(255,255,255,.12); border-color: #fff; }

/* Full artist — pagina artisti.html */
.artist-row {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 88px); align-items: start;
  padding: clamp(56px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--border-l);
}
.artist-row:last-child { border-bottom: none; }
.artist-row:nth-child(even) { direction: rtl; }
.artist-row:nth-child(even) > * { direction: ltr; }
.artist-row__img {
  aspect-ratio: 3/4; background: var(--light); overflow: hidden;
}
.artist-row__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--light);
  font-family: var(--font-serif); font-size: 5rem; font-weight: 300; color: var(--gray-light);
}
.artist-row__body { padding-top: 10px; }
.artist-row__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }
.artist-row__tags span {
  font-size: .62rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray); border: 1px solid var(--border-l); padding: 5px 12px;
}
.artist-row__bio p { font-size: .88rem; color: var(--gray); line-height: 1.9; }
.artist-row__bio p + p { margin-top: 12px; }
.artist-row__bio { margin-bottom: 32px; }
.artist-row__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Individual artist hero split */
.artist-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - var(--nav-h));
}
.artist-hero__img {
  background: #000; overflow: hidden; position: relative; width: 100%;
}
.artist-hero__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--light);
  font-family: var(--font-serif); font-size: 7rem; font-weight: 300; color: var(--gray-light);
}
.artist-hero__body {
  background: #000;
  color: var(--white);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(40px,6vw,80px);
  text-align: center;
}
.artist-hero__body .breadcrumb a:hover { color: var(--white); }
.artist-hero__body .artist-row__tags span { color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.18); }

/* Nome artista e breadcrumb: sinistra, su una riga */
.artist-hero__body .breadcrumb {
  text-align: left;
  flex-wrap: nowrap;
  overflow: hidden;
}
.artist-hero__body .breadcrumb a,
.artist-hero__body .breadcrumb span { white-space: nowrap; }
.artist-hero__body .title-xl {
  text-align: left;
  align-self: flex-start;
  width: 100%;
  white-space: nowrap !important;
  overflow: hidden !important;
  font-size: clamp(1.4rem, 6vw, 6.5rem);
}
.artist-hero__body .title-lg { text-align: left; }

/* ══════════════════════════════════════════════════════════════
   SERVICES LIST — sfondo BIANCO
   ══════════════════════════════════════════════════════════════ */
.services-list { border-top: 1px solid var(--border-l); }
.service-row {
  display: grid; grid-template-columns: 56px 1fr auto;
  align-items: center; gap: 28px;
  padding: clamp(20px, 2.8vw, 28px) 0;
  border-bottom: 1px solid var(--border-l);
  transition: background var(--t);
}
.service-row:hover { background: var(--off-white); margin: 0 calc(-1 * var(--pad)); padding-left: var(--pad); padding-right: var(--pad); }
.service-row__num {
  font-family: var(--font-serif); font-size: 1rem; font-weight: 300;
  color: var(--gray-light); text-align: right;
}
.service-row__title {
  font-family: var(--font-serif); font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300; color: var(--black); margin-bottom: 3px;
}
.service-row__desc { font-size: .8rem; color: var(--gray); max-width: 60ch; }
.service-row__tag {
  font-size: .58rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray); border: 1px solid var(--border-l); padding: 4px 10px; flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   GALLERY — sfondo NERO
   ══════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 3px;
}
.gallery-item {
  position: relative; overflow: hidden; background: var(--black-2); cursor: zoom-in;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item__inner {
  width: 100%; height: 100%;
  transition: transform .8s var(--ease);
  filter: grayscale(20%);
}
.gallery-item:hover .gallery-item__inner { transform: scale(1.04); filter: grayscale(0); }
.gallery-item__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--black-3);
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 300;
  color: rgba(255,255,255,.08);
}
.gallery-item__cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(13,13,13,.88), transparent);
  font-family: var(--font-serif); font-size: .85rem; font-style: italic;
  color: rgba(255,255,255,.65);
  transform: translateY(10px); opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover .gallery-item__cap { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   QUOTE BAND — sfondo NERO
   ══════════════════════════════════════════════════════════════ */
.quote-band {
  background: var(--black); padding: clamp(80px, 12vw, 140px) 0;
  text-align: center; overflow: hidden; position: relative;
}
.quote-band::before {
  content: '\201C';
  position: absolute; top: -.6em; left: 50%; transform: translateX(-50%);
  font-family: var(--font-serif); font-size: 30rem; font-weight: 300;
  color: rgba(255,255,255,.025); line-height: 1; pointer-events: none;
}
.quote-band__text {
  font-family: var(--font-serif); font-weight: 300; font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--white); line-height: 1.45; margin-bottom: 28px;
  position: relative;
}
.quote-band__author {
  font-size: .65rem; font-weight: 500; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
}

/* ══════════════════════════════════════════════════════════════
   CTA BANNER — sfondo BIANCO
   ══════════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--off-white);
  border-top: 1px solid var(--border-l);
  border-bottom: 1px solid var(--border-l);
  padding: clamp(64px, 9vw, 110px) 0;
  text-align: center;
}
.cta-banner .body-text { margin: 16px auto 40px; }
.cta-banner__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════
   PIERCING CARDS
   ══════════════════════════════════════════════════════════════ */
.piercing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border-l); }
.piercing-card {
  background: var(--black-2); padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px);
  transition: background var(--t);
}
.piercing-card:hover { background: var(--black-3); }
.piercing-card__icon {
  display: flex; justify-content: center; align-items: center;
  margin-bottom: 20px; color: var(--white);
}
.piercing-card__icon svg { width: 32px; height: 32px; stroke: #ffffff; }
.piercing-card__title { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.piercing-card__text { font-size: .82rem; color: var(--gray); line-height: 1.8; }

/* Materials grid */
.materials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border-d); }
.material-card {
  background: var(--black-2); padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px);
  transition: background var(--t);
}
.material-card:hover { background: var(--black-3); }
.material-card__sym {
  font-family: var(--font-serif); font-size: 3rem; font-weight: 300;
  color: rgba(255,255,255,.15); margin-bottom: 18px; line-height: 1;
}
.material-card__title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.material-card__text { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.8; }

/* ══════════════════════════════════════════════════════════════
   STEPS / AFTERCARE — sfondo BIANCO
   ══════════════════════════════════════════════════════════════ */
.steps { border-top: 1px solid var(--border-l); }
.step {
  display: grid; grid-template-columns: 64px 1fr;
  border-bottom: 1px solid var(--border-l);
  transition: background var(--t);
}
.step:hover { background: var(--off-white); }
.step__num {
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding: clamp(20px, 2.5vw, 28px) 20px clamp(20px, 2.5vw, 28px) 0;
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; color: var(--gray-light);
}
.step__body { padding: clamp(20px, 2.5vw, 28px) 0; }
.step__title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 300; color: var(--white); margin-bottom: 8px; }
.step__text { font-size: .84rem; color: var(--gray); line-height: 1.85; }

/* Warning */
.warning-box {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--off-white); border: 1px solid var(--border-l);
  padding: 24px 28px; margin-top: 24px;
}
.section--black .warning-box {
  background: var(--black-2); border-color: var(--border-d);
}
.warning-box__icon {
  width: 100%; display: flex; justify-content: center; align-items: center;
  margin-bottom: 16px; color: #fff;
}
.warning-box__icon svg { width: 32px; height: 32px; stroke: #ffffff; }
.warning-box p { font-size: .83rem; color: var(--gray); line-height: 1.8; }
.warning-box p strong { color: var(--white); font-weight: 500; }
.section--black .warning-box p { color: rgba(255,255,255,.45); }
.section--black .warning-box p strong { color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   FAQ ACCORDION — sfondo BIANCO
   ══════════════════════════════════════════════════════════════ */
.faq { border-top: 1px solid var(--border-l); }
.faq-item { border-bottom: 1px solid var(--border-l); }
.faq-item__q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  padding: clamp(18px, 2.5vw, 24px) 0;
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 300; color: var(--white);
  cursor: pointer; transition: color var(--t-fast);
}
.faq-item__q:hover { color: var(--gray); }
.faq-item__icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid var(--border-l);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--gray);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg); background: var(--white); color: var(--black); border-color: var(--white);
}
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-item__a { max-height: 300px; }
.faq-item__a-inner {
  padding: 0 0 clamp(18px, 2.5vw, 24px);
  font-size: .88rem; color: var(--gray); line-height: 1.85;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT — sfondo BIANCO
   ══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 7vw, 100px); align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 28px; text-align: center; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item__icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--border-l);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-item strong {
  display: block; font-size: .64rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--white); margin-bottom: 6px;
}
.contact-item p, .contact-item address { font-size: .86rem; color: var(--gray); line-height: 1.65; font-style: normal; }
.contact-item a { color: var(--white); border-bottom: 1px solid var(--border-d); padding-bottom: 1px; transition: border-color var(--t-fast); }
.contact-item a:hover { border-color: var(--white); }
.map-wrap {
  border: 1px solid var(--border-l); overflow: hidden;
  aspect-ratio: 1;
  filter: grayscale(100%) contrast(1.1);
}
.map-wrap iframe { display: block; width: 100%; height: 100%; border: 0; }

/* How to book steps */
.booking-steps { display: grid; grid-template-columns: repeat(4, 1fr); }
.booking-step {
  padding: clamp(32px, 4.5vw, 52px) clamp(20px, 3vw, 36px);
  border-right: 1px solid var(--border-l);
  transition: background var(--t);
}
.booking-step:last-child { border-right: none; }
.booking-step:hover { background: var(--off-white); }
.booking-step__num {
  font-family: var(--font-serif); font-size: 3rem; font-weight: 300;
  color: var(--border-l); margin-bottom: 20px; line-height: 1;
}
.booking-step__title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.booking-step__text { font-size: .82rem; color: var(--gray); line-height: 1.8; }

/* ══════════════════════════════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════════════════════════════ */
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.breadcrumb a, .breadcrumb span {
  font-size: .6rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gray-light);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: var(--border-l); font-size: .5rem; }

/* ══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ══════════════════════════════════════════════════════════════ */
.wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 100;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
  transition: transform var(--t), box-shadow var(--t);
}
.wa-btn svg { width: 24px; height: 24px; }
.wa-btn:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.wa-btn__tip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--white); color: var(--black); border: 1px solid var(--border-l);
  font-size: .62rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .2s ease; box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.wa-btn:hover .wa-btn__tip { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   FOOTER — sfondo NERO
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--black); color: var(--white);
  padding: clamp(60px, 8vw, 96px) 0 clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--border-d);
}
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--border-d);
}
.footer__logo-main {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
  letter-spacing: .05em; color: var(--white);
}
.footer__logo-sub {
  font-family: var(--font-serif); font-size: .55rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--white); margin-bottom: 16px;
}
.footer__tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: .88rem; color: var(--white); margin-bottom: 20px;
}
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 32px; height: 32px; border: 1px solid var(--border-d);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: color var(--t-fast), border-color var(--t-fast);
}
.footer__social a:hover { color: var(--white); border-color: rgba(255,255,255,.7); }
.footer__social svg { width: 14px; height: 14px; }
.footer__col h4 {
  font-size: .58rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: .82rem; color: var(--white); transition: color var(--t-fast); }
.footer__col a:hover { color: var(--white); opacity: .7; }
.footer__address { font-size: .82rem; color: var(--white); line-height: 1.8; }
.footer__address a { color: var(--white); }
.footer__address a:hover { color: var(--white); opacity: .7; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer__bottom p { font-size: .65rem; color: var(--white); letter-spacing: .05em; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .values-grid          { grid-template-columns: repeat(2, 1fr); }
  .footer__grid         { grid-template-columns: 1fr 1fr; }
  .gallery-grid         { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide   { grid-column: span 1; }
  .booking-steps        { grid-template-columns: repeat(2, 1fr); border: 1px solid var(--border-l); }
  .booking-step         { border-bottom: 1px solid var(--border-l); }
}

@media (max-width: 900px) {
  .intro-split          { grid-template-columns: 1fr; }
  .intro-split__badge   { left: auto; right: 20px; }
  .artist-row           { grid-template-columns: 1fr; direction: ltr !important; }
  .artists-grid         { grid-template-columns: 1fr 1fr; }
  .artist-hero          { grid-template-columns: 1fr; min-height: auto; }
  .artist-hero__img     { aspect-ratio: 4/3; }
  .contact-grid         { grid-template-columns: 1fr; }
  .piercing-grid        { grid-template-columns: 1fr 1fr; }
  .materials-grid       { grid-template-columns: 1fr; }
  .nav__menu            { display: none; }
  .nav__burger          { display: flex; }
  .service-row          { grid-template-columns: 40px 1fr; }
  .service-row__tag     { display: none; }

  /* Titoli e label: allow wrap su tablet e mobile */
  .title-xl, .title-lg, .title-md { white-space: normal !important; overflow: visible !important; }
  .label                           { white-space: normal !important; }
}

@media (max-width: 600px) {
  :root { --gap: 64px; }
  .artists-grid         { grid-template-columns: 1fr; gap: 2px; }
  .values-grid          { grid-template-columns: 1fr; }
  .piercing-grid        { grid-template-columns: 1fr; }
  .gallery-grid         { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item--tall   { grid-row: span 1; }
  .intro-split__stats   { flex-direction: column; border-top: 1px solid var(--border-l); }
  .intro-split__stat    { border-right: none; border-bottom: 1px solid var(--border-l); }
  .footer__grid         { grid-template-columns: 1fr; }
  .footer__bottom       { flex-direction: column; text-align: center; }
  .booking-steps        { grid-template-columns: 1fr; }
  .hero__foot           { flex-direction: column; align-items: flex-start; }
  .hero__ctas           { flex-direction: column; }
}

/* ══════════════════════════════════════════════════════════════
   PORTFOLIO MASONRY — pagine artista
   ══════════════════════════════════════════════════════════════ */
.portfolio-masonry {
  columns: 3;
  column-gap: 4px;
  padding: 0 clamp(20px,5vw,64px);
}
.portfolio-item {
  break-inside: avoid;
  margin-bottom: 4px;
  cursor: zoom-in;
  overflow: hidden;
  background: #000;
  position: relative;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.portfolio-item.in-view {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .35s ease;
  pointer-events: none;
}
.portfolio-item:hover::after {
  background: rgba(0,0,0,0.38);
}
.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s var(--ease), filter .4s ease;
  filter: grayscale(10%);
}
.portfolio-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0);
}
@media (max-width: 900px) { .portfolio-masonry { columns: 2; } }
@media (max-width: 560px) { .portfolio-masonry { columns: 1; } }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — integrazioni / fix globali
   ══════════════════════════════════════════════════════════════ */

/* ── Tablet (481 – 1024px) ──────────────────────────────────── */
@media (max-width: 1024px) {
  .artist-hero          { grid-template-columns: 1fr; min-height: auto; }
  .artist-hero__img     { aspect-ratio: 16/9; max-height: 420px; }
  .sh                   { grid-template-columns: 1fr; }
  .sh > a, .sh > .link-arrow { display: none; } /* nasconde link dx su tablet stretto */
  .service-grid         { grid-template-columns: 1fr; }
  .contact-grid         { gap: clamp(32px,5vw,60px); }
}

/* ── Mobile menu / nav logo su mobile ────────────────────────── */
@media (max-width: 900px) {
  .nav__logo img        { height: 40px; }
  .nav__logo            { max-width: calc(100% - 120px); } /* non sovrappone burger+lang */
  .hero__title          { font-size: clamp(3.5rem, 12vw, 8rem); }
  .artist-mini-grid     { grid-template-columns: 1fr 1fr; gap: 2px; }
  .page-header          { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 44px; }
  .map-wrap             { aspect-ratio: 4/3; }
}

/* ── Mobile (≤ 600px) ────────────────────────────────────────── */
@media (max-width: 600px) {
  :root { --pad: 18px; }

  /* Titoli: rimuovi nowrap su schermi piccoli */
  .title-xl {
    white-space: normal;
    overflow: visible;
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    line-height: 1.05;
  }
  .title-lg {
    white-space: normal;
    overflow: visible;
    font-size: clamp(1.5rem, 6.5vw, 2.2rem);
    line-height: 1.1;
  }
  .title-md { font-size: clamp(1.2rem, 4.5vw, 1.6rem); }

  /* Page header */
  .page-header {
    padding-top: calc(var(--nav-h) + 28px);
    padding-bottom: 36px;
  }

  /* Nav logo */
  .nav__logo img { height: 36px; }

  /* Hero (inner pages) */
  .hero__title { font-size: clamp(2.8rem, 10vw, 5rem); }
  .hero__foot  { flex-direction: column; align-items: flex-start; }
  .hero__ctas  { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* Section header */
  .sh { padding-bottom: 20px; margin-bottom: 36px; }

  /* Artists grid */
  .artists-grid { grid-template-columns: 1fr; gap: 2px; }
  .artist-card.hp-card { aspect-ratio: 4/3; }

  /* Artisti page rows */
  .artist-row { gap: 28px; }
  .artist-row__btns { flex-direction: column; }
  .artist-row__btns .btn { width: 100%; justify-content: center; }

  /* Artist mini grid */
  .artist-mini-grid { grid-template-columns: 1fr 1fr; gap: 2px; }

  /* Piercing grid */
  .piercing-grid { grid-template-columns: 1fr; }
  .service-row   { grid-template-columns: 32px 1fr; gap: 12px; }

  /* Steps & warnings */
  .steps        { gap: 20px; }
  .step         { gap: 14px; }
  .warning-boxes { grid-template-columns: 1fr; }

  /* CTA banner */
  .cta-banner { text-align: center; padding: 56px var(--pad); }
  .cta-banner__btns { flex-direction: column; align-items: center; }
  .cta-banner__btns .btn { width: 100%; max-width: 360px; justify-content: center; }

  /* Buttons full-width su mobile */
  .btn { white-space: normal; text-align: center; }

  /* Booking steps */
  .booking-step__num { font-size: 2rem; }

  /* FAQ */
  .faq-item__q { font-size: .82rem; padding: 18px 0; }

  /* Footer */
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; align-items: center; }
  .footer__bottom div { justify-content: center; }

  /* Map */
  .map-wrap { aspect-ratio: 3/2; min-height: 240px; }

  /* Contact item */
  .contact-item { gap: 14px; }

  /* WA float button: sposta sopra cookie banner */
  .wa-btn { bottom: 80px; right: 16px; }

  /* Legal pages */
  .legal-content { padding: 32px 0 64px; }
  .legal-content h2 { font-size: clamp(1.1rem,4.5vw,1.5rem); }
  .legal-content table { font-size: .78rem; overflow-x: auto; display: block; }

  /* Breadcrumb */
  .breadcrumb { font-size: .68rem; }

  /* Artista hero page */
  .artist-hero { grid-template-columns: 1fr; }
  .artist-hero__img { aspect-ratio: 4/3; max-height: 320px; }
  .artist-hero__body { padding: 36px var(--pad); }
  .portfolio-masonry { padding: 0 var(--pad); }
}

/* ── Extra small (≤ 380px) ──────────────────────────────────── */
@media (max-width: 380px) {
  .title-xl { font-size: clamp(1.6rem, 8.5vw, 2.4rem); }
  .title-lg { font-size: clamp(1.3rem, 7vw, 1.9rem); }
  .nav__logo img { height: 30px; }
  .btn { padding: 12px 20px; font-size: .64rem; }
}

/* ── Titolo bio artista: sempre su una riga, sinistra ──────── */
.artist-bio-title {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-align: left !important;
  font-size: clamp(1rem, 4vw, 4rem) !important;
}

/* ── Language switcher ───────────────────────────────────────── */
.lang-switch {
  position: absolute; left: var(--pad);
  display: flex; align-items: center; flex-shrink: 0;
}
/* Wrapper that shows the visual label */
.lang-drop {
  position: relative;
  display: flex; align-items: center; gap: 4px;
  color: rgba(255,255,255,.5);
  transition: color .18s ease;
  cursor: pointer;
}
.lang-drop:hover { color: var(--white); }
.lang-val {
  font-family: var(--font-sans); font-size: .58rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  pointer-events: none; line-height: 1;
}
.lang-chevron { pointer-events: none; flex-shrink: 0; }
/* The actual <select> sits invisibly over the wrapper */
.lang-drop .lang-select {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  opacity: 0; visibility: hidden; cursor: pointer;
  width: 100%; height: 100%;
  font-size: 16px; /* prevents iOS auto-zoom */
}
/* Make select interactive when lang-drop is hovered/focused */
.lang-drop:hover .lang-select,
.lang-drop:focus-within .lang-select {
  visibility: visible;
}

/* Lang switch in mobile overlay */
.nav__mobile .lang-switch { margin: 16px 0 0; }
.nav__mobile .lang-drop { color: rgba(255,255,255,.45); }
.nav__mobile .lang-val { font-size: .72rem; }

/* ── Vasya Piercing Gallery ─────────────────────────────────────── */
.vasya-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.vasya-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.vasya-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .45s ease;
}
.vasya-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .45s ease;
  pointer-events: none;
}
.vasya-gallery__item:hover img {
  transform: scale(1.05);
}
.vasya-gallery__item:hover::after {
  background: rgba(0,0,0,.35);
}
@media (max-width: 900px) {
  .vasya-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vasya-gallery { grid-template-columns: 1fr; }
}
