/* ============================================
   CALIARO.ART — Premium tattoo portfolio
   Palette: ink black + warm white + champagne gold
   Type: Cormorant Garamond (display) + Manrope (body) + JetBrains Mono (labels) + Quantum (monogram/brand)
   ============================================ */

@font-face {
  font-family: "Quantum";
  src: url("fonts/Quantum.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink-0: #060503;
  --ink-1: #0c0a08;
  --ink-2: #14110d;
  --ink-3: #1c1814;
  --ink-4: #26211b;
  --line: #2a2520;
  --line-soft: #1f1b16;

  --bone: #f4ede0;
  --bone-dim: #d9d0bf;
  --ash: #a89e8c;
  --ash-dim: #6e6557;

  --gold: #c9a44c;
  --gold-bright: #e6c578;
  --gold-deep: #8a6d2b;
  --gold-glow: rgba(201, 164, 76, 0.18);

  --font-display: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --font-body: "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink-0);
  color: var(--bone);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle film grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/></svg>");
  opacity: 0.045;
  mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; }
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  /* iOS: eliminates 300ms tap delay + double-tap zoom on buttons */
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201,164,76,0.2);
}
/* Hover states only apply on devices that actually support hover.
   Without this, iOS Safari treats the first tap as "hover" and a
   second tap as "click" — making everything feel broken. */
@media (hover: none) {
  *:hover { transition-duration: 0.01s !important; }
}
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--gold); color: var(--ink-0); }

/* ===== Reusable type ===== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.012em;
  color: var(--bone);
  text-wrap: balance;
}
.display em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 300;
}
.lede {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--bone-dim);
  font-weight: 300;
  max-width: 56ch;
  text-wrap: pretty;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== Header / Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8, 7, 5, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
  padding-top: 14px; padding-bottom: 14px;
}
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__brand-mark { width: 38px; height: 38px; display: block; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--bone);
}
.nav__brand-sub {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.34em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}
.nav__links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav__link {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
  font-weight: 400;
}
.nav__link::after {
  content: ""; position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold);
  transition: right 0.4s var(--ease);
}
.nav__link:hover { color: var(--bone); }
.nav__link:hover::after { right: 0; }
.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__menu-btn {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  transition: border-color 0.3s;
}
.nav__menu-btn:hover { border-color: var(--gold); }
.nav__menu-btn span {
  width: 16px; height: 1px; background: var(--bone);
  transition: transform 0.3s, opacity 0.3s;
}
.nav.is-open .nav__menu-btn span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav.is-open .nav__menu-btn span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.nav.is-open .nav__menu-btn span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

/* ===== WhatsApp CTA button ===== */
.cta {
  --cta-bg: var(--gold);
  --cta-fg: var(--ink-0);
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px 16px 22px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cta-fg);
  background: var(--cta-bg);
  border: 1px solid var(--cta-bg);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), color 0.4s var(--ease);
  box-shadow: 0 12px 30px -16px rgba(201,164,76,0.55), inset 0 1px 0 rgba(255,255,255,0.22);
  cursor: pointer;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease);
  z-index: -1;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -18px rgba(201,164,76,0.65), inset 0 1px 0 rgba(255,255,255,0.3); }
.cta:hover::before { transform: translateX(120%); }
.cta:active { transform: translateY(0); }
.cta__icon {
  width: 18px; height: 18px;
  display: inline-block;
  flex-shrink: 0;
}
.cta--ghost {
  --cta-bg: transparent;
  --cta-fg: var(--bone);
  border: 1px solid var(--line);
  box-shadow: none;
}
.cta--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  box-shadow: 0 12px 30px -22px rgba(201,164,76,0.4);
}
.cta--large {
  padding: 20px 36px 20px 30px;
  font-size: 13px;
  letter-spacing: 0.28em;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 160px var(--gutter) 80px;
  display: flex; align-items: center;
  overflow: hidden;
  background: radial-gradient(1200px 700px at 80% -20%, rgba(201,164,76,0.10), transparent 60%),
              radial-gradient(900px 500px at -10% 110%, rgba(201,164,76,0.06), transparent 60%),
              var(--ink-0);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.hero__title {
  font-size: clamp(64px, 11vw, 168px);
  letter-spacing: -0.02em;
  line-height: 0.86;
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-line span {
  display: inline-block;
  animation: rise 1.1s var(--ease) both;
}
.hero__title-line:nth-child(2) span { animation-delay: 0.12s; }
@keyframes rise { from { transform: translateY(108%); } to { transform: translateY(0); } }
.hero__tagline {
  margin-top: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--bone-dim);
  font-weight: 300;
  letter-spacing: 0.005em;
  line-height: 1.4;
  max-width: 30ch;
  animation: fade-in 1.2s 0.4s var(--ease) both;
}
.hero__meta {
  margin-top: 40px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  animation: fade-in 1.2s 0.6s var(--ease) both;
}
@keyframes fade-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--ash);
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  animation: fade-in 1.4s 0.3s var(--ease) both;
}
.hero__frame {
  position: absolute; inset: 0;
  z-index: 1;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  overflow: hidden;
}
.hero__frame::after {
  content: "PORTRAIT · FELIPE CALIARI";
  position: absolute; bottom: 18px; left: 18px;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.3em;
  color: var(--ash-dim);
}
.hero__frame-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 18px, rgba(201,164,76,0.04) 18px 19px);
  z-index: 0;
}
.hero__frame-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: contrast(1.05) saturate(0.85) brightness(0.95);
  transition: opacity 600ms ease;
}
.hero__frame-video.is-pending { opacity: 0; pointer-events: none; }
.hero__frame-video.is-ready { opacity: 1; }
.hero__frame-pending {
  position: absolute; inset: 0;
  z-index: 1;
  display: grid; place-items: center; gap: 14px;
  background:
    radial-gradient(120% 80% at 50% 40%, rgba(212,175,110,0.06), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink-1));
  color: var(--bone-dim);
  text-align: center;
}
.hero__frame-pending-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.04em;
  text-shadow: 0 2px 30px rgba(212, 175, 110, 0.25);
}
.hero__frame-pending-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero__frame-vignette {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.65) 100%);
}
.hero__frame-rec {
  position: absolute; top: 20px; right: 20px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero__frame-rec-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-bright);
  animation: portraitRecBlink 1.6s ease-in-out infinite;
}
.hero__frame-sound {
  position: absolute;
  bottom: 18px; left: 18px;
  z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px 8px 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 110, 0.35);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 220ms ease;
}
.hero__frame-sound:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(0,0,0,0.75);
}
.hero__frame-sound:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}
.hero__frame-sound.is-on {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}
.hero__frame-sound svg { display: block; }
.hero__frame-sound-label { line-height: 1; }
@media (max-width: 720px) {
  .hero__frame-sound-label { display: none; }
  .hero__frame-sound { padding: 8px; }
}
/* Hide the "PORTRAIT · FELIPE CALIARI" pseudo-label when video is showing */
.hero__frame:has(.hero__frame-video.is-ready)::after { display: none; }
.hero__badge {
  position: absolute;
  top: -28px; right: -28px;
  z-index: 20;
  width: 130px; height: 130px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,7,5,0.65);
  backdrop-filter: blur(6px);
  animation: spin 30s linear infinite;
}
.hero__badge svg { width: 100%; height: 100%; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--ash);
  text-transform: uppercase;
  z-index: 3;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ===== Sections ===== */
section[data-section] {
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 80px);
  margin-bottom: clamp(48px, 7vw, 96px);
  align-items: end;
}
.section-head h2 {
  font-size: clamp(40px, 6vw, 86px);
}
.section-head__lede { padding-bottom: 10px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ===== About ===== */
.about { background: var(--ink-1); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about__portrait {
  position: relative;
  aspect-ratio: 3/4;
  border: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
}
.about__portrait-label {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.about__portrait-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 24px, rgba(255,255,255,0.025) 24px 25px);
  z-index: 0;
}
.about__portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 1;
  filter: contrast(1.05) saturate(0.92) brightness(0.96);
}
.about__portrait-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  /* Subtle cinematic grade */
  filter: contrast(1.05) saturate(0.85) brightness(0.95);
  transition: opacity 600ms ease;
}
.about__portrait-video.is-pending { opacity: 0; pointer-events: none; }
.about__portrait-video.is-ready { opacity: 1; }
.about__portrait-pending {
  position: absolute; inset: 0;
  z-index: 1;
  display: grid; place-items: center; gap: 14px;
  background:
    radial-gradient(120% 80% at 50% 40%, rgba(212,175,110,0.06), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink-1));
  color: var(--bone-dim);
  text-align: center;
}
.about__portrait-pending-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.04em;
  text-shadow: 0 2px 30px rgba(212, 175, 110, 0.25);
}
.about__portrait-pending-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}
.about__portrait-vignette {
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 40%, transparent 55%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.65) 100%);
}
.about__portrait-rec {
  position: absolute; top: 20px; right: 20px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.about__portrait-rec-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-bright);
  animation: portraitRecBlink 1.6s ease-in-out infinite;
}
@keyframes portraitRecBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
.about__portrait-label,
.about__portrait-name { z-index: 3; }

/* Mute toggle on portrait */
.about__portrait-sound {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 110, 0.35);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 220ms ease;
}
.about__portrait-sound:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(0,0,0,0.75);
}
.about__portrait-sound:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}
.about__portrait-sound.is-on {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}
.about__portrait-sound svg { display: block; }
.about__portrait-sound-label { line-height: 1; }
@media (max-width: 720px) {
  .about__portrait-sound-label { display: none; }
  .about__portrait-sound { padding: 8px; }
}
.about__portrait-name {
  position: absolute; bottom: 20px; right: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--bone-dim);
}
.about h2 { font-size: clamp(36px, 5vw, 64px); margin-top: 18px; }
.about__bio { margin-top: 28px; font-size: 17px; line-height: 1.7; color: var(--bone-dim); max-width: 54ch; }
.about__stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--gold-bright);
  line-height: 1;
}
.stat__label {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.26em;
  color: var(--ash);
  text-transform: uppercase;
}

/* ===== Specialties ===== */
.specialties__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.spec {
  background: var(--ink-1);
  padding: 48px 36px 40px;
  display: flex; flex-direction: column;
  position: relative;
  min-height: 480px;
  transition: background 0.5s var(--ease);
}
.spec:hover { background: var(--ink-2); }
.spec__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.spec__icon {
  margin: 30px 0 40px;
  width: 56px; height: 56px;
  color: var(--gold);
}
.spec__title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--bone);
}
.spec__desc {
  margin-top: 18px;
  color: var(--bone-dim);
  font-size: 15px;
  line-height: 1.65;
}
.spec__tags {
  margin-top: auto;
  padding-top: 32px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.spec__tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ===== Gallery ===== */
.gallery__filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.gallery__filter {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.gallery__filter:hover { color: var(--bone); border-color: var(--ash); }
.gallery__filter.is-active {
  color: var(--ink-0);
  background: var(--gold);
  border-color: var(--gold);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
}
.tile {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.6s var(--ease), opacity 0.5s var(--ease);
}
.tile.is-hidden { display: none; }
.tile--portrait { grid-column: span 4; aspect-ratio: 3/4; }
.tile--landscape { grid-column: span 6; aspect-ratio: 4/3; }
.tile--square { grid-column: span 4; aspect-ratio: 1; }
.tile--tall { grid-column: span 4; aspect-ratio: 2/3; }
.tile--wide { grid-column: span 8; aspect-ratio: 16/10; }
.tile__placeholder {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 18px, rgba(201,164,76,0.04) 18px 19px),
                    linear-gradient(160deg, var(--ink-2), var(--ink-3));
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}
.tile:hover .tile__placeholder { transform: scale(1.06); filter: brightness(1.1); }
.tile__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
  filter: contrast(1.05) saturate(0.9) brightness(0.95);
}
.tile:hover .tile__img { transform: scale(1.06); filter: contrast(1.05) saturate(1) brightness(1.05); }

/* Tile video — click/tap to play */
.tile__video-btn {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  padding: 0; border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  display: block;
}
.tile__video-btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: -3px;
}
.tile__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9) brightness(0.95);
  transition: filter 0.6s var(--ease);
  z-index: 1;
  background: var(--ink-2); /* visible color while frame decodes */
}
.tile:has(.tile__video-btn.is-playing) .tile__video {
  filter: contrast(1.05) saturate(1) brightness(1);
}
.tile__video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 110, 0.55);
  color: var(--gold-bright);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: all 280ms var(--ease);
  pointer-events: none;
}
.tile__video-play svg {
  margin-left: 4px; /* optical center */
}
.tile__video-btn:hover .tile__video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(212,175,110,0.18);
  border-color: var(--gold-bright);
  box-shadow: 0 8px 40px rgba(212,175,110,0.3);
}
.tile__video-sound {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 3;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 110, 0.45);
  border-radius: 50%;
  color: var(--gold);
  cursor: pointer;
  transition: all 220ms ease;
}
.tile__video-sound:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(0,0,0,0.8);
}
.tile__video-sound.is-on {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}
.tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.tile:hover .tile__overlay { opacity: 1; }
.tile__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--bone);
  transform: translateY(10px);
  transition: transform 0.5s var(--ease);
}
.tile:hover .tile__title { transform: translateY(0); }
.tile__cat {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.tile__label {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.3em;
  color: var(--ash-dim);
  text-transform: uppercase;
  opacity: 0.8;
}

/* ===== Process ===== */
.process { background: var(--ink-1); border-top: 1px solid var(--line-soft); }
.process__list { counter-reset: step; }
.process__step {
  display: grid;
  grid-template-columns: 80px 1fr 1.5fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
  transition: background 0.4s var(--ease);
}
.process__step:last-child { border-bottom: 1px solid var(--line-soft); }
.process__step:hover { background: linear-gradient(90deg, transparent, rgba(201,164,76,0.03), transparent); }
.process__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
}
.process__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
}
.process__desc {
  color: var(--bone-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 50ch;
}

/* ===== Testimonials ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.quote {
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: var(--ink-1);
  position: relative;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 88px;
  color: var(--gold);
  line-height: 0.6;
  height: 30px;
  opacity: 0.6;
}
.quote__text {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  line-height: 1.45;
  color: var(--bone);
  text-wrap: pretty;
}
.quote__author {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}
.quote__name {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 500;
}
.quote__loc {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.26em;
  color: var(--ash);
  text-transform: uppercase;
}

/* ===== Final CTA ===== */
.final-cta {
  text-align: center;
  padding: clamp(96px, 14vw, 200px) var(--gutter);
  border-top: 1px solid var(--line-soft);
  background: radial-gradient(900px 500px at 50% 100%, rgba(201,164,76,0.10), transparent 60%), var(--ink-0);
}
.final-cta h2 {
  font-size: clamp(44px, 8vw, 110px);
  max-width: 18ch;
  margin: 28px auto 0;
}
.final-cta__lede { margin: 28px auto 44px; }
.final-cta__note {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.26em;
  color: var(--ash);
  text-transform: uppercase;
}

/* ===== Location / Map ===== */
.location {
  background: var(--ink-1);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.location__info { padding: 20px 0; }
.location__title { font-size: clamp(36px, 5vw, 60px); margin-top: 20px; }
.location__sub {
  margin-top: 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--bone-dim);
}
.location__address {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  font-size: 15px;
  line-height: 1.7;
  color: var(--bone);
}
.location__address strong {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.location__directions {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.4s var(--ease), color 0.3s;
}
.location__directions:hover { gap: 16px; color: var(--gold-bright); }
.location__map {
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.7);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.85) invert(0.92) contrast(0.95) hue-rotate(180deg);
  transition: filter 0.5s var(--ease);
}
.location__map:hover iframe { filter: grayscale(0.4) invert(0.92) contrast(1) hue-rotate(180deg); }
.location__map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(201,164,76,0.18);
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 56px var(--gutter) 40px;
  background: var(--ink-1);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
}
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col p, .footer__col a {
  color: var(--bone-dim);
  font-size: 14px;
  line-height: 1.7;
}
.footer__col p { display: block; }
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 2px 0;
  transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}
.footer__list a:hover { color: var(--gold-bright); gap: 16px; }
.footer__list-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 64px;
}
.footer__col a:hover { color: var(--gold-bright); }
.footer__bottom {
  margin-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.24em;
  color: var(--ash);
  text-transform: uppercase;
  flex-wrap: wrap;
}
.footer__address {
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 11.5px;
  color: var(--ash);
  flex: 1 1 auto;
  text-align: center;
  font-family: var(--font-body);
}
@media (max-width: 760px) {
  .footer__address { order: 3; flex-basis: 100%; text-align: left; }
}

/* ===== Floating central monogram — follows scroll, watermark style ===== */
.floating-monogram {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(320px, 48vw, 640px);
  height: clamp(320px, 48vw, 640px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
  transition: opacity 0.6s var(--ease);
}
.floating-monogram svg { width: 100%; height: 100%; display: block; }
.floating-monogram--hidden { opacity: 0; }

/* Mobile: smaller monogram. Floating lang widget stays visible —
   bottom: 88px (positioned above the a11y widget) handled below. */
@media (max-width: 720px) {
  .floating-monogram { width: 78vw; height: 78vw; opacity: 0.12; }
}

/* ===== Floating widgets ===== */
.float-widget {
  position: fixed;
  z-index: 80;
  background: rgba(12,10,8,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 40px -20px rgba(0,0,0,0.7);
}
.lang-widget {
  bottom: 24px; left: 24px;
  display: flex; align-items: center;
  padding: 6px;
  gap: 2px;
  /* No backdrop-filter here — mobile Chrome can drop subsequent touches
     on small <button>s inside a backdrop-filter pill. Plain background. */
  background: rgba(8, 7, 5, 0.94);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201,164,76,0.25);
  transform: translateZ(0);
  /* Above the cookie banner (1100) and everything else — never blocked. */
  z-index: 2000;
}
.lang-widget__btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--bone-dim);
  padding: 11px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  /* Bullet-proof tap target on mobile */
  min-width: 46px;
  min-height: 38px;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201,164,76,0.35);
  user-select: none;
  -webkit-user-select: none;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.lang-widget__btn:active { background: rgba(201,164,76,0.18); color: var(--bone); }
.lang-widget__btn:hover { color: var(--bone); }
.lang-widget__btn.is-active {
  background: var(--gold);
  color: var(--ink-0);
}

.a11y-widget { bottom: 24px; right: 24px; }
.a11y-widget__trigger {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all 0.3s var(--ease);
}
.a11y-widget__trigger:hover { color: var(--gold-bright); transform: scale(1.05); }
.a11y-widget__panel {
  position: absolute;
  bottom: calc(100% + 14px); right: 0;
  width: 320px;
  background: rgba(12,10,8,0.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.a11y-widget.is-open .a11y-widget__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.a11y-widget__title {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.a11y-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
}
.a11y-row:first-of-type { border-top: 0; }
.a11y-row__label {
  font-size: 13px;
  color: var(--bone-dim);
  font-weight: 400;
}
.a11y-stepper { display: flex; gap: 6px; align-items: center; }
.a11y-stepper button {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  font-size: 14px;
}
.a11y-stepper button:hover { border-color: var(--gold); color: var(--gold); }
.a11y-stepper__val {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bone);
  min-width: 36px; text-align: center;
}
.a11y-toggle {
  width: 38px; height: 22px;
  border-radius: 999px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  position: relative;
  transition: background 0.3s;
}
.a11y-toggle::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bone-dim);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.a11y-toggle.is-on { background: var(--gold); }
.a11y-toggle.is-on::after { transform: translateX(16px); background: var(--ink-0); }
.a11y-widget__reset {
  margin-top: 18px;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.24em;
  color: var(--bone-dim);
  text-transform: uppercase;
  transition: all 0.3s;
}
.a11y-widget__reset:hover { border-color: var(--gold); color: var(--gold); }

/* ===== Accessibility modes ===== */
body.a11y-contrast {
  --ink-0: #000; --ink-1: #000; --ink-2: #0a0a0a; --ink-3: #141414; --ink-4: #1f1f1f;
  --bone: #ffffff; --bone-dim: #ffffff; --ash: #d4d4d4; --ash-dim: #b0b0b0;
  --gold: #ffd54a; --gold-bright: #ffe89a; --line: #555;
}
body.a11y-underline a:not(.cta), body.a11y-underline .nav__link { text-decoration: underline !important; text-underline-offset: 4px; }
body.a11y-reduce-motion *, body.a11y-reduce-motion *::before, body.a11y-reduce-motion *::after {
  animation-duration: 0.001s !important;
  transition-duration: 0.001s !important;
  scroll-behavior: auto !important;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ===== Mobile nav drawer ===== */
.nav__drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,5,3,0.96);
  backdrop-filter: blur(14px);
  z-index: 49;
  padding: 96px var(--gutter) 40px;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav.is-open + .nav__drawer { opacity: 1; pointer-events: auto; }
.nav__drawer-links {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 4px;
}
.nav__drawer-link {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line-soft);
  color: var(--bone);
}
.nav__drawer-link:hover { color: var(--gold); }

.nav__drawer-lang {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-self: flex-start;
}
.nav__drawer-lang-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--bone-dim);
  padding: 10px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.nav__drawer-lang-btn:hover { color: var(--bone); }
.nav__drawer-lang-btn.is-active {
  background: var(--gold);
  color: var(--ink-0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual {
    /* Stacked below the title — never hide on mobile */
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }
  .hero__badge { width: 96px; height: 96px; top: -18px; right: -10px; }
  .section-head { grid-template-columns: 1fr; }
  .specialties__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .process__step { grid-template-columns: 60px 1fr; }
  .process__desc { grid-column: 1 / -1; padding-left: 60px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }
  .nav__drawer { display: flex; }
}
@media (max-width: 720px) {
  .nav__right .cta { display: none; }
  .gallery__grid { grid-template-columns: repeat(6, 1fr); }
  .tile--portrait, .tile--square, .tile--tall { grid-column: span 3; }
  .tile--landscape, .tile--wide { grid-column: span 6; }
  .footer__top { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  /* Hero — tighter so the video is visible above the fold sooner */
  .hero {
    padding-top: 96px;
    padding-bottom: 32px;
    min-height: auto;
  }
  .hero__inner { gap: 24px; }
  .hero .eyebrow {
    font-size: 12px;
    letter-spacing: 0.24em;
    margin-bottom: 14px !important;
  }
  .hero__title {
    font-size: clamp(56px, 18vw, 96px);
    line-height: 0.88;
  }
  .hero__tagline {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.35;
  }
  .hero__meta {
    margin-top: 22px;
    gap: 14px;
  }
  .hero__visual {
    aspect-ratio: 4 / 5;
    max-width: 420px;
  }
  .hero__scroll { display: none; }
  .a11y-widget__panel { width: calc(100vw - 48px); right: -10px; }
  .lang-widget { bottom: 88px; }
}

/* ===== Booking Modal ===== */
.booking-overlay {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(4, 3, 2, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: bookingFade 240ms var(--ease);
}
@keyframes bookingFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.booking-card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background:
    radial-gradient(700px 320px at 50% -10%, rgba(201,164,76,0.10), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -28px rgba(0,0,0,0.75), 0 0 0 1px rgba(201,164,76,0.06) inset;
  padding: 44px 40px 36px;
  animation: bookingRise 360ms var(--ease);
}
@keyframes bookingRise {
  from { opacity: 0; transform: translateY(14px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.booking-card__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.4);
  color: var(--ash);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.booking-card__close:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(201,164,76,0.08);
}
.booking-card__head { text-align: left; margin-bottom: 26px; }
.booking-card__eyebrow { margin-bottom: 18px; }
.booking-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin: 0 0 12px;
}
.booking-card__lede {
  color: var(--bone-dim);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.booking-form { display: flex; flex-direction: column; gap: 18px; }
.booking-field { display: flex; flex-direction: column; gap: 8px; }
.booking-field__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: baseline; gap: 8px;
}
.booking-field__opt {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--ash-dim);
  text-transform: lowercase;
}
.booking-input {
  width: 100%;
  background: rgba(6, 5, 3, 0.6);
  border: 1px solid var(--line);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  border-radius: 0;
  outline: none;
}
.booking-input::placeholder { color: var(--ash-dim); }
.booking-input:hover { border-color: var(--ash); }
.booking-input:focus {
  border-color: var(--gold);
  background: rgba(20, 17, 13, 0.8);
  box-shadow: 0 0 0 1px rgba(201,164,76,0.25);
}
.booking-input.is-error {
  border-color: #c8553d;
  box-shadow: 0 0 0 1px rgba(200,85,61,0.25);
}
.booking-field__err {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #e07a63;
}
.booking-submit { margin-top: 6px; justify-content: center; width: 100%; }
.booking-submit:disabled { opacity: 0.65; cursor: progress; }
.booking-card__privacy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash-dim);
  text-align: center;
  margin: 6px 0 0;
  line-height: 1.6;
}

@media (max-width: 560px) {
  .booking-card { padding: 40px 24px 28px; }
  .booking-card__title { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .booking-overlay, .booking-card { animation: none; }
}
body.a11y-reduce-motion .booking-overlay,
body.a11y-reduce-motion .booking-card { animation: none; }

/* ===== LGPD Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 720px;
  margin: 0 auto;
  z-index: 1100;
  background:
    radial-gradient(600px 220px at 10% 0%, rgba(201,164,76,0.08), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -22px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,164,76,0.06) inset;
  padding: 22px 56px 22px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.is-leaving {
  opacity: 0;
  transform: translateY(20px);
}
.cookie-banner__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.35);
  color: var(--ash);
  display: flex; align-items: center; justify-content: center;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.cookie-banner__close:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(201,164,76,0.08);
}
.cookie-banner__body { min-width: 0; }
.cookie-banner__eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cookie-banner__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--bone-dim);
}
.cookie-banner__text strong {
  color: var(--bone);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--bone-dim);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  white-space: nowrap;
}
.cookie-banner__btn:hover {
  color: var(--bone);
  border-color: var(--ash);
}
.cookie-banner__btn--accept {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-0);
  font-weight: 600;
}
.cookie-banner__btn--accept:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--ink-0);
}

@media (max-width: 640px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 22px 22px 22px;
    left: 12px; right: 12px; bottom: 12px;
  }
  .cookie-banner__close { top: 10px; right: 10px; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .cookie-banner__btn { width: 100%; text-align: center; padding: 13px 8px; }
  .cookie-banner__text { font-size: 13px; padding-right: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: opacity 0.2s; transform: none; }
  .cookie-banner.is-visible, .cookie-banner.is-leaving { transform: none; }
}




/* ============================================================
   GALERIA — nomes sempre visíveis + zoom por clique
   ============================================================ */
.tile--clickable { cursor: zoom-in; }
.tile--zoomed { cursor: zoom-out; }

/* Nome em cima de cada obra, sempre visível */
.tile__topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px 22px;
  background: linear-gradient(to bottom, rgba(6, 5, 3, 0.85) 0%, rgba(6, 5, 3, 0.45) 55%, rgba(6, 5, 3, 0) 100%);
  pointer-events: none;
}
.tile__topbar-cat {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.tile__topbar-title {
  font-family: var(--font-display);
  font-size: 16.5px;
  line-height: 1.2;
  color: var(--bone);
}

/* Ao ampliar, as escritas somem */
.tile--zoomed .tile__topbar,
.tile--zoomed .tile__label { display: none; }

/* Zoom de FOTO — clique fecha */
.photozoom {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(6, 5, 3, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: czFade 0.22s var(--ease-out);
}
.photozoom__img {
  max-width: 97vw;
  max-height: 94vh;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}
.photozoom__video {
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* iOS: viewport dinâmico correto */
  max-width: none;
  max-height: none;
  object-fit: contain;
  background: transparent;
}
@keyframes czFade { from { opacity: 0; } to { opacity: 1; } }


/* o overlay de hover antigo sai de cena (substituído pelo topbar fixo) */
.tile__overlay { display: none !important; }

@media (max-width: 640px) {
  .tile__topbar { padding: 10px 12px 18px; }
  .tile__topbar-title { font-size: 14.5px; }
}
