:root {
  color-scheme: dark;
  --ink: #050505;
  --ink-2: #0d0b0a;
  --ink-3: #15110e;
  --paper: #fff6e8;
  --muted: #c9b8a3;
  --line: rgba(255, 246, 232, 0.15);
  --gold: #f0b65b;
  --gold-2: #ffd891;
  --ember: #e24a2f;
  --wine: #6d1822;
  --teal: #55b6a9;
  --sage: #9fba9a;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(5, 5, 5, 0.83), rgba(5, 5, 5, 0.9)),
    url("tattoo-bg-ambient-v1.svg") center top / min(110rem, 150vw) auto fixed no-repeat,
    radial-gradient(circle at 12% 0%, rgba(226, 74, 47, 0.24), transparent 26rem),
    radial-gradient(circle at 90% 12%, rgba(85, 182, 169, 0.13), transparent 24rem),
    linear-gradient(180deg, #050505, #0b0807 48%, #050505);
  color: var(--paper);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--ember), var(--gold-2), var(--teal));
  box-shadow: 0 0 22px rgba(240, 182, 91, 0.7);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.17;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mix-blend-mode: overlay;
}

.cursor-light {
  position: fixed;
  width: 27rem;
  height: 27rem;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(240, 182, 91, 0.18), rgba(226, 74, 47, 0.08) 36%, transparent 68%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ambient-field {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-field span {
  position: absolute;
  width: 42vmax;
  height: 42vmax;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  animation: drift 18s ease-in-out infinite alternate;
}

.ambient-field span:nth-child(1) {
  top: -18vmax;
  left: -12vmax;
  background: var(--ember);
}

.ambient-field span:nth-child(2) {
  right: -20vmax;
  top: 8vmax;
  background: var(--gold);
  animation-delay: -7s;
}

.ambient-field span:nth-child(3) {
  left: 18vmax;
  bottom: -24vmax;
  background: var(--teal);
  animation-delay: -11s;
}

.ink-drops {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.ink-drops span {
  position: absolute;
  width: clamp(0.7rem, 1.4vw, 1.4rem);
  aspect-ratio: 1;
  border-radius: 58% 42% 64% 36%;
  background: radial-gradient(circle at 35% 30%, rgba(255,246,232,0.35), rgba(226,74,47,0.5) 38%, rgba(5,5,5,0.7));
  opacity: 0.42;
  filter: blur(0.2px);
  animation: inkFloat 9s ease-in-out infinite alternate;
}

.ink-drops::before,
.ink-drops::after {
  content: "";
  position: absolute;
  left: -12vw;
  width: 124vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 246, 232, 0.26), rgba(240, 182, 91, 0.5), transparent);
  opacity: 0.34;
  transform: rotate(-9deg);
  animation: needleTrace 6.5s ease-in-out infinite;
}

.ink-drops::before {
  top: 36%;
}

.ink-drops::after {
  top: 62%;
  opacity: 0.18;
  animation-delay: -3.2s;
  transform: rotate(7deg);
}

.ink-drops span:nth-child(1) {
  left: 8%;
  top: 24%;
}

.ink-drops span:nth-child(2) {
  right: 12%;
  top: 38%;
  animation-delay: -3s;
}

.ink-drops span:nth-child(3) {
  left: 18%;
  bottom: 18%;
  animation-delay: -5s;
}

.ink-drops span:nth-child(4) {
  right: 26%;
  bottom: 26%;
  animation-delay: -7s;
}

.ink-drops span:nth-child(5) {
  left: 48%;
  top: 14%;
  animation-delay: -9s;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 246, 232, 0.1);
  background: rgba(5, 5, 5, 0.67);
  backdrop-filter: blur(22px);
}

.mobile-sticky-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: none;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 246, 232, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2), var(--ember));
  color: #130c07;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
}

.brand,
.topbar nav,
.topbar-actions,
.language-picker,
.hero-actions,
.availability,
.footer,
.cta-band {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  min-width: 14rem;
}

.brand-logo {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(240, 182, 91, 0.35));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.92rem;
  font-weight: 900;
}

.brand small,
.topbar nav a,
.privacy,
.footer {
  color: var(--muted);
  font-size: 0.78rem;
}

.topbar nav {
  gap: clamp(0.85rem, 2vw, 1.45rem);
}

.topbar nav a,
.nav-cta {
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.topbar nav a:hover {
  color: var(--paper);
}

.topbar-actions {
  gap: 0.75rem;
}

.language-picker {
  position: relative;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.2rem 0.35rem 0.2rem 0.75rem;
  border: 1px solid rgba(255, 246, 232, 0.16);
  border-radius: 999px;
  background: rgba(255, 246, 232, 0.06);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.language-picker select {
  min-width: 7.5rem;
  height: 2.15rem;
  border: 1px solid rgba(240, 182, 91, 0.4);
  border-radius: 999px;
  background: #0b0b0a;
  color: var(--paper);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: none;
  cursor: pointer;
  outline: none;
  padding: 0 1.8rem 0 0.7rem;
}

.language-picker select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(240, 182, 91, 0.16);
}

.nav-cta {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(240, 182, 91, 0.52);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 0.84rem;
  font-weight: 900;
}

.nav-cta:hover {
  border-color: var(--gold-2);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-overlay,
.hero-video-mask,
.hero-orbit {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.95) contrast(1.18) brightness(0.78);
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-video-mask {
  opacity: 0.36;
  background:
    radial-gradient(circle at 70% 42%, transparent 0 4rem, rgba(255,246,232,0.13) 4.08rem 4.14rem, transparent 4.22rem),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.18) 44%, transparent 46% 100%),
    repeating-linear-gradient(90deg, transparent 0 7rem, rgba(240, 182, 91, 0.1) 7.1rem, transparent 7.35rem);
  mix-blend-mode: screen;
  animation: scanSweep 7s linear infinite;
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 34%, rgba(240, 182, 91, 0.16), transparent 22rem),
    linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.62) 45%, rgba(5, 5, 5, 0.14)),
    linear-gradient(0deg, var(--ink), transparent 45%);
}

.hero-orbit {
  z-index: 4;
  pointer-events: none;
}

.hero-orbit span {
  position: absolute;
  right: clamp(1rem, 7vw, 7rem);
  top: 22%;
  width: clamp(12rem, 28vw, 28rem);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 182, 91, 0.26);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}

.hero-orbit span:nth-child(2) {
  width: clamp(16rem, 36vw, 36rem);
  border-color: rgba(85, 182, 169, 0.18);
  animation-duration: 27s;
  animation-direction: reverse;
}

.hero-orbit span:nth-child(3) {
  width: clamp(20rem, 44vw, 44rem);
  border-color: rgba(226, 74, 47, 0.18);
  animation-duration: 38s;
}

.hero-content {
  position: relative;
  z-index: 8;
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 9.5rem 0 6.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  gap: 2rem;
  align-items: end;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 1rem;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 15ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.6rem, 8vw, 9.2rem);
  text-wrap: balance;
  text-shadow: 0 16px 55px rgba(0, 0, 0, 0.72);
}

.lead {
  max-width: 42rem;
  color: #eadcca;
  font-size: clamp(1.05rem, 1.6vw, 1.38rem);
  line-height: 1.65;
}

.hero-actions {
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2) 43%, var(--ember));
  color: #170e08;
  box-shadow: 0 20px 60px rgba(240, 182, 91, 0.25), inset 0 1px 0 rgba(255,255,255,0.35);
}

.button.ghost {
  border-color: rgba(255, 246, 232, 0.24);
  color: var(--paper);
  background: rgba(255, 246, 232, 0.06);
  backdrop-filter: blur(14px);
}

.button.line {
  border-color: rgba(85, 182, 169, 0.44);
  color: #d8fff8;
  background: rgba(85, 182, 169, 0.08);
  backdrop-filter: blur(14px);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 48rem;
  margin-top: 2rem;
}

.hero-proof-grid div {
  position: relative;
  overflow: hidden;
  min-height: 8.5rem;
  padding: 1rem;
  border: 1px solid rgba(255,246,232,0.14);
  border-radius: 8px;
  background: rgba(5,5,5,0.48);
  backdrop-filter: blur(16px);
}

.hero-proof-grid div::before,
.metric::before,
.proof-card::before,
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255,246,232,0.08) 1px, transparent 1px),
    linear-gradient(rgba(255,246,232,0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-proof-grid span,
.hero-proof-grid strong,
.hero-proof-grid small {
  position: relative;
  display: block;
}

.hero-proof-grid span {
  color: var(--teal);
  font-weight: 900;
}

.hero-proof-grid strong {
  margin: 1.2rem 0 0.35rem;
}

.hero-proof-grid small {
  color: var(--muted);
  line-height: 1.45;
}

.offer-panel {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border: 1px solid rgba(255, 246, 232, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(20, 15, 12, 0.88), rgba(8, 8, 7, 0.7));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.offer-panel::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(120deg, transparent 38%, rgba(240, 182, 91, 0.2), transparent 62%);
  animation: shine 4.8s ease-in-out infinite;
}

.offer-panel > * {
  position: relative;
  z-index: 1;
}

.offer-panel strong {
  display: block;
  color: var(--paper);
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5vw, 3.7rem);
  line-height: 1;
}

.offer-panel span {
  color: #e3d3bf;
  line-height: 1.6;
}

.offer-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.offer-stack em,
.mini-link,
.metric a,
.proof-card span,
.offer-card span,
.offer-card a,
.video-slot a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(255,246,232,0.16);
  border-radius: 999px;
  background: rgba(255,246,232,0.06);
  color: var(--gold-2);
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.45rem 0.65rem;
}

.mini-link {
  margin-top: 1rem;
}

.availability {
  gap: 0.6rem;
  margin-top: 1.1rem;
  color: var(--sage);
  font-size: 0.88rem;
  font-weight: 800;
}

.pulse {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 0 rgba(159, 186, 154, 0.7);
  animation: pulse 1.8s infinite;
}

.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  border-top: 1px solid rgba(255,246,232,0.12);
  border-bottom: 1px solid rgba(255,246,232,0.12);
  background: rgba(5, 5, 5, 0.62);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero-marquee div {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.hero-marquee span {
  padding: 0.8rem 2.2rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.studio-strip {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(5,5,5,0.66), rgba(5,5,5,0.78)),
    url("tattoo-bg-ambient-v1.svg") center 58% / cover no-repeat;
}

.studio-strip div {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(10, 9, 8, 0.82);
  backdrop-filter: blur(10px);
}

.studio-strip strong,
.studio-strip span {
  display: block;
}

.studio-strip strong {
  color: #fff1dd;
}

.studio-strip span {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.6;
}

.section,
.booking-section {
  position: relative;
  z-index: 6;
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.52fr);
  column-gap: clamp(2rem, 6vw, 5rem);
  row-gap: 0.85rem;
  align-items: start;
  margin-bottom: 2rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  grid-column: 1;
  max-width: 13.5ch;
  font-size: clamp(2.75rem, 4.6vw, 4.85rem);
  line-height: 1.02;
}

.section-heading > p:last-child {
  grid-column: 2;
  align-self: end;
  max-width: 32rem;
  margin-bottom: 0.3rem;
}

.section-heading.narrow {
  display: block;
  max-width: 48rem;
}

.section-heading.narrow h2,
.section-heading.narrow > p:last-child {
  max-width: none;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 5.4rem);
  text-wrap: balance;
}

.section-heading p:last-child,
.booking-copy p,
.steps p,
.metric p,
.style-card p,
.immersive-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.metrics-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.metric,
.steps article,
.style-card,
.booking-form {
  border: 1px solid rgba(255, 246, 232, 0.13);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 246, 232, 0.075), rgba(255, 246, 232, 0.025));
}

.metric {
  position: relative;
  overflow: hidden;
  min-height: 16rem;
  padding: 1.4rem;
}

.metric a {
  margin-top: 1rem;
  color: #d8fff8;
  border-color: rgba(85,182,169,0.32);
}

.tattoo-icon {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 3.6rem;
  height: 3.6rem;
  opacity: 0.45;
  filter: drop-shadow(0 0 18px rgba(240,182,91,0.2));
}

.tattoo-icon.machine {
  background:
    linear-gradient(90deg, transparent 42%, var(--gold-2) 42% 58%, transparent 58%),
    linear-gradient(var(--gold-2), var(--gold-2)) 22% 26% / 48% 10% no-repeat,
    linear-gradient(var(--ember), var(--ember)) 35% 48% / 44% 18% no-repeat,
    linear-gradient(135deg, transparent 44%, var(--teal) 45% 55%, transparent 56%);
}

.tattoo-icon.needle {
  background:
    linear-gradient(135deg, transparent 48%, var(--gold-2) 49% 53%, transparent 54%),
    radial-gradient(circle at 30% 70%, var(--ember) 0 12%, transparent 13%),
    radial-gradient(circle at 54% 44%, var(--teal) 0 10%, transparent 11%);
}

.tattoo-icon.drop {
  border-radius: 60% 40% 65% 35%;
  background: radial-gradient(circle at 35% 30%, var(--gold-2), var(--ember) 42%, #050505 75%);
  transform: rotate(28deg);
}

.metric span,
.steps span {
  color: var(--gold-2);
  font-weight: 900;
}

.metric strong {
  display: block;
  margin: 4rem 0 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
}

.gallery {
  display: grid;
  grid-template-columns: 0.75fr 0.75fr 0.75fr 0.75fr 2.1fr;
  gap: 0.8rem;
  min-height: 35rem;
}

.work-card,
.gallery-preview,
.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 232, 0.13);
  border-radius: 8px;
  background: var(--ink-2);
}

.work-card {
  outline: 1px solid rgba(240,182,91,0.08);
  outline-offset: -0.45rem;
}

.work-card {
  padding: 0;
  color: var(--paper);
  cursor: pointer;
}

.work-card::after,
.gallery-preview::after,
.style-card::after,
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), transparent 26%, transparent 68%, rgba(240,182,91,0.12));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.work-card:hover::after,
.gallery-preview:hover::after,
.style-card:hover::after,
.video-card:hover::after {
  opacity: 1;
}

.work-card img,
.gallery-preview img,
.style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.work-card:hover img,
.work-card.is-active img,
.style-card:hover img {
  transform: scale(1.09);
  filter: saturate(1.03) contrast(1.1);
}

.work-card span,
.preview-badge,
.video-card span {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  z-index: 2;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 246, 232, 0.2);
  font-size: 0.75rem;
  font-weight: 900;
}

.image-copy {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 3.15rem;
  z-index: 2;
  padding: 0.75rem;
  border: 1px solid rgba(255,246,232,0.16);
  border-radius: 8px;
  background: rgba(5,5,5,0.62);
  backdrop-filter: blur(12px);
  transform: translateY(0.4rem);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.work-card:hover .image-copy,
.work-card.is-active .image-copy {
  transform: none;
  opacity: 1;
}

.image-copy strong,
.image-copy small,
.preview-panel strong,
.preview-panel span {
  display: block;
}

.image-copy small,
.preview-panel span {
  margin-top: 0.25rem;
  color: var(--muted);
  line-height: 1.4;
}

.gallery-preview {
  box-shadow: var(--shadow);
}

.preview-badge {
  left: auto;
  right: 1rem;
  top: 1rem;
  bottom: auto;
  color: var(--gold-2);
}

.preview-panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  max-width: 25rem;
  padding: 1rem;
  border: 1px solid rgba(255,246,232,0.18);
  border-radius: 8px;
  background: rgba(5,5,5,0.68);
  backdrop-filter: blur(16px);
}

.preview-panel a {
  display: inline-flex;
  margin-top: 0.8rem;
  color: var(--gold-2);
  font-weight: 900;
}

.style-lab {
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - 1220px) / 2));
  padding-right: max(1rem, calc((100vw - 1220px) / 2));
  background:
    linear-gradient(90deg, rgba(5,5,5,0.9), rgba(5,5,5,0.58), rgba(5,5,5,0.9)),
    url("tattoo-bg-ambient-v1.svg") center 42% / cover no-repeat;
}

.carousel-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.carousel-arrow {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(255,246,232,0.18);
  border-radius: 50%;
  background: rgba(255,246,232,0.06);
  color: var(--paper);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.style-carousel {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(255,246,232,0.14);
  border-radius: 8px;
  background: rgba(255,246,232,0.05);
}

.style-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 2rem;
  align-items: end;
  padding: 1rem;
  opacity: 0;
  transform: translateX(4rem) scale(0.98);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.style-slide.is-current {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.style-slide img {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.style-slide div {
  padding: clamp(1rem, 4vw, 2.2rem);
}

.style-slide span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.style-slide h3 {
  max-width: 14ch;
  margin: 1rem 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.style-slide p {
  max-width: 32rem;
  color: var(--muted);
  line-height: 1.7;
}

.video-section {
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - 1220px) / 2));
  padding-right: max(1rem, calc((100vw - 1220px) / 2));
  background:
    linear-gradient(rgba(5,5,5,0.78), rgba(5,5,5,0.92)),
    url("tattoo-bg-ambient-v1.svg") right 48% / min(96rem, 140vw) auto no-repeat;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.video-card {
  min-height: 30rem;
  box-shadow: var(--shadow);
}

.video-card.tall {
  min-height: 38rem;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(5,5,5,0.65), transparent 45%);
}

.video-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.video-slot {
  overflow: hidden;
  border: 1px solid rgba(255,246,232,0.13);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,246,232,0.075), rgba(255,246,232,0.025));
}

.video-slot video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.08);
}

.video-slot div {
  padding: 1rem;
}

.video-slot h3 {
  margin: 0.7rem 0 0.45rem;
}

.video-slot p {
  color: var(--muted);
  line-height: 1.6;
}

.video-slot a {
  color: #d8fff8;
  border-color: rgba(85,182,169,0.32);
}

.proof-section {
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - 1220px) / 2));
  padding-right: max(1rem, calc((100vw - 1220px) / 2));
  background:
    linear-gradient(135deg, rgba(5,5,5,0.92), rgba(13,11,10,0.72)),
    url("tattoo-bg-ambient-v1.svg") left 55% / min(84rem, 130vw) auto no-repeat;
}

.proof-grid,
.offer-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.proof-card,
.offer-card {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  padding: 1.2rem;
  border: 1px solid rgba(255,246,232,0.13);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,246,232,0.075), rgba(255,246,232,0.025));
}

.proof-card::after,
.offer-card::after,
.faq-list details::after,
.booking-form::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 4.2rem;
  height: 4.2rem;
  opacity: 0.22;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 46%, var(--gold-2) 47% 53%, transparent 54%),
    radial-gradient(circle at 28% 72%, var(--ember) 0 12%, transparent 13%),
    radial-gradient(circle at 58% 40%, var(--teal) 0 10%, transparent 11%);
  filter: drop-shadow(0 0 18px rgba(240, 182, 91, 0.25));
}

.proof-card:nth-child(2)::after,
.offer-card:nth-child(2)::after {
  border-radius: 58% 42% 64% 36%;
  background: radial-gradient(circle at 35% 30%, var(--gold-2), var(--ember) 42%, #050505 75%);
  transform: rotate(28deg);
}

.proof-card:nth-child(3)::after,
.offer-card:nth-child(3)::after {
  background:
    linear-gradient(90deg, transparent 42%, var(--gold-2) 42% 58%, transparent 58%),
    linear-gradient(var(--gold-2), var(--gold-2)) 22% 26% / 48% 10% no-repeat,
    linear-gradient(var(--ember), var(--ember)) 35% 48% / 44% 18% no-repeat,
    linear-gradient(135deg, transparent 44%, var(--teal) 45% 55%, transparent 56%);
}

.proof-card span,
.offer-card span {
  position: relative;
  color: var(--teal);
}

.proof-card h3,
.offer-card strong {
  position: relative;
  display: block;
  margin: 5rem 0 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

.proof-card p,
.offer-card p {
  position: relative;
  color: var(--muted);
  line-height: 1.65;
}

.video-toggle {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  border: 1px solid rgba(255, 246, 232, 0.24);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.62);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.45rem 0.7rem;
  backdrop-filter: blur(12px);
}

.immersive-band {
  position: relative;
  z-index: 6;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.immersive-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.94) contrast(1.2) brightness(0.68);
}

.immersive-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.92), rgba(5,5,5,0.36) 55%, rgba(5,5,5,0.72)),
    linear-gradient(0deg, rgba(5,5,5,0.9), transparent 48%, rgba(5,5,5,0.38));
}

.immersive-copy {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
  max-width: 58rem;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.style-card {
  overflow: hidden;
  position: relative;
}

.style-card img {
  aspect-ratio: 4 / 5;
}

.style-card h3,
.style-card p {
  margin-left: 1rem;
  margin-right: 1rem;
}

.style-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.style-card p {
  margin-bottom: 1.2rem;
}

.offer-deck {
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - 1220px) / 2));
  padding-right: max(1rem, calc((100vw - 1220px) / 2));
  background:
    linear-gradient(rgba(5,5,5,0.86), rgba(5,5,5,0.91)),
    url("tattoo-bg-ambient-v1.svg") center 72% / cover no-repeat;
}

.offer-cards {
  grid-template-columns: repeat(3, 1fr);
}

.offer-card strong {
  color: var(--paper);
  font-size: 2.3rem;
}

.offer-card a {
  position: relative;
  margin-top: 1rem;
}

.process {
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.steps article {
  padding: 1.4rem;
}

.steps h3 {
  margin: 1.8rem 0 0.75rem;
  font-size: 1.35rem;
}

.cta-band {
  position: relative;
  z-index: 7;
  justify-content: space-between;
  gap: 2rem;
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(255, 246, 232, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.78), rgba(5,5,5,0.35)),
    url("tattoo-bg-ambient-v1.svg") center 48% / cover no-repeat,
    linear-gradient(135deg, rgba(226, 74, 47, 0.2), rgba(240, 182, 91, 0.09)),
    rgba(255, 246, 232, 0.055);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -120% 20%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: rotate(18deg);
  animation: shine 6s ease-in-out infinite;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 15ch;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,246,232,0.13);
  border-radius: 8px;
  background: rgba(255,246,232,0.055);
  padding: 1rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--paper);
  font-weight: 900;
}

.faq-list p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - 1220px) / 2));
  padding-right: max(1rem, calc((100vw - 1220px) / 2));
  background:
    linear-gradient(90deg, rgba(5,5,5,0.94), rgba(5,5,5,0.72), rgba(5,5,5,0.92)),
    url("tattoo-bg-ambient-v1.svg") center 55% / cover no-repeat;
}

.booking-note {
  margin-top: 1.5rem;
  padding: 1rem;
  border-left: 3px solid var(--gold);
  background: rgba(240, 182, 91, 0.09);
  color: #f2e4d0;
  line-height: 1.6;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.booking-actions .button {
  flex: 1 1 10rem;
  min-width: 0;
  justify-content: center;
}

.booking-actions .button[data-i18n="bookingWhatsApp"] {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(180deg, #2bd458, #108a34);
  border-color: rgba(78, 217, 111, 0.8);
  color: #f5fff7;
  box-shadow: 0 16px 34px rgba(19, 121, 52, 0.3);
}

.booking-actions .button[data-i18n="bookingWhatsApp"]:hover {
  background: linear-gradient(180deg, #38e064, #0f7f30);
  box-shadow: 0 20px 42px rgba(19, 121, 52, 0.38);
}

.booking-actions .button[data-i18n="bookingInstagram"] {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 24%, #d62976 60%, #962fbf 100%);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff8fb;
  box-shadow: 0 16px 34px rgba(214, 41, 118, 0.26);
}

.booking-actions .button[data-i18n="bookingInstagram"]:hover {
  filter: brightness(1.04) saturate(1.08);
  box-shadow: 0 20px 42px rgba(214, 41, 118, 0.34);
}

.booking-actions .button[data-i18n="bookingCall"] {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.booking-actions .button[data-i18n="bookingCall"]::before {
  content: "";
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.86.33 1.7.62 2.5a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.58-1.21a2 2 0 0 1 2.11-.45c.8.29 1.64.5 2.5.62A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.86.33 1.7.62 2.5a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.58-1.21a2 2 0 0 1 2.11-.45c.8.29 1.64.5 2.5.62A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.booking-actions .button[data-i18n="bookingWhatsApp"]::before {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath fill='black' d='M19.11 17.44c-.26-.13-1.53-.75-1.77-.84-.24-.09-.42-.13-.59.13-.17.26-.67.84-.82 1.01-.15.17-.3.19-.56.06-.26-.13-1.09-.4-2.08-1.28-.77-.69-1.29-1.54-1.44-1.8-.15-.26-.02-.39.11-.52.11-.11.26-.3.39-.45.13-.15.17-.26.26-.43.09-.17.04-.32-.02-.45-.06-.13-.59-1.4-.81-1.92-.21-.5-.43-.44-.59-.45h-.5c-.17 0-.45.06-.69.32-.24.26-.91.89-.91 2.17 0 1.29.94 2.53 1.07 2.7.13.17 1.86 2.84 4.51 3.98.63.27 1.13.43 1.52.55.64.21 1.23.18 1.69.11.52-.08 1.53-.62 1.75-1.22.22-.6.22-1.11.15-1.22-.06-.11-.24-.17-.5-.3Z'/%3E%3Cpath fill='black' fill-rule='evenodd' d='M16 3C8.84 3 3 8.68 3 15.65c0 2.49.76 4.92 2.18 6.99L3 29l6.58-2.1a13.31 13.31 0 0 0 6.42 1.64c7.16 0 13-5.68 13-12.65C29 8.68 23.16 3 16 3Zm0 23.15c-2.07 0-4.1-.53-5.88-1.53l-.42-.24-3.9 1.24 1.27-3.74-.28-.4a10.83 10.83 0 0 1-1.75-5.83C5.04 9.79 10.03 5.05 16 5.05s10.96 4.74 10.96 10.6C26.96 21.41 21.97 26.15 16 26.15Z' clip-rule='evenodd'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Cpath fill='black' d='M19.11 17.44c-.26-.13-1.53-.75-1.77-.84-.24-.09-.42-.13-.59.13-.17.26-.67.84-.82 1.01-.15.17-.3.19-.56.06-.26-.13-1.09-.4-2.08-1.28-.77-.69-1.29-1.54-1.44-1.8-.15-.26-.02-.39.11-.52.11-.11.26-.3.39-.45.13-.15.17-.26.26-.43.09-.17.04-.32-.02-.45-.06-.13-.59-1.4-.81-1.92-.21-.5-.43-.44-.59-.45h-.5c-.17 0-.45.06-.69.32-.24.26-.91.89-.91 2.17 0 1.29.94 2.53 1.07 2.7.13.17 1.86 2.84 4.51 3.98.63.27 1.13.43 1.52.55.64.21 1.23.18 1.69.11.52-.08 1.53-.62 1.75-1.22.22-.6.22-1.11.15-1.22-.06-.11-.24-.17-.5-.3Z'/%3E%3Cpath fill='black' fill-rule='evenodd' d='M16 3C8.84 3 3 8.68 3 15.65c0 2.49.76 4.92 2.18 6.99L3 29l6.58-2.1a13.31 13.31 0 0 0 6.42 1.64c7.16 0 13-5.68 13-12.65C29 8.68 23.16 3 16 3Zm0 23.15c-2.07 0-4.1-.53-5.88-1.53l-.42-.24-3.9 1.24 1.27-3.74-.28-.4a10.83 10.83 0 0 1-1.75-5.83C5.04 9.79 10.03 5.05 16 5.05s10.96 4.74 10.96 10.6C26.96 21.41 21.97 26.15 16 26.15Z' clip-rule='evenodd'/%3E%3C/svg%3E") center / contain no-repeat;
}

.booking-actions .button[data-i18n="bookingInstagram"]::before {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' ry='5'/%3E%3Cpath d='M16.5 11.37A4 4 0 1 1 12.63 7.5 4 4 0 0 1 16.5 11.37Z'/%3E%3Cpath d='M17.5 6.5h.01'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' ry='5'/%3E%3Cpath d='M16.5 11.37A4 4 0 1 1 12.63 7.5 4 4 0 0 1 16.5 11.37Z'/%3E%3Cpath d='M17.5 6.5h.01'/%3E%3C/svg%3E") center / contain no-repeat;
}

.booking-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: var(--shadow);
}

.booking-form > * {
  position: relative;
  z-index: 1;
}

.gallery-section {
  margin-top: -0.7rem;
}

.gallery-section .section-heading {
  margin-bottom: 1.25rem;
}

.gallery {
  margin-top: -0.15rem;
}

.booking-form label {
  display: grid;
  gap: 0.45rem;
  color: #f2e4d0;
  font-size: 0.85rem;
  font-weight: 900;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 246, 232, 0.14);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.72);
  color: var(--paper);
  font: inherit;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  outline: none;
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: rgba(240, 182, 91, 0.8);
  box-shadow: 0 0 0 3px rgba(240, 182, 91, 0.16);
}

.form-button {
  width: 100%;
  margin-top: 0.25rem;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--sage);
  font-weight: 800;
}

.footer {
  position: relative;
  z-index: 6;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem 1rem;
  border-top: 1px solid var(--line);
  background: #040404;
}

.footer img {
  width: 2rem;
  height: 2rem;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tilt-card:hover {
  border-color: rgba(240, 182, 91, 0.42);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 0.65rem rgba(159, 186, 154, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(159, 186, 154, 0);
  }
}

@keyframes drift {
  from {
    transform: translate3d(-4%, -2%, 0) scale(1);
  }
  to {
    transform: translate3d(6%, 5%, 0) scale(1.12);
  }
}

@keyframes inkFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  to {
    transform: translate3d(1.4rem, -2.2rem, 0) rotate(36deg) scale(1.25);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(2%, -1%, 0);
  }
}

@keyframes scanSweep {
  from {
    transform: translateX(-12%);
  }
  to {
    transform: translateX(12%);
  }
}

@keyframes needleTrace {
  0%,
  22% {
    clip-path: inset(0 100% 0 0);
    transform: translateX(-4vw) rotate(-8deg);
  }
  58% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 100%);
    transform: translateX(5vw) rotate(-8deg);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.04);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes shine {
  0%,
  42% {
    transform: translateX(-45%) rotate(18deg);
  }
  72%,
  100% {
    transform: translateX(45%) rotate(18deg);
  }
}

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

@keyframes playPulse {
  50% {
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.58), 0 0 0 0.8rem rgba(240, 182, 91, 0);
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@media (max-width: 1040px) {
  .topbar nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    align-items: flex-start;
  }

  .topbar-actions {
    align-items: flex-end;
    flex-direction: column;
    gap: 0.45rem;
  }

  .hero-content,
  .section-heading,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading > p:last-child {
    grid-column: 1;
    max-width: none;
  }

  .section-heading h2 {
    font-size: clamp(2.25rem, 10vw, 4.2rem);
  }

  .hero-content {
    padding-top: 8rem;
  }

  .studio-strip,
  .steps,
  .style-grid,
  .video-grid,
  .video-slot-grid,
  .proof-grid,
  .offer-cards,
  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof-grid {
    max-width: none;
  }

  .metrics-section {
    display: flex;
    width: 100%;
    max-width: none;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1.2rem 1rem 1.5rem;
    scrollbar-width: thin;
  }

  .metrics-section .metric {
    flex: 0 0 min(82vw, 21rem);
    min-height: 10.5rem;
    padding: 0.95rem;
    scroll-snap-align: center;
  }

  .metrics-section .tattoo-icon {
    width: 2.35rem;
    height: 2.35rem;
    right: 0.85rem;
    top: 0.85rem;
    opacity: 0.36;
  }

  .metrics-section .metric strong {
    margin: 1.85rem 0 0.45rem;
    font-size: 1.45rem;
  }

  .metrics-section .metric p {
    display: -webkit-box;
    margin-bottom: 0.7rem;
    overflow: hidden;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .metrics-section .metric a {
    margin-top: 0;
    padding: 0.38rem 0.58rem;
    font-size: 0.72rem;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .booking-section {
    gap: 1.5rem;
  }

  .gallery-section {
    margin-top: -0.35rem;
  }

  .carousel-arrow {
    width: 100%;
    height: 2.8rem;
    border-radius: 8px;
  }

  .style-carousel {
    min-height: 45rem;
  }

  .style-slide {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.8rem;
  }

  .style-slide img {
    min-height: 22rem;
    max-height: 28rem;
  }

  .proof-card,
  .offer-card {
    min-height: 14rem;
  }

  .proof-card h3,
  .offer-card strong {
    margin-top: 3rem;
  }

  .video-card,
  .video-card.tall {
    min-height: 24rem;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
  }

  .work-card {
    aspect-ratio: 1;
  }

  .gallery-preview {
    grid-column: 1 / -1;
    aspect-ratio: 1 / 1.1;
    order: -1;
  }

  .preview-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -7rem 1rem 1rem;
  }

  .cta-band {
    display: grid;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 0.7rem 0.85rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 2.7rem;
    height: 2.7rem;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .language-picker {
    min-height: 2.4rem;
    padding-left: 0.55rem;
  }

  .language-picker span {
    display: none;
  }

  .language-picker select {
    min-width: 6.7rem;
    height: 2rem;
    font-size: 0.74rem;
  }

  .booking-actions {
    gap: 0.55rem;
  }

  .booking-actions .button {
    flex-basis: 100%;
  }

  .metrics-section {
    padding-top: 0.85rem;
    padding-bottom: 1.1rem;
  }

  .metrics-section .metric {
    flex-basis: 78vw;
    min-height: 9.4rem;
  }

  .metrics-section .metric p {
    -webkit-line-clamp: 2;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .hero-media img {
    object-position: 58% 20%;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, var(--ink), rgba(5, 5, 5, 0.44) 52%, rgba(5, 5, 5, 0.34)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.18));
  }

  .hero-orbit {
    opacity: 0.45;
  }

  .button {
    width: 100%;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 4.8rem;
  }

  .hero {
    min-height: 108svh;
  }

  .hero-content {
    padding-bottom: 5.8rem;
  }

  .hero-proof-grid div {
    min-height: auto;
  }

  .image-copy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -5rem 0.7rem 0.7rem;
    opacity: 1;
    transform: none;
  }

  .work-card span {
    top: 0.75rem;
    bottom: auto;
  }

  .style-carousel {
    min-height: 42rem;
  }

  .style-slide {
    padding: 0.7rem;
  }

  .style-slide img {
    min-height: 18rem;
  }

  .style-slide div {
    padding: 0.75rem;
  }

  .video-slot video {
    aspect-ratio: 4 / 3;
  }

  .video-card,
  .video-card.tall {
    min-height: 21rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.video-carousel-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(0.85rem, 2vw, 1.1rem);
  border: 1px solid rgba(255, 246, 232, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(226, 74, 47, 0.13), rgba(85, 182, 169, 0.07)),
    rgba(255, 246, 232, 0.045);
  box-shadow: var(--shadow);
}

.video-carousel-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 182, 91, 0.16), transparent 18rem),
    linear-gradient(90deg, rgba(255,246,232,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,246,232,0.04) 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
  opacity: 0.7;
}

.video-carousel-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.video-carousel-head span,
.video-card-copy span,
.video-lightbox-panel span {
  display: block;
  color: var(--gold-2);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-carousel-head strong {
  display: block;
  margin-top: 0.25rem;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

.video-carousel-controls {
  display: flex;
  gap: 0.5rem;
}

.video-carousel-controls button,
.video-lightbox-close {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 246, 232, 0.18);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.58);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 1.65rem;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.video-carousel-track {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.2rem 0 0.65rem;
  scrollbar-width: thin;
}

.video-carousel-track .video-card {
  flex: 0 0 min(78vw, 22rem);
  min-height: 27rem;
  scroll-snap-align: center;
  cursor: pointer;
  transform: scale(0.94);
  opacity: 0.72;
}

.video-carousel-track .video-card.is-featured {
  flex-basis: min(86vw, 31rem);
  transform: scale(1);
  opacity: 1;
  border-color: rgba(240, 182, 91, 0.48);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.68), 0 0 55px rgba(240, 182, 91, 0.13);
}

.video-carousel-track .video-card video {
  transition: transform 0.55s ease, filter 0.55s ease;
}

.video-carousel-track .video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.12) brightness(0.72);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.reel-preview-frame {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  background: #000;
  pointer-events: none;
  filter: saturate(0.98) contrast(1.08) brightness(0.82);
}

.video-carousel-track .video-card.is-featured video {
  filter: saturate(1.08) contrast(1.15);
  transform: scale(1.04);
}

.video-carousel-track .video-card.is-featured img {
  filter: saturate(1.1) contrast(1.18) brightness(0.82);
  transform: scale(1.04);
}

.video-carousel-track .video-card.is-featured .reel-preview-frame {
  filter: saturate(1.08) contrast(1.12) brightness(0.92);
}

.instagram-reel-card::after {
  opacity: 1;
  background:
    linear-gradient(0deg, rgba(5,5,5,0.88), transparent 42%, rgba(5,5,5,0.18)),
    radial-gradient(circle at 24% 20%, rgba(255, 216, 145, 0.18), transparent 14rem);
}

.instagram-badge {
  display: none;
}

.reel-play-icon {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 4.6rem;
  height: 4.6rem;
  border: 1px solid rgba(255, 246, 232, 0.28);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 216, 145, 0.94), rgba(226, 74, 47, 0.92));
  color: #120b06;
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.58), 0 0 0 0 rgba(240, 182, 91, 0.42);
  animation: playPulse 2s ease-in-out infinite;
}

.reel-actions {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.reel-actions button,
.reel-actions a {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 246, 232, 0.2);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.68);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0 0.8rem;
  backdrop-filter: blur(14px);
}

.reel-actions button {
  background: linear-gradient(135deg, var(--gold), var(--gold-2), var(--ember));
  color: #140c06;
}

.instagram-reel-card .video-card-copy {
  bottom: 4.35rem;
}

.video-card-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  padding: 1rem;
  border: 1px solid rgba(255, 246, 232, 0.18);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(16px);
}

.video-card-copy h3 {
  margin: 0.55rem 0 0.35rem;
  font-size: 1.3rem;
}

.video-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.4rem);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.video-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-lightbox-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(1080px, 100%);
  max-height: calc(100svh - 2rem);
  overflow: hidden;
  border: 1px solid rgba(255, 246, 232, 0.18);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.8);
  transform: scale(0.92) translateY(1rem);
  transition: transform 0.25s ease;
}

.video-lightbox.is-open .video-lightbox-panel {
  transform: none;
}

.video-lightbox-panel video {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: min(68svh, 42rem);
  max-height: calc(100svh - 12rem);
  object-fit: contain;
  background: #000;
}

.video-lightbox-panel iframe {
  display: none;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: min(68svh, 42rem);
  max-height: calc(100svh - 12rem);
  border: 0;
  background: #000;
}

.video-lightbox-panel.is-instagram video {
  display: none;
}

.video-lightbox-panel.is-instagram iframe {
  display: block;
}

.video-lightbox-panel > div {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.video-lightbox-panel strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.3rem;
}

.lightbox-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.lightbox-actions [data-instagram-open] {
  display: none;
}

.video-lightbox-close {
  position: absolute;
  right: 0.85rem;
  top: 0.85rem;
  z-index: 4;
}

body.video-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .video-carousel-head,
  .video-lightbox-panel > div {
    align-items: stretch;
    flex-direction: column;
  }

  .video-lightbox-panel video,
  .video-lightbox-panel iframe {
    height: min(56svh, 34rem);
    max-height: calc(100svh - 14rem);
  }

  .lightbox-actions {
    justify-content: stretch;
  }

  .lightbox-actions .button {
    width: 100%;
    justify-content: center;
  }

  .video-carousel-controls button {
    width: 100%;
    border-radius: 8px;
  }

  .video-carousel-track .video-card,
  .video-carousel-track .video-card.is-featured {
    flex-basis: min(86vw, 24rem);
    min-height: 30rem;
  }
}

@media (max-width: 560px) {
  .video-carousel-track {
    gap: 0.75rem;
  }

  .video-carousel-track .video-card,
  .video-carousel-track .video-card.is-featured {
    flex-basis: 88vw;
    min-height: 28rem;
  }

  .video-card-copy {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    padding: 0.85rem;
  }

  .video-lightbox {
    padding: 0.5rem;
    align-items: stretch;
  }

  .video-lightbox-panel {
    max-height: calc(100svh - 1rem);
  }

  .video-lightbox-panel video,
  .video-lightbox-panel iframe {
    height: min(44svh, 20rem);
    max-height: calc(100svh - 11rem);
  }

  .video-lightbox-panel > div {
    padding: 0.85rem;
    gap: 0.75rem;
  }

  .video-lightbox-panel strong {
    font-size: 1.1rem;
  }
}
