/* =========================================================
   2M TATTOO — sistema visual
   Preto de estúdio, off-white de papel, ouro de tinta.
   ========================================================= */

:root {
  color-scheme: dark;

  --bg: #07080a;
  --bg-2: #0c0e12;
  --panel: #101318;
  --panel-2: #151920;
  --ink: #f4f1ea;
  --muted: #9aa2ac;
  --muted-2: #7d858f;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.2);

  --gold: #c9a44c;
  --gold-soft: rgba(201, 164, 76, 0.16);
  --red: #c8352f;
  --wa: #1fa855;
  --wa-hi: #25d366;

  --max: 1220px;
  --gutter: clamp(1rem, 4vw, 3rem);
  --radius: 4px;

  --font-display: Anton, "Arial Narrow", Impact, Haettenschweiler, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
dl,
ol,
ul {
  margin-top: 0;
}

::selection {
  background: var(--gold);
  color: #07080a;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  background: var(--gold);
  color: #07080a;
  font-weight: 800;
  text-decoration: none;
  transition: top 200ms var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- textura de fundo ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 6s steps(6) infinite;
}

@keyframes grainShift {
  0% { background-position: 0 0; }
  20% { background-position: -24px 18px; }
  40% { background-position: 18px -26px; }
  60% { background-position: -18px -16px; }
  80% { background-position: 26px 10px; }
  100% { background-position: 0 0; }
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: 2px;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--red), var(--gold));
}

/* ---------- tipografia base ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 26px;
  height: 1px;
  background: var(--gold);
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1.4rem;
  font-size: clamp(3.4rem, 10vw, 7rem);
}

h1 .line {
  display: block;
}

h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(244, 241, 234, 0.55);
  paint-order: stroke fill;
}

.lead {
  max-width: 46ch;
  color: #cfd5db;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.6;
}

.section-note {
  max-width: 34ch;
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.micro-note {
  margin: 0.7rem 0 0;
  color: var(--muted-2);
  font-size: 0.8rem;
  line-height: 1.5;
}

.micro-note.center {
  text-align: center;
}

/* ---------- botões ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms var(--ease), background 200ms var(--ease),
    border-color 200ms var(--ease), color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-lg {
  min-height: 54px;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-wa {
  border-color: transparent;
  background: linear-gradient(135deg, var(--wa-hi), var(--wa));
  color: #04170c;
  box-shadow: 0 12px 30px rgba(31, 168, 85, 0.22);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(31, 168, 85, 0.32);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn .ico-arrow {
  transition: transform 240ms var(--ease);
}

.btn:hover .ico-arrow {
  transform: translateX(4px);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  transition: border-color 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}

.icon-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--gutter);
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.9), rgba(7, 8, 10, 0));
  transition: transform 340ms var(--ease), background 300ms var(--ease),
    border-color 300ms var(--ease), backdrop-filter 300ms var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(7, 8, 10, 0.82);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--line);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
  border: 1px solid rgba(201, 164, 76, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  transition: background 300ms var(--ease), transform 300ms var(--ease);
}

.brand:hover .brand-mark {
  background: var(--gold-soft);
  transform: rotate(-6deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--muted-2);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms var(--ease);
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: width 260ms var(--ease);
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-cta {
  min-height: 42px;
  padding: 0.55rem 1.1rem;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-toggle span[aria-hidden] {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: background 200ms var(--ease);
}

.menu-toggle span[aria-hidden]::before,
.menu-toggle span[aria-hidden]::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ink);
  content: "";
  transition: transform 260ms var(--ease);
}

.menu-toggle span[aria-hidden]::before {
  transform: translateY(-5px);
}

.menu-toggle span[aria-hidden]::after {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden] {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span[aria-hidden]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden]::after {
  transform: rotate(-45deg);
}

/* ---------- menu mobile ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 5rem var(--gutter) 3rem;
  background: rgba(7, 8, 10, 0.97);
  backdrop-filter: blur(14px);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3rem);
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  animation: menuIn 460ms var(--ease) forwards;
}

.mobile-menu a:nth-child(1) { animation-delay: 40ms; }
.mobile-menu a:nth-child(2) { animation-delay: 90ms; }
.mobile-menu a:nth-child(3) { animation-delay: 140ms; }
.mobile-menu a:nth-child(4) { animation-delay: 190ms; }
.mobile-menu a:nth-child(5) { animation-delay: 240ms; }

.mobile-menu a em {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.mobile-menu .btn-wa {
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: none;
  animation: menuIn 460ms var(--ease) 300ms forwards;
  opacity: 0;
}

@keyframes menuIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- layout ---------- */
main {
  position: relative;
  z-index: 2;
}

section {
  scroll-margin-top: 88px;
}

.hero,
.manifesto,
.work,
.artist,
.process,
.booking,
.english,
.faq,
.cta-final,
.site-footer {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  min-height: 100svh;
  padding-top: 7.5rem;
  padding-bottom: 5rem;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: -10% -30% auto -30%;
  height: 120%;
  z-index: -1;
  background:
    radial-gradient(closest-side at 72% 34%, rgba(200, 53, 47, 0.14), transparent),
    radial-gradient(closest-side at 20% 12%, rgba(201, 164, 76, 0.1), transparent);
  filter: blur(10px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.8rem 0 2.2rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 560px);
  margin: 0;
  border-top: 1px solid var(--line);
}

.proof-strip div {
  min-width: 0;
  padding: 1rem 1rem 0 0;
}

.proof-strip div + div {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.proof-strip dt {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.proof-strip dd {
  margin: 0.15rem 0 0;
  color: var(--muted-2);
  font-size: 0.76rem;
  line-height: 1.4;
}

.hero-art {
  position: relative;
  justify-self: end;
  width: 100%;
  transform: translate3d(var(--tx, 0), var(--ty, 0), 0);
  transition: transform 600ms var(--ease);
}

.hero-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  animation: floaty 9s ease-in-out infinite;
}

.hero-frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.25), transparent 40%, rgba(7, 8, 10, 0.7));
  pointer-events: none;
}

.hero-frame::after {
  position: absolute;
  inset: 10px;
  z-index: 3;
  border: 1px solid rgba(244, 241, 234, 0.16);
  content: "";
  pointer-events: none;
}

.hero-main {
  width: 100%;
  height: auto; /* sem isso o atributo height do <img> vence o aspect-ratio */
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.05);
  transform: scale(1.02);
}

.hero-frame figcaption {
  position: absolute;
  left: 1.35rem;
  bottom: 1.35rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(200, 53, 47, 0.22);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(200, 53, 47, 0); }
}

@keyframes floaty {
  50% { transform: translateY(-14px); }
}

.scroll-hint {
  position: absolute;
  left: var(--gutter);
  bottom: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted-2);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-hint i {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: hintSlide 2.4s ease-in-out infinite;
  transform-origin: left;
}

@keyframes hintSlide {
  50% { transform: scaleX(0.35); }
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  padding: 1.1rem 0;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(201, 164, 76, 0.05), transparent 40%, rgba(200, 53, 47, 0.05));
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.82);
  white-space: nowrap;
}

.marquee b {
  color: var(--gold);
  font-size: 0.85rem;
}

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

/* ---------- manifesto ---------- */
.manifesto {
  padding-block: clamp(4.5rem, 11vw, 8rem);
}

.split-words {
  max-width: 22ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5.2vw, 3.6rem);
  line-height: 1.06;
  text-transform: uppercase;
}

.split-words .w {
  display: inline-block;
  color: rgba(244, 241, 234, 0.16);
  transition: color 520ms var(--ease);
}

.split-words .w.on {
  color: var(--ink);
}

/* ---------- portfólio ---------- */
.work {
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.4rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease);
}

.chip em {
  color: var(--muted-2);
  font-size: 0.7rem;
  font-style: normal;
}

.chip:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

.chip.is-active {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold);
}

.chip.is-active em {
  color: var(--gold);
}

.gallery {
  columns: 3;
  column-gap: 0.8rem;
}

.tile {
  position: relative;
  display: block;
  break-inside: avoid;
  margin: 0 0 0.8rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--panel);
  transition: border-color 300ms var(--ease);
}

.tile img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--ar, 3 / 4);
  object-fit: cover;
  object-position: var(--pos, center);
  filter: grayscale(0.22) contrast(1.05);
  transition: transform 700ms var(--ease), filter 500ms var(--ease);
}

.tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(7, 8, 10, 0.88));
  opacity: 0.75;
  transition: opacity 360ms var(--ease);
  pointer-events: none;
}

.tile:hover img,
.tile:focus-within img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.1);
}

.tile:hover,
.tile:focus-within {
  border-color: rgba(201, 164, 76, 0.5);
}

.tile:hover::after {
  opacity: 1;
}

.tile figcaption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.85rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  transform: translateY(6px);
  opacity: 0.92;
  transition: transform 360ms var(--ease), opacity 360ms var(--ease);
  pointer-events: none;
}

.tile:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.tile figcaption strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tile figcaption span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.tile-open {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.gallery-empty {
  margin: 2rem 0 0;
  color: var(--muted);
}

/* ---------- artista ---------- */
.artist {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding-block: clamp(4rem, 9vw, 7rem);
}

.artist-media {
  position: relative;
  padding-bottom: 2.5rem;
}

.artist-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}

.artist-shot::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.1), rgba(7, 8, 10, 0.55));
}

.artist-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.9) contrast(1.15);
  transition: filter 700ms var(--ease);
}

.artist-media:hover .artist-shot img {
  filter: grayscale(0.1) contrast(1.05);
}

.artist-badge {
  position: absolute;
  right: -0.5rem;
  bottom: 0;
  width: 118px;
  height: 118px;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--bg);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
}

.artist-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.artist-copy p:not(.eyebrow) {
  max-width: 52ch;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.artist-facts {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.artist-facts li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
}

.artist-facts strong {
  min-width: 92px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- processo ---------- */
.process {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps li {
  position: relative;
  padding: 1.6rem 1.4rem 1.6rem 0;
}

.steps li + li {
  padding-left: 1.4rem;
  border-left: 1px solid var(--line);
}

.steps li::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: width 900ms var(--ease);
}

.steps li.is-visible::before {
  width: 100%;
}

.step-n {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.steps h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---------- AGENDAMENTO ---------- */
.booking {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--line);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

.booking-col {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: var(--panel);
}

.booking-what {
  background: var(--panel-2);
}

.field-block + .field-block {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.block-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.block-head h3 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: none;
  border: 1px solid rgba(201, 164, 76, 0.45);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
}

/* calendário */
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.calendar-head strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cal-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 200ms var(--ease), color 200ms var(--ease), opacity 200ms var(--ease);
}

.cal-nav svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cal-nav:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
}

.cal-nav:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.calendar-weekdays {
  margin-bottom: 6px;
  color: var(--muted-2);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms var(--ease), border-color 180ms var(--ease),
    color 180ms var(--ease), transform 180ms var(--ease);
}

.day.is-empty {
  background: transparent;
  cursor: default;
  pointer-events: none;
}

.day.is-off {
  color: rgba(244, 241, 234, 0.2);
  background: transparent;
  cursor: not-allowed;
  text-decoration: line-through;
}

.day.is-free::after {
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--wa-hi);
  content: "";
  transform: translateX(-50%);
}

.day.is-free:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.day.is-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: #07080a;
  font-weight: 800;
}

.day.is-selected::after {
  background: #07080a;
}

.day.is-today {
  border-color: rgba(255, 255, 255, 0.28);
}

.calendar-legend {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.9rem 0 0;
  color: var(--muted-2);
  font-size: 0.72rem;
}

.calendar-legend i {
  width: 8px;
  height: 8px;
  margin-left: 0.5rem;
  border-radius: 50%;
}

.calendar-legend i:first-child {
  margin-left: 0;
}

.dot-free { background: var(--wa-hi); }
.dot-busy { background: rgba(244, 241, 234, 0.22); }
.dot-sel { background: var(--gold); }

/* horários */
.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 0.5rem;
  min-height: 48px;
}

.slots-placeholder {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted-2);
  font-size: 0.86rem;
}

.slot {
  min-height: 44px;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms var(--ease), background 180ms var(--ease),
    color 180ms var(--ease), transform 180ms var(--ease);
  animation: slotIn 320ms var(--ease) backwards;
}

.slot:nth-child(1) { animation-delay: 20ms; }
.slot:nth-child(2) { animation-delay: 60ms; }
.slot:nth-child(3) { animation-delay: 100ms; }
.slot:nth-child(4) { animation-delay: 140ms; }

@keyframes slotIn {
  from { opacity: 0; transform: translateY(8px); }
}

.slot:hover:not(:disabled) {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.slot:disabled {
  color: rgba(244, 241, 234, 0.22);
  text-decoration: line-through;
  cursor: not-allowed;
}

.slot.is-selected {
  border-color: var(--gold);
  background: var(--gold);
  color: #07080a;
}

/* upload */
.dropzone {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem;
  border: 1.5px dashed rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}

.dropzone:hover,
.dropzone.is-drag {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.dz-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dz-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dz-text strong {
  font-size: 0.92rem;
}

.dz-text small {
  color: var(--muted-2);
  font-size: 0.76rem;
}

.ref-preview {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.8rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  animation: slotIn 300ms var(--ease);
}

.ref-preview[hidden] {
  display: none;
}

.ref-preview img {
  width: 58px;
  height: 58px;
  flex: none;
  border-radius: 3px;
  object-fit: cover;
}

.ref-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ref-meta strong {
  overflow: hidden;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ref-meta small {
  color: var(--muted-2);
  font-size: 0.75rem;
}

.ref-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: auto;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}

.ref-remove svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.ref-remove:hover {
  border-color: var(--red);
  color: var(--red);
}

/* campos */
.field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.field label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}

.field textarea {
  resize: vertical;
  min-height: 84px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 241, 234, 0.28);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.field.has-error input,
.field.has-error textarea {
  border-color: var(--red);
}

.field-error {
  color: var(--red);
  font-size: 0.75rem;
  min-height: 0;
}

.field-counter {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--muted-2);
  font-size: 0.7rem;
}

.booking-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1.4rem 0 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(201, 164, 76, 0.28);
  border-radius: 4px;
  background: var(--gold-soft);
}

.booking-summary div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.15rem;
}

.booking-summary span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-summary strong {
  overflow: hidden;
  font-size: 0.86rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---------- english ---------- */
.english {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  margin-block: clamp(3rem, 7vw, 5rem);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  border-block: 1px solid var(--line);
}

.english p {
  max-width: 48ch;
  margin: 0 0 1.4rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ---------- faq ---------- */
.faq {
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: color 200ms var(--ease);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: none;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 300ms var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq summary:hover {
  color: var(--gold);
}

.faq details p {
  max-width: 62ch;
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- CTA final ---------- */
.cta-final {
  padding-block: clamp(4rem, 10vw, 7rem);
  text-align: center;
}

.cta-final .eyebrow {
  justify-content: center;
}

.cta-final h2 {
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ---------- footer ---------- */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 2rem 5.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.8rem;
}

.site-footer div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.site-footer strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms var(--ease);
}

.site-footer a:hover {
  color: var(--gold);
}

/* ---------- sticky CTA mobile ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(7, 8, 10, 0.9);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(120%);
  transition: transform 380ms var(--ease);
}

.sticky-cta.is-on {
  transform: translateY(0);
}

.sticky-cta .btn {
  flex: 1;
}

.wa-round {
  border-color: rgba(37, 211, 102, 0.4);
  color: var(--wa-hi);
}

/* ---------- lightbox ---------- */
.lightbox {
  width: min(100vw, 1100px);
  max-width: 100vw;
  max-height: 100svh;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(4, 5, 7, 0.94);
  backdrop-filter: blur(6px);
}

.lightbox figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  padding: 1rem;
}

.lightbox img {
  max-width: 100%;
  max-height: 76svh;
  border-radius: 3px;
  object-fit: contain;
  animation: lbIn 340ms var(--ease);
}

@keyframes lbIn {
  from { opacity: 0; transform: scale(0.97); }
}

.lightbox figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
}

.lightbox figcaption strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lightbox figcaption span {
  color: var(--muted);
  font-size: 0.8rem;
}

.lb-close,
.lb-nav {
  position: fixed;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(7, 8, 10, 0.7);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}

.lb-close svg,
.lb-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lb-close:hover,
.lb-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lb-close {
  top: 1rem;
  right: 1rem;
}

.lb-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 5.5rem;
  z-index: 80;
  max-width: min(92vw, 420px);
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(201, 164, 76, 0.4);
  border-radius: 999px;
  background: rgba(16, 19, 24, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  color: var(--ink);
  font-size: 0.86rem;
  text-align: center;
  transform: translate(-50%, 20px);
  opacity: 0;
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.toast[hidden] {
  display: none;
}

.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-height: 780px) and (min-width: 901px) {
  .hero {
    padding-top: 6.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 6.4vw, 4.6rem);
  }

  .hero-main {
    aspect-ratio: 1 / 1;
    max-height: 60svh;
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps li:nth-child(3) {
    border-left: 0;
    padding-left: 0;
    padding-right: 1.4rem;
  }

  .steps li:nth-child(3),
  .steps li:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .sticky-cta {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 3rem;
    gap: 2.5rem;
  }

  .hero-art {
    order: -1;
    justify-self: stretch;
    width: auto;
    max-width: none;
    margin-inline: calc(var(--gutter) * -1);
    transform: none;
  }

  .hero-frame {
    animation: none;
  }

  .hero-frame::before {
    background: linear-gradient(180deg, rgba(7, 8, 10, 0.55), transparent 42%, var(--bg));
  }

  .hero-frame::after {
    inset: 14px 14px 20px;
  }

  .hero-main {
    aspect-ratio: auto;
    height: 42svh;
    min-height: 230px;
    max-height: 330px;
    object-position: center 38%;
    transform: none;
  }

  .scroll-hint {
    display: none;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .artist {
    grid-template-columns: 1fr;
  }

  .artist-media {
    max-width: 380px;
  }

  .english {
    grid-template-columns: 1fr;
  }

  .gallery {
    columns: 2;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 5.8rem;
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-main {
    height: 38svh;
    min-height: 210px;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin: 1.1rem 0 1.5rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div + div {
    padding-left: 0;
    border-left: 0;
  }

  .proof-strip dd {
    margin: 0;
  }

  .gallery {
    columns: 2;
    column-gap: 0.5rem;
  }

  .tile {
    margin-bottom: 0.5rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps li,
  .steps li + li {
    padding: 1.25rem 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .steps li:first-child {
    border-top: 0;
  }

  .step-n {
    margin-bottom: 0.6rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .booking-summary div {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.8rem;
  }

  .day {
    min-height: 34px;
    font-size: 0.8rem;
  }

  .cal-nav {
    width: 44px;
    height: 44px;
  }

  .calendar-legend {
    flex-wrap: wrap;
  }

  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
  .lb-close { top: 0.6rem; right: 0.6rem; }

  .site-footer {
    padding-bottom: 6.5rem;
  }

  .toast {
    bottom: 6rem;
  }
}

@media (max-width: 380px) {
  .brand-text small {
    display: none;
  }
}

@media (hover: none) {
  .cal-nav {
    width: 44px;
    height: 44px;
  }

  .tile figcaption {
    transform: none;
    opacity: 1;
  }
}

/* ---------- acessibilidade de movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .split-words .w {
    color: var(--ink);
  }

  .grain {
    display: none;
  }
}

/* ---------- confirmação do agendamento ---------- */
.booking-done {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding: 1.3rem 1.1rem;
  border: 1px solid rgba(37, 211, 102, 0.32);
  border-radius: 4px;
  background: rgba(37, 211, 102, 0.07);
  text-align: center;
  animation: slotIn 380ms var(--ease);
}

.booking-done[hidden] {
  display: none;
}

.done-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(37, 211, 102, 0.5);
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
}

.done-check svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--wa-hi);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 26;
  animation: drawCheck 520ms var(--ease) 120ms backwards;
}

@keyframes drawCheck {
  from { stroke-dashoffset: 26; }
  to { stroke-dashoffset: 0; }
}

.booking-done p {
  max-width: 42ch;
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.6;
}

.done-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.done-actions .btn {
  min-height: 42px;
  padding: 0.6rem 1.1rem;
  font-size: 0.86rem;
}

.done-actions .btn[hidden] {
  display: none;
}
