/* ============================================================
   MADRE — musicbymadre.com
   Design system: chrome líquido sobre a madrugada
   ============================================================ */

:root {
  /* cores */
  --void: #05060A;
  --surface: #0C0E16;
  --surface-2: #121525;
  --chrome: #E8ECF4;
  --chrome-dim: #B9BFCF;
  --muted: #7A8299;
  --electric: #4D7CFF;
  --magenta: #E33FA1;
  --ember: #FF7A2F;
  --line: rgba(232, 236, 244, 0.12);
  --line-soft: rgba(232, 236, 244, 0.06);
  --grad-chrome: linear-gradient(100deg, #4D7CFF 0%, #9DB8FF 22%, #E8ECF4 45%, #E33FA1 72%, #FF7A2F 100%);

  /* tipografia */
  --display: "Unbounded", "Arial Black", sans-serif;
  --body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "Space Mono", "Consolas", monospace;

  /* layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --nav-h: 72px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--void);
  color: var(--chrome);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 700; line-height: 1.04; letter-spacing: -0.01em; text-wrap: balance; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
::selection { background: var(--magenta); color: var(--void); }
:focus-visible { outline: 2px solid var(--electric); outline-offset: 3px; }

/* ---------- utilitários ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.mono-low { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; text-transform: lowercase; color: var(--muted); }
.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.accent { background: var(--grad-chrome); -webkit-background-clip: text; background-clip: text; color: transparent; }
.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; }

/* grain global */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(5, 6, 10, 0.82); backdrop-filter: blur(14px); border-bottom-color: var(--line-soft); }
.nav-inner { width: 100%; max-width: none; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 var(--gutter); }
.nav-logo img { height: 26px; width: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 36px); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--chrome-dim);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--chrome); }
.nav-links a[aria-current="page"] { color: var(--chrome); border-bottom-color: var(--magenta); }
.nav-right { display: flex; align-items: center; gap: 18px; }

.btn-booking {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--void);
  background: var(--chrome);
  padding: 10px 20px;
  border: 1px solid var(--chrome);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn-booking:hover { background: transparent; color: var(--chrome); box-shadow: 0 0 24px rgba(77, 124, 255, 0.25); }

/* hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--chrome); transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* menu mobile fullscreen */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(5, 6, 10, 0.96);
  backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 9vw, 52px);
  color: var(--chrome);
  display: flex; align-items: baseline; gap: 14px;
  padding: 6px 0;
}
.mobile-menu a i { font-family: var(--mono); font-style: normal; font-size: 11px; letter-spacing: 0.1em; color: var(--magenta); }
.mobile-menu .mm-foot { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media video { opacity: 0; transition: opacity 0.9s ease; }
.hero-media video.playing { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-media video { opacity: 1; } }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(5,6,10,0.94) 0%, rgba(5,6,10,0.35) 38%, rgba(5,6,10,0.25) 100%);
}
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(40px, 6vh, 72px); }
.hero-eyebrow { color: var(--chrome-dim); margin-bottom: 18px; }
.hero-title {
  font-size: clamp(64px, 15vw, 210px);
  letter-spacing: -0.03em;
  line-height: 0.92;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.65));
}
.hero-tagline {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(17px, 2.6vw, 26px);
  letter-spacing: 0.02em;
  margin-top: 26px;
}
.hero-sub { color: var(--chrome-dim); max-width: 46ch; margin-top: 12px; font-size: 15.5px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-note { margin-top: 22px; }

/* botões gerais */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 26px;
  border: 1px solid var(--chrome);
  color: var(--chrome);
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.btn:hover { background: var(--chrome); color: var(--void); }
.btn-solid { background: var(--chrome); color: var(--void); }
.btn-solid:hover { background: transparent; color: var(--chrome); box-shadow: 0 0 28px rgba(227, 63, 161, 0.22); }
.btn-ghost { border-color: var(--line); color: var(--chrome-dim); }
.btn-ghost:hover { border-color: var(--chrome); color: var(--void); }

/* ---------- seções ---------- */
.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
.section + .section { border-top: 1px solid var(--line-soft); }
.sec-head { margin-bottom: clamp(36px, 5vw, 64px); display: flex; flex-direction: column; gap: 14px; }
.sec-head .eyebrow { color: var(--magenta); }
.sec-title { font-size: clamp(30px, 5.4vw, 64px); }
.sec-sub { color: var(--muted); font-size: 16.5px; max-width: 58ch; line-height: 1.6; }
.sec-cta { margin-top: clamp(28px, 4vw, 44px); }

/* faixa de prova (marquee) */
.proof { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 26px 0; overflow: hidden; background: var(--surface); }
.proof-label { text-align: center; margin-bottom: 16px; color: var(--muted); }
.marquee { display: flex; overflow: hidden; user-select: none; gap: 0; }
.marquee-track { display: flex; flex-shrink: 0; min-width: 100%; justify-content: space-around; gap: clamp(32px, 6vw, 80px); padding-right: clamp(32px, 6vw, 80px); animation: marquee 36s linear infinite; }
@keyframes marquee { to { transform: translateX(-100%); } }
.marquee-track span {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(15px, 2vw, 21px);
  white-space: nowrap;
  color: var(--chrome-dim);
  display: flex; align-items: center; gap: clamp(32px, 6vw, 80px);
}
.marquee-track span::after { content: "✦"; font-size: 11px; color: var(--magenta); }

/* ---------- cards de som ---------- */
.sound-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px; }
.sound-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.sound-card:hover { border-color: var(--electric); transform: translateY(-3px); }
.sound-card .sc-media { display: block; position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.sound-card .sc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: saturate(0.92); }
.sound-card:hover .sc-media img { transform: scale(1.04); }
.sound-card .sc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,6,10,0.5), transparent 55%); }
.sc-play {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.sc-play::before {
  content: "";
  width: 58px; height: 58px;
  border: 1px solid rgba(232,236,244,0.8);
  border-radius: 50%;
  background: rgba(5,6,10,0.45) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8ECF4'%3E%3Cpath d='M8 5.5v13l11-6.5z'/%3E%3C/svg%3E") center / 20px no-repeat;
  backdrop-filter: blur(4px);
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.sound-card:hover .sc-play::before { transform: scale(1.08); }
.sc-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.sc-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--magenta); }
.sc-title { font-family: var(--display); font-weight: 600; font-size: 15.5px; line-height: 1.25; }
.sc-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; color: var(--muted); }

/* filtros */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 4vw, 44px); }
.filter-btn {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.filter-btn:hover { color: var(--chrome); border-color: var(--chrome-dim); }
.filter-btn[aria-pressed="true"] { color: var(--void); background: var(--chrome); border-color: var(--chrome); }

/* ---------- embed lazy (youtube / soundcloud) ---------- */
.embed-shell { position: relative; aspect-ratio: 16 / 9; background: var(--surface-2); border: 1px solid var(--line); overflow: hidden; }
.embed-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed-shell.is-audio { aspect-ratio: auto; height: 166px; }

/* ---------- home: split bio ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split-media { position: relative; overflow: hidden; }
.split-media img { width: 100%; height: auto; filter: saturate(0.95); }
.split-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 120px rgba(5,6,10,0.55); pointer-events: none; }
.split-body { display: flex; flex-direction: column; gap: 20px; }
.split-body .lead { font-size: clamp(17px, 2vw, 20px); line-height: 1.65; color: var(--chrome-dim); max-width: 54ch; }

/* ---------- galeria ---------- */
.masonry { columns: 3; column-gap: 16px; }
.masonry a { display: block; margin-bottom: 16px; position: relative; overflow: hidden; border: 1px solid var(--line-soft); }
.masonry img { width: 100%; height: auto; transition: transform 0.5s ease, filter 0.5s ease; filter: saturate(0.92); }
.masonry a:hover img { transform: scale(1.03); filter: saturate(1); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5, 6, 10, 0.96);
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 56px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; width: auto; height: auto; box-shadow: 0 20px 80px rgba(0,0,0,0.7); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; z-index: 2;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--chrome-dim);
  padding: 16px;
  transition: color 0.2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--chrome); }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 8px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 8px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); }

/* ---------- abas ---------- */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 44px); }
.tab-panel[hidden] { display: none; }

/* shorts (vertical) */
.shorts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.short-card { position: relative; aspect-ratio: 9 / 16; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.short-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.short-card:hover img { transform: scale(1.05); }
.short-card .sc-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 30px 14px 12px;
  background: linear-gradient(to top, rgba(5,6,10,0.85), transparent);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: lowercase;
  color: var(--chrome-dim);
}

/* ---------- dates ---------- */
.date-list { border-top: 1px solid var(--line); }
.date-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}
.date-row:hover { background: var(--surface); }
.date-row .d-when { font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; color: var(--magenta); font-variant-numeric: tabular-nums; }
.date-row .d-what { font-family: var(--display); font-weight: 600; font-size: clamp(16px, 2.4vw, 22px); }
.date-row .d-where { color: var(--muted); font-size: 14px; margin-top: 4px; }
.empty-state {
  border: 1px dashed var(--line);
  padding: clamp(36px, 6vw, 64px);
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  background: var(--surface);
}
.empty-state h3 { font-size: clamp(20px, 3vw, 30px); }
.empty-state p { color: var(--muted); max-width: 52ch; }
.empty-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ---------- madre (bio) ---------- */
.bio-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 88px); }
.bio-text { display: flex; flex-direction: column; gap: 22px; font-size: clamp(16px, 1.8vw, 18.5px); line-height: 1.75; color: var(--chrome-dim); max-width: 62ch; }
.bio-text strong { color: var(--chrome); }
.bio-close { font-family: var(--display); font-weight: 700; font-size: clamp(20px, 3vw, 30px); color: var(--chrome); margin-top: 10px; }
.bio-media { display: flex; flex-direction: column; gap: 16px; }
.bio-media img { border: 1px solid var(--line-soft); filter: saturate(0.95); }
.facts { border-top: 1px solid var(--line); margin-top: 8px; }
.facts-row { display: grid; grid-template-columns: 200px 1fr; gap: 16px; padding: 14px 4px; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; }
.facts-row dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 0; }
.facts-row dd { margin: 0; color: var(--chrome-dim); }

/* ---------- shop ---------- */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.shop-card { border: 1px solid var(--line); background: var(--surface); transition: border-color 0.3s ease, transform 0.3s ease; }
.shop-card:hover { border-color: var(--magenta); transform: translateY(-3px); }
.shop-card img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.shop-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.shop-title { font-family: var(--display); font-weight: 600; font-size: 15px; line-height: 1.3; }
.shop-price { font-family: var(--mono); font-size: 12px; color: var(--muted); }

/* ---------- booking overlay ---------- */
.booking-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(5, 6, 10, 0.92);
  backdrop-filter: blur(16px);
  display: none;
  overflow-y: auto;
}
.booking-overlay.open { display: block; }
.booking-inner {
  min-height: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(80px, 10vh, 120px) var(--gutter) 64px;
}
.booking-side { display: flex; flex-direction: column; gap: 26px; }
.booking-side .bk-photo { border: 1px solid var(--line); max-width: 340px; filter: saturate(0.95); }
.bk-channels { display: flex; flex-direction: column; gap: 10px; }
.bk-channels a { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; color: var(--chrome-dim); border-bottom: 1px solid transparent; width: fit-content; transition: color 0.2s ease; }
.bk-channels a:hover { color: var(--chrome); }
.booking-close { position: fixed; top: 18px; right: 22px; z-index: 160; font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--chrome-dim); padding: 12px; }
.booking-close:hover { color: var(--chrome); }

.form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--chrome-dim); }
.field input, .field select, .field textarea {
  font: 15px/1.5 var(--body);
  color: var(--chrome);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 13px 14px;
  border-radius: 0;
  transition: border-color 0.2s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--electric); outline: none; }
.field .hint { font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em; color: var(--muted); text-transform: lowercase; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A8299' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; }
.form-msg { font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em; color: var(--ember); text-transform: lowercase; min-height: 18px; }
.form-msg.ok { color: var(--electric); }

/* ---------- fecho de booking (todas as páginas) ---------- */
.closer { background: var(--surface); border-top: 1px solid var(--line-soft); }
.closer .sec-title { max-width: 16ch; }
.closer-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.closer-note { margin-top: 20px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line-soft); padding: clamp(48px, 7vw, 88px) 0 40px; }
.footer-sig {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(19px, 3.4vw, 34px);
  max-width: 22ch;
  line-height: 1.15;
}
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 36px; margin-top: clamp(36px, 5vw, 56px); }
.footer-col { display: flex; flex-direction: column; gap: 12px; min-width: 140px; }
.footer-col h4 { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.footer-col a { font-size: 14px; color: var(--chrome-dim); width: fit-content; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--chrome); }
.footer-bottom { margin-top: clamp(40px, 6vw, 64px); padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: space-between; }

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- placeholders de dado faltante ---------- */
.ph {
  font-family: var(--mono); font-size: 0.85em; letter-spacing: 0.03em;
  color: var(--ember);
  background: rgba(255, 122, 47, 0.08);
  border: 1px dashed rgba(255, 122, 47, 0.4);
  padding: 1px 7px;
}

/* ---------- responsivo ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; background: rgba(5, 6, 10, 0.4); backdrop-filter: blur(6px); padding: 11px 9px; }
  .btn-booking { padding: 9px 14px; }
  .split, .bio-grid, .booking-inner { grid-template-columns: 1fr; }
  .booking-side .bk-photo { max-width: 220px; }
  .masonry { columns: 2; }
  .date-row { grid-template-columns: 90px 1fr; }
  .date-row .d-link { grid-column: 2; }
  .facts-row { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 560px) {
  .masonry { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .shorts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1800px) {
  :root { --container: 1440px; }
  body { font-size: 17px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}
