/* Ga.bih — folha de estilo do site oficial / EPK
   Identidade: IRIDESCENT GROOVE (ver Ga.bih-IDV.md) */

:root {
  /* Paleta — sistema de luz, não cores chapadas */
  --lilac: #bf9ee8;
  --lilac-soft: #d6c2f0;
  --lilac-pale: #f1ddf4;
  --violet: #7d5bb1;
  --violet-deep: #5e3f91;
  --deep: #362b4e;
  --graphite: #221d2d;
  --mist: #eee1f7;
  --blush: #f7edf4;
  --offwhite: #faf8fb;
  --steel: #d8dceb;

  /* Neutros com viés violeta */
  --ink: #221d2d;
  --ink-2: #51416b;
  --muted: #776a8a;
  --line: rgba(125, 91, 177, 0.18);
  --line-strong: rgba(125, 91, 177, 0.34);
  --on-dark: #f4eefa;
  --on-dark-2: #cbbbdf;
  --on-dark-3: #9d8cb5;

  --grad-brand: linear-gradient(100deg, #7d5bb1 0%, #bf9ee8 42%, #f1ddf4 74%, #d8dceb 100%);

  --shadow-soft: 0 18px 44px -28px rgba(34, 29, 45, 0.55);
  --shadow-lift: 0 26px 60px -32px rgba(54, 43, 78, 0.6);

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 22px;

  --font-display: "Jost", "Century Gothic", "Futura", "Helvetica Neue", sans-serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-hand: "Instrument Serif", Georgia, "Times New Roman", serif;

  --gutter: clamp(16px, 4vw, 44px);
  --shell: 1180px;

  padding: env(safe-area-inset-top, 0px) 0 env(safe-area-inset-bottom, 0px);
  color-scheme: light;
}

*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }

a { color: var(--violet); text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

button { font: inherit; color: inherit; }

:where(a, button, [tabindex], summary, video):focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 6px;
}

.hero :where(a, button):focus-visible { outline-color: var(--lilac); }

.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;
}

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

/* ---------- Tipografia comum ---------- */

.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 0;
}

.section-head { display: flex; flex-direction: column; gap: 14px; }

.section-head .rule {
  width: 56px; height: 1px; border: 0; margin: 2px 0 0;
  background: linear-gradient(90deg, var(--violet), rgba(125, 91, 177, 0));
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
  max-width: 18ch;
}

.section-title--caps {
  font-weight: 500;
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  line-height: 1.34;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet);
  max-width: 21ch;
}

.prose { max-width: 60ch; }
.prose p { margin: 0 0 1em; color: var(--ink-2); font-size: 1.0625rem; line-height: 1.75; }
.prose p:last-child { margin-bottom: 0; }

.signature-hand {
  font-family: var(--font-hand);
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn svg { width: 16px; height: 16px; flex: none; }

.btn-primary {
  background: linear-gradient(100deg, var(--violet) 0%, var(--lilac) 100%);
  color: #fff;
  box-shadow: 0 14px 34px -18px rgba(191, 158, 232, 0.9);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -18px rgba(191, 158, 232, 1); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line-strong);
  color: var(--violet-deep);
}
.btn-ghost:hover { background: #fff; transform: translateY(-2px); }

.btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(244, 238, 250, 0.4);
  color: var(--on-dark);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.14); }

.btn-more {
  align-self: center;
  background: transparent;
  border-color: var(--line-strong);
  color: var(--violet-deep);
}
.btn-more:hover { background: rgba(255, 255, 255, 0.7); }

/* ---------- Cabeçalho ---------- */

.site-header {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 60;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-stuck {
  background: rgba(34, 29, 45, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(191, 158, 232, 0.18);
}

.header-inner {
  display: flex; align-items: center; gap: 18px;
  min-height: 74px;
  padding-block: 14px;
}

.brandmark { display: inline-flex; align-items: center; margin-right: auto; }
.brandmark img { width: clamp(88px, 12vw, 116px); height: auto; }

.site-nav { display: flex; align-items: center; gap: 26px; }

.site-nav a {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--on-dark-2);
  transition: color 0.2s ease;
}
.site-nav a:hover { color: #fff; }

.social { display: flex; align-items: center; gap: 14px; }
.social a { color: var(--on-dark-2); display: inline-flex; transition: color 0.2s ease, transform 0.2s ease; }
.social a:hover { color: var(--lilac); transform: translateY(-1px); }
.social svg { width: 19px; height: 19px; }

.btn-header {
  flex: none;
  margin-left: 4px;
  padding: 10px 18px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  background: rgba(244, 238, 250, 0.1);
  border-color: rgba(191, 158, 232, 0.5);
  color: var(--on-dark);
  backdrop-filter: blur(6px);
}
.btn-header:hover:not(:disabled) { background: rgba(191, 158, 232, 0.24); border-color: var(--lilac); }
.btn-header:disabled { opacity: 0.6; cursor: progress; }
.btn-header svg { width: 14px; height: 14px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(244, 238, 250, 0.32);
  border-radius: 999px;
  color: var(--on-dark);
  padding: 9px 14px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  margin-top: calc(-1 * (74px + 28px));
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(191, 158, 232, 0.4) 0%, rgba(191, 158, 232, 0) 58%),
    radial-gradient(90% 70% at 8% 88%, rgba(125, 91, 177, 0.42) 0%, rgba(125, 91, 177, 0) 62%),
    linear-gradient(168deg, #241f31 0%, #362b4e 52%, #2b2440 100%);
  color: var(--on-dark);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute; inset: -20% -10%;
  background: conic-gradient(from 200deg at 60% 40%, rgba(216, 220, 235, 0.14), rgba(191, 158, 232, 0.22), rgba(125, 91, 177, 0.1), rgba(241, 221, 244, 0.16), rgba(216, 220, 235, 0.14));
  filter: blur(70px);
  opacity: 0.6;
  z-index: -1;
  animation: drift 26s ease-in-out infinite alternate;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  max-width: none;
  width: 100%;
  padding-inline: 0;
  padding-block: 0;
}

.hero-copy {
  padding-left: max(var(--gutter), calc((100vw - var(--shell)) / 2 + var(--gutter)));
  padding-right: clamp(12px, 2vw, 28px);
  padding-block: calc(74px + clamp(28px, 4vw, 52px)) clamp(32px, 5vw, 64px);
}

.hero-logo {
  width: clamp(230px, 32vw, 400px);
  filter: drop-shadow(0 10px 40px rgba(191, 158, 232, 0.35));
}

.hero-signature {
  display: flex; align-items: center; gap: 12px;
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--lilac-soft);
  text-shadow: 0 0 22px rgba(191, 158, 232, 0.5);
}
.hero-signature::before {
  content: ""; width: clamp(28px, 5vw, 64px); height: 1px; flex: none;
  background: linear-gradient(90deg, rgba(191, 158, 232, 0), var(--lilac));
}

.hero-tagline {
  margin: clamp(22px, 4vw, 34px) 0 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  line-height: 1.34;
  letter-spacing: -0.01em;
  max-width: 21ch;
  text-wrap: balance;
}
.hero-tagline b { font-weight: 500; color: #fff; }

.hero-actions { margin-top: clamp(26px, 4vw, 38px); display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-geo {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}

.hero-photo { position: relative; align-self: end; min-width: 0; }

.hero-photo::after {
  content: "";
  position: absolute; inset: 12% -6% -4% 6%;
  background: radial-gradient(60% 50% at 50% 60%, rgba(191, 158, 232, 0.4), rgba(191, 158, 232, 0) 70%);
  z-index: -1;
  filter: blur(12px);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: min(74vh, 720px);
  object-fit: cover;
  object-position: 50% 2%;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 24%, #000 100%),
    linear-gradient(to bottom, #000 0%, #000 74%, transparent 99%);
  mask-image:
    linear-gradient(to right, transparent 0%, #000 24%, #000 100%),
    linear-gradient(to bottom, #000 0%, #000 74%, transparent 99%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

/* ---------- Seções ---------- */

.section { padding-block: clamp(56px, 8vw, 104px); }
.section-mist { background: var(--mist); }
.section-blush { background: var(--blush); }
.section-off { background: var(--offwhite); }

/* Sobre */

.sobre-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) minmax(0, 0.72fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}

.sobre-signature {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  margin: clamp(38px, 5vw, 66px) auto 0;
}

.sobre-rule {
  flex: 1;
  height: 1px;
  min-width: 24px;
  background: linear-gradient(90deg, rgba(125, 91, 177, 0), rgba(125, 91, 177, 0.4), rgba(125, 91, 177, 0));
}

.qr {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 10px 10px 12px;
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.qr:hover { transform: translateY(-3px); background: #fff; box-shadow: var(--shadow-soft); }
.qr img { width: clamp(74px, 9vw, 104px); height: auto; border-radius: 6px; }
.qr-label {
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
}

.sobre-signature .signature-hand {
  color: var(--violet);
  font-size: clamp(2rem, 6.4vw, 4.9rem);
  line-height: 1.05;
  white-space: nowrap;
}

.sobre-copy { display: flex; flex-direction: column; gap: 20px; }

.sobre-youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius-l);
  border: 1px solid var(--line-strong);
  background: var(--mist);
}
.sobre-youtube iframe { display: block; width: 100%; height: 100%; border: 0; }

.sobre-geo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--violet);
}
.sobre-geo::before { content: ""; width: 26px; height: 1px; background: var(--line-strong); }

.sobre-photo {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  min-height: clamp(360px, 33vw, 520px);
}
.sobre-photo > img:not(.photo-mark) { height: 100%; width: 100%; object-fit: cover; object-position: 50% 28%; }

.photo-mark {
  position: absolute;
  top: clamp(14px, 2vw, 22px);
  right: clamp(14px, 2vw, 22px);
  width: clamp(66px, 9vw, 96px);
  height: auto;
  opacity: 0.42;
  filter: blur(0.7px) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.sobre-aside { display: flex; flex-direction: column; gap: 16px; min-height: 0; }
.sobre-aside .refs-card { flex: 0 0 calc(50% - 8px); min-height: 0; }
.sobre-aside .casas-card { flex: 1; }

.casas-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  flex: 1;
  align-content: space-between;
  margin-top: 14px;
}

.casa {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 6px 4px;
}
.casa img {
  max-width: 100%;
  max-height: 38px;
  width: auto;
  opacity: 0.88;
  transition: opacity 0.25s ease;
}
.casa:hover img { opacity: 1; }

.refs-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.5));
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
}

.refs-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  margin: 0 0 4px;
}

.refs-card .rule { width: 34px; height: 1px; border: 0; margin: 0 0 14px; background: var(--line-strong); }
.casas-card .rule { margin-bottom: 0; }

.refs-card ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  flex: 1;
  justify-content: center;
  gap: 7px;
}
.refs-card li { font-size: 0.95rem; color: var(--ink-2); letter-spacing: 0.01em; line-height: 1.22; }

/* Música */

.section-musica {
  background:
    radial-gradient(80% 120% at 6% 0%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 60%),
    linear-gradient(120deg, #e3d2f4 0%, #efe3f8 46%, #e6e6f4 100%);
}

.musica-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.musica-photo { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-lift); }
.musica-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.musica-panel { display: flex; flex-direction: column; gap: 18px; min-width: 0; }

.musica-topline { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }

.musica-note { margin: 0; color: var(--muted); font-size: 0.95rem; }

.player {
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  min-height: 166px;
}
.player iframe { display: block; width: 100%; height: 166px; border: 0; }

.player-fallback {
  padding: 22px 24px 8px;
  display: flex; flex-direction: column; gap: 6px;
  color: var(--ink-2);
  min-height: 0;
}

.fallback-note { margin: 0 0 6px; font-size: 0.9rem; color: var(--muted); max-width: 52ch; }

.tracklist { list-style: none; margin: 0; padding: 0; counter-reset: none; }
.tracklist li { border-top: 1px solid var(--line); }
.tracklist li:first-child { border-top: 0; }

.tracklist a {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 4px;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.tracklist a:hover { color: var(--violet-deep); padding-left: 10px; }

.tk-n {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--violet);
  width: 16px; flex: none;
}
.tk-t { flex: 1; font-size: 1rem; font-weight: 500; }
.tk-i {
  width: 34px; height: 34px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--violet);
  transition: background 0.2s ease, color 0.2s ease;
}
.tk-i svg { width: 12px; height: 12px; margin-left: 2px; }
.tracklist a:hover .tk-i { background: var(--violet); color: #fff; }

/* Vídeos */

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  width: 100%;
}

.video-card {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--deep);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 9 / 16;
}

.video-card video,
.video-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.video-card .play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  border: 0; background: transparent; cursor: pointer; padding: 0;
  color: #fff;
}

.video-card .play::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34, 29, 45, 0) 40%, rgba(34, 29, 45, 0.62) 100%);
  transition: opacity 0.3s ease;
}

.video-card .play .disc {
  position: relative;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  transition: transform 0.28s ease, background 0.28s ease;
}
.video-card .play:hover .disc { transform: scale(1.08); background: rgba(255, 255, 255, 0.28); }
.video-card .play svg { width: 20px; height: 20px; margin-left: 3px; }

.stack-actions { display: flex; justify-content: center; margin-top: clamp(24px, 3vw, 34px); }

/* Galeria + Disponível */

.galeria-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.thumb {
  position: relative;
  padding: 0; border: 0; cursor: pointer;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: var(--mist);
  aspect-ratio: 3 / 4;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.thumb:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.thumb:hover img { transform: scale(1.05); }

.avail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.55));
  padding: 30px 28px;
  position: sticky;
  top: calc(env(safe-area-inset-top, 0px) + 100px);
}

.avail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 20px;
}

.avail-item {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.avail-item:last-child { border-bottom: 0; }
.avail-item svg { width: 28px; height: 28px; flex: none; color: var(--violet); }
.avail-item span {
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* Booking */

.section-booking { background: var(--grad-brand); position: relative; overflow: hidden; }

.section-booking::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 120% at 85% 0%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.booking-inner { position: relative; z-index: 1; }

.booking-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.booking-top > div { min-width: 0; }
.booking-logo { width: clamp(120px, 30vw, 340px); height: auto; flex-shrink: 0; object-fit: contain; }
@media (max-width: 560px) {
  .booking-top { gap: 16px; }
  .booking-logo { width: 34%; }
}

.booking-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  color: #2f2545;
}

.booking-sub {
  margin: 12px 0 0;
  color: #4b3b68;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.35;
  max-width: 26ch;
}

.booking-contacts {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.4fr) minmax(0, 0.74fr);
  gap: 16px;
  margin-top: clamp(28px, 4vw, 40px);
}

.contact {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.75);
  text-decoration: none;
  color: #2f2545;
  transition: background 0.25s ease, transform 0.25s ease;
  min-width: 0;
}
.contact:hover { background: rgba(255, 255, 255, 0.82); transform: translateY(-2px); }
.contact svg { width: 22px; height: 22px; flex: none; color: var(--violet-deep); }
.contact .c-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6a5a88;
}
.contact .c-value { display: block; font-size: 0.98rem; font-weight: 500; overflow-wrap: anywhere; }
.contact .c-note { display: block; margin-top: 2px; font-size: 0.8rem; color: #6a5a88; }
.contact-email .c-value { font-size: 0.92rem; white-space: nowrap; overflow-wrap: normal; }

.booking-actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn-booking {
  background: #2f2545;
  color: #f4eefa;
  border-color: #2f2545;
}
.btn-booking:hover { background: #221d2d; transform: translateY(-2px); }

.booking-hint { font-size: 0.88rem; color: #4b3b68; }

/* Rodapé */

.site-footer {
  background: var(--graphite);
  color: var(--on-dark-2);
  padding-block: 34px;
}

.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(191, 158, 232, 0.2);
  padding-top: 30px;
}

.footer-inner img { width: 92px; height: auto; }
.footer-hand { color: var(--lilac-soft); }
.footer-rights { font-size: 0.82rem; color: var(--on-dark-3); }

/* ---------- Lightbox ---------- */

.lightbox {
  border: 0; padding: 0;
  width: min(94vw, 720px);
  max-width: 94vw;
  background: transparent;
  overflow: visible;
}
.lightbox::backdrop { background: rgba(26, 21, 36, 0.86); backdrop-filter: blur(6px); }
.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-m);
  background: var(--deep);
}
.lightbox-bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 14px; }
.lightbox-caption { color: var(--on-dark-2); font-size: 0.9rem; flex: 1; }
.lightbox button {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  border-radius: 999px;
  width: 42px; height: 42px;
  cursor: pointer;
  display: grid; place-items: center;
}
.lightbox button:hover { background: rgba(255, 255, 255, 0.24); }

/* ---------- Responsivo ---------- */

@media (max-width: 1000px) {
  .sobre-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); }
  .sobre-aside { grid-column: 1 / -1; flex-direction: row; }
  .sobre-aside .refs-card,
  .sobre-aside .casas-card { flex: 1 1 0; }
  .galeria-grid { grid-template-columns: 1fr; }
  .avail-card { position: static; }
  .avail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
  .avail-item:nth-last-child(2) { border-bottom: 0; }
}

@media (max-width: 820px) {
  .site-nav, .social { display: none; }
  .nav-toggle { display: inline-flex; }

  .site-header.nav-open { background: rgba(34, 29, 45, 0.96); backdrop-filter: blur(14px); }
  .site-header.nav-open .site-nav,
  .site-header.nav-open .social {
    display: flex;
    position: absolute;
    left: 0; right: 0; top: 100%;
    padding: 6px var(--gutter) 22px;
    background: rgba(34, 29, 45, 0.96);
    backdrop-filter: blur(14px);
  }
  .site-header.nav-open .site-nav { flex-direction: column; align-items: flex-start; gap: 16px; padding-top: 12px; }
  .site-header.nav-open .social { top: calc(100% + 186px); gap: 20px; }

  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding-bottom: 28px; padding-inline: var(--gutter); order: 1; }
  .hero-photo { order: 2; }
  .hero-photo img {
    aspect-ratio: 5 / 6;
    max-height: none;
    object-position: 50% 8%;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 99%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 99%);
    -webkit-mask-composite: source-over;
    mask-composite: add;
  }

  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-aside { flex-direction: column; }
  .sobre-aside .refs-card,
  .sobre-aside .casas-card { flex: 0 0 auto; min-height: auto; }
  .sobre-signature { flex-wrap: wrap; justify-content: center; gap: 18px 20px; }
  .sobre-signature .signature-hand { order: -1; flex-basis: 100%; text-align: center; }
  .sobre-rule { display: none; }
  .musica-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-contacts { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .btn-header { padding: 10px 12px; margin-left: 0; }
  .btn-header .pk-label { display: none; }
  .thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-grid { grid-template-columns: 1fr; gap: 16px; }
  .avail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .musica-photo img { aspect-ratio: 16 / 11; }
}

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

html { scroll-behavior: smooth; }
:target { scroll-margin-top: 96px; }

/* Ga.bih: readability refinements */
.eyebrow,.site-nav a,.btn,.nav-toggle{font-size:.875rem}.site-nav{gap:18px}.hero-geo{font-size:.875rem;color:#d6c2f0}.c-value{overflow-wrap:anywhere}.sobre-signature{display:none}.section-title--caps{font-weight:400;letter-spacing:-.025em;text-transform:none}.hero-photo img{min-height:580px}.hero-logo{width:clamp(230px,34vw,470px)}@media(max-width:760px){.hero-photo img{min-height:0}.site-header .btn-header{display:none}}

.ed-status{max-width:45ch;cursor:pointer}.ed-dialog select{padding:12px;font:inherit}.ed-dialog input[type=range]{width:100%}.ed-dialog #edPrev{height:230px;object-fit:cover}.refs-card h3,.ed-btn,.ed-inline button,.ed-dialog label{font-size:.875rem!important}.ed-tag{font-size:.75rem!important}.sobre-photo>img:not(.photo-mark){object-position:50% 55%}.video-card video{width:100%;height:100%;object-fit:contain} .section-musica .player{min-height:300px}.section-musica iframe{height:300px} @media(min-width:761px){.thumbs{grid-template-columns:repeat(4,minmax(0,1fr))}}

/* Assinatura editorial entre Sobre e Música. */
#sobre { padding-bottom: 0; }
.interlude-signature {
  container-type: inline-size;
  margin-top: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(18px, 2.5vw, 36px);
  text-align: center;
}
.interlude-signature .signature-hand {
  margin: 0;
  color: #936db5;
  font-family: var(--font-hand);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 10vw, 9rem);
  font-size: 12cqw;
  letter-spacing: -.025em;
  line-height: 1.12;
  white-space: nowrap;
}
#musica { padding-top: clamp(28px, 3vw, 44px); }
