/* ============================================================
   TORRES TATTOO — Mobile-first v2 · Visual-first edition
   Paleta: Pantone 729C #A57E50 · 7509C #CC9E66 · 720C #E2C493
   Tipografia: Quicksand 300/400/500/600/700
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: dark;

  --gold-deep: #a57e50;
  --gold: #cc9e66;
  --gold-light: #e2c493;
  --ink: #000000;
  --paper: #ffffff;

  --bg: #050505;
  --bg-2: #0a0908;
  --surface: #111110;
  --surface-2: #15130f;
  --line: rgba(204, 158, 102, 0.16);
  --line-strong: rgba(204, 158, 102, 0.34);

  --text: #f7f3eb;
  --text-soft: rgba(247, 243, 235, 0.74);
  --text-mute: rgba(247, 243, 235, 0.5);

  --foil: linear-gradient(135deg, #a57e50 0%, #e2c493 38%, #cc9e66 70%, #a57e50 100%);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --pad-x: 22px;
  --section-y: clamp(56px, 9vw, 96px);

  --z-header: 60;
  --z-thumb: 70;
  --z-modal: 80;

  --thumb-h: 68px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Quicksand", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(5,5,5,0.5), rgba(5,5,5,0.92)),
    url("assets/site/texture-panel.jpg") center top / cover,
    var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: calc(var(--thumb-h) + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  color: var(--text);
}
h2 { font-size: clamp(28px, 7.5vw, 56px); letter-spacing: -0.02em; }
h3 { font-size: clamp(18px, 4.5vw, 22px); font-weight: 500; }
p { margin: 0; }

.gold-text {
  background: var(--foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.85;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

section { position: relative; }

.section-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.section-bar.center {
  justify-content: center;
  text-align: center;
  border-bottom: none;
}
.section-bar h2 { font-size: clamp(32px, 8vw, 56px); }
.section-bar-right {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.section-bar-right a:hover { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--foil);
  color: #1a1207;
  box-shadow: 0 18px 40px -18px rgba(204, 158, 102, 0.55);
}
.btn-primary:hover { filter: brightness(1.05); }

.btn-ghost-light {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-block { width: 100%; }

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

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px var(--pad-x);
  padding-top: calc(12px + env(safe-area-inset-top, 0px));
  background: linear-gradient(180deg, rgba(5,5,5,0.65) 0%, rgba(5,5,5,0.15) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(5,5,5,0.92);
  border-bottom-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--text);
}
.brand-logo {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(204,158,102,0.1), transparent);
}
.brand-logo svg { width: 20px; height: 20px; }
.brand-name { display: none; }
.brand-name-short { display: none; }
.brand-name-full { display: none; }
@media (min-width: 380px) {
  .brand-name-short { display: inline; }
}
@media (min-width: 680px) {
  .brand-name-short { display: none; }
  .brand-name-full { display: inline; }
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px 0 14px;
  border-radius: 999px;
  background: var(--foil);
  color: #1a1207;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(0,0,0,0.15);
  box-shadow: 0 10px 24px -14px rgba(204,158,102,0.65);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.header-cta:active { transform: scale(0.97); }
.header-cta:hover { filter: brightness(1.05); }
.header-cta .icon { width: 16px; height: 16px; }

/* ============================================================
   HERO v2 — Full-bleed, mínimo texto, máximo impacto
   ============================================================ */
.hero-v2 {
  position: relative;
  height: 92vh;
  min-height: 620px;
  max-height: 880px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: contrast(1.06) saturate(0.9) brightness(0.85);
  transform: scale(1.04);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  to { transform: scale(1.12); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.0) 28%, rgba(5,5,5,0.25) 55%, rgba(5,5,5,0.95) 100%),
    radial-gradient(60% 50% at 50% 70%, rgba(204,158,102,0.10), transparent 70%);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad-x);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: rgba(5,5,5,0.55);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 22px;
}
.hero-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.hero-title {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(52px, 16vw, 164px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin: 0 0 16px;
  color: var(--text);
  text-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-title .gold-text { font-weight: 500; }
.hero-title .studio-word {
  display: inline-block;
  font-size: 0.42em;
  letter-spacing: 0.16em;
  line-height: 1;
  transform: translateY(-0.08em);
}

.hero-tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 30px;
}
@media (max-width: 520px) {
  .hero-tag {
    max-width: 310px;
    font-size: 11px;
    letter-spacing: 0.12em;
    line-height: 1.6;
  }
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-actions .btn { flex: 1 1 auto; min-width: 150px; }

.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: 22px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-soft);
  pointer-events: none;
}
.hero-scroll svg {
  width: 12px;
  height: 22px;
  color: var(--gold);
  animation: scrollNudge 1.8s ease-in-out infinite;
}
@keyframes scrollNudge {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(4px); opacity: 1; }
}
@media (max-width: 480px) {
  .hero-scroll { display: none; }
}

/* ============================================================
   MARQUEE — Strip de tatuagens auto-scroll
   ============================================================ */
.marquee {
  padding: 34px 0 42px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.96) 0%, rgba(5,5,5,0.84) 52%, rgba(10,9,8,0.96) 100%),
    url("assets/site/texture-panel.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.marquee-track {
  display: flex;
  gap: 12px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-img {
  width: 200px;
  height: 260px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  position: relative;
  transition: transform 0.3s ease;
}
.marquee-img:hover { transform: translateY(-4px); }
.marquee-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.95);
}
@media (min-width: 720px) {
  .marquee-img { width: 280px; height: 360px; }
}

/* ============================================================
   PORTFÓLIO MOSAICO
   ============================================================ */
.portfolio-v2 {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background:
    linear-gradient(180deg, rgba(5,5,5,0.94), rgba(5,5,5,0.98)),
    url("assets/site/texture-panel.jpg") center / cover;
  border-top: 1px solid var(--line);
}

.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 calc(var(--pad-x) * -1) 18px;
  padding: 4px var(--pad-x) 16px;
}
.filters::-webkit-scrollbar { display: none; }
.filters button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.filters button:hover { color: var(--text); border-color: var(--line-strong); }
.filters button.is-active {
  background: var(--foil);
  color: #1a1207;
  border-color: transparent;
  font-weight: 700;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  grid-auto-flow: dense;
}
@media (min-width: 720px) {
  .mosaic { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (min-width: 1080px) {
  .mosaic { grid-template-columns: repeat(4, 1fr); }
}

.tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  display: block;
}
.tile.tall { grid-row: span 2; aspect-ratio: 3 / 6.4; }
.tile.wide { grid-column: span 2; aspect-ratio: 16 / 11; }
@media (min-width: 720px) {
  .tile.tall { aspect-ratio: 3 / 7; }
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1), filter 0.4s ease;
}
.tile:hover img { transform: scale(1.05); filter: contrast(1.1) saturate(1.05); }
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5,5,5,0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.tile-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 5px 10px;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.tile.is-hidden { display: none; }

.portfolio-status {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -2px 0 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.portfolio-status:empty { display: none; }
.portfolio-status button {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text-soft);
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}
.portfolio-status button:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.portfolio-grid {
  align-items: stretch;
}

.work-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(21,19,15,0.98), rgba(10,9,8,0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.work-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -28px rgba(0,0,0,0.9);
}
.work-card.wide { grid-column: span 2; }
.work-card.tall .work-card-media { aspect-ratio: 3 / 5.35; }

.work-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0a0908;
}
.work-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.96);
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1), filter 0.4s ease;
}
.work-card:hover .work-card-media img {
  transform: scale(1.05);
  filter: contrast(1.1) saturate(1.04);
}
.work-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5,5,5,0.74) 100%);
  pointer-events: none;
  z-index: 1;
}
.work-card .tile-tag { z-index: 2; }

.work-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.work-card-body h3 {
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: 0;
}
.work-card-body p {
  margin-top: 4px;
  color: var(--text-mute);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.work-quote {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(204,158,102,0.08);
  color: var(--gold-light);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.work-quote:hover {
  background: var(--foil);
  border-color: transparent;
  color: #1a1207;
}
.work-card.is-hidden { display: none; }

@media (max-width: 520px) {
  .work-card.wide { grid-column: span 2; }
  .work-card-body { padding: 12px; }
  .work-card-body h3 { font-size: 14px; }
}

/* ============================================================
   ARTISTAS
   ============================================================ */
.team {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background:
    linear-gradient(180deg, rgba(10,9,8,0.96), rgba(5,5,5,0.96)),
    url("assets/site/texture-panel.jpg") center / cover;
}

.team-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 var(--pad-x) 6px;
  scrollbar-width: none;
}
.team-scroll::-webkit-scrollbar { display: none; }

.artist-card {
  flex: 0 0 78%;
  scroll-snap-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.3s ease;
}
.artist-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }

@media (min-width: 540px) { .artist-card { flex: 0 0 360px; } }
@media (min-width: 880px) { .artist-card { flex: 0 0 320px; } }

.artist-card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0a0908;
}
.artist-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.28s ease, transform 0.6s ease;
}
.artist-card:hover .artist-card-img img { transform: scale(1.04); }
.artist-main-photo.is-fading { opacity: 0; }

.artist-card-num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  padding: 5px 10px;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.artist-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.artist-card-kicker {
  color: var(--text-mute);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.artist-card-body h3 { font-size: 20px; font-weight: 500; }
.artist-card-body p {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.artist-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.artist-thumb {
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0,0,0,0.35);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.artist-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.94);
}
.artist-thumb:hover,
.artist-thumb.is-active {
  border-color: var(--gold);
  transform: translateY(-1px);
}
.artist-thumb:not(.is-active) {
  opacity: 0.72;
}
.artist-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.chip-cta {
  flex: 1 1 calc(50% - 8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.artist-card-actions .chip-cta.primary { flex-basis: 100%; }
.chip-cta:hover { border-color: var(--gold); color: var(--gold-light); }
.chip-cta.primary {
  background: var(--foil);
  color: #1a1207;
  border-color: transparent;
  font-weight: 700;
}
.chip-cta.primary:hover { filter: brightness(1.05); }

/* ============================================================
   ESTÚDIO v2 — Visual + endereço
   ============================================================ */
.studio-v2 {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
  isolation: isolate;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.studio-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.studio-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08) saturate(0.72) brightness(0.38);
  transform: scale(1.04);
}
.studio-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.94) 0%, rgba(5,5,5,0.72) 48%, rgba(5,5,5,0.9) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.8) 0%, rgba(5,5,5,0.62) 100%),
    radial-gradient(60% 60% at 30% 50%, rgba(204,158,102,0.16), transparent 60%);
}

.studio-card-v2 {
  max-width: 540px;
  padding: 28px;
  background: rgba(11, 10, 9, 0.78);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.studio-card-v2 h2 { margin: 10px 0 8px; font-size: clamp(28px, 7vw, 44px); }
.studio-card-v2 p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.studio-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.studio-card-actions .btn { flex: 1 1 auto; min-width: 150px; }

.studio-content {
  display: block;
}
.studio-panel {
  max-width: 620px;
  padding: clamp(24px, 6vw, 38px);
  background: rgba(11, 10, 9, 0.78);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.studio-panel h2 {
  margin: 12px 0 12px;
  max-width: 12ch;
  font-size: clamp(30px, 8vw, 58px);
}
.studio-panel p {
  max-width: 54ch;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.studio-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.studio-proof-list span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(0,0,0,0.28);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (min-width: 900px) {
  .studio-panel { margin-left: 0; }
}

.location-v2 {
  padding: clamp(44px, 8vw, 76px) 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.98), rgba(10,9,8,0.96)),
    url("assets/site/texture-panel.jpg") center / cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.location-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}
.location-grid h2 {
  margin: 12px 0 10px;
  font-size: clamp(30px, 7vw, 52px);
}
.location-grid p {
  max-width: 56ch;
  color: var(--text-soft);
  font-size: 15px;
}
.location-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.location-actions .btn {
  flex: 1 1 180px;
}
@media (min-width: 780px) {
  .location-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  }
}

/* ============================================================
   BOOKING ENXUTO
   ============================================================ */
.booking-v2 {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--bg);
}

.mini-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.mini-form::before {
  content: "";
  position: absolute;
  top: -1px; left: 28px; right: 28px;
  height: 2px;
  background: var(--foil);
  opacity: 0.7;
  border-radius: 999px;
}

.field {
  display: flex;
  flex-direction: column;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  transition: border-color 0.18s ease, background 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(247,243,235,0.36); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(204,158,102,0.04);
}
.field textarea {
  min-height: 96px;
  resize: vertical;
}
.field select {
  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 fill='none' stroke='%23cc9e66' stroke-width='1.6' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.field select option {
  background: #111110;
  color: var(--text);
}

.mini-form .btn { margin-top: 6px; min-height: 56px; }

.mini-form-note {
  margin-top: 8px;
  font-size: 11px;
  text-align: center;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 36px var(--pad-x) 30px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  background: var(--bg-2);
}
.site-footer .brand { justify-content: center; }
.site-footer p {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   THUMB BAR (mobile)
   ============================================================ */
.thumb-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: var(--z-thumb);
  display: flex;
  gap: 6px;
  padding: 7px;
  background: rgba(11,10,9,0.86);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.9);
}
.thumb-bar a {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 52px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.thumb-bar a:active { transform: scale(0.96); }
.thumb-bar a.primary {
  flex: 1.4;
  flex-direction: row;
  gap: 8px;
  background: var(--foil);
  color: #1a1207;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 28px -14px rgba(204,158,102,0.7);
}
.thumb-bar a:not(.primary):hover { color: var(--text); }
.thumb-bar svg { width: 18px; height: 18px; }
.thumb-bar a.primary svg { width: 16px; height: 16px; }

@media (min-width: 880px) {
  .thumb-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--thumb-h) + 18px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(20px);
  z-index: var(--z-modal);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
  max-width: 92vw;
  text-align: center;
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (min-width: 880px) {
  .toast { bottom: 24px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .marquee-track { animation: none; }
  .hero-bg img { animation: none; }
}
