@charset "UTF-8";
/* ==========================================================================
   CAMAROTE MAJESTIC — Design System + Landing Page
   Identidade extraída do @camarotemajestic: vermelho e azul das lonas do
   camarote, amarelo dos copos, laranja/magenta/turquesa dos murais de frevo
   e cordel. Base clara e quente (creme da manha) porque o Galo da Madrugada
   acontece sob o sol, com a fotografia real como protagonista.
   ========================================================================== */

/* ---------- 1. FONTES (self-hosted) ---------- */
@font-face {
  font-family: 'Anton';
  src: url('../assets/fonts/anton-latin.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Anton';
  src: url('../assets/fonts/anton-latin-ext.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 400 700; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-latin-ext.woff2') format('woff2');
  font-weight: 400 700; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- 2. DESIGN TOKENS ---------- */
:root {
  /* Cores da marca */
  --color-primary:      #E5231B;   /* vermelho das lonas e do abadá */
  --color-primary-dark: #B5110C;
  --color-secondary:    #1F3FAE;   /* azul real das lonas */
  --color-accent:       #FFC61E;   /* amarelo dos copos Majestic */
  --color-orange:       #F4692B;   /* laranja dos murais */
  --color-magenta:      #E2158A;   /* magenta da cenografia */
  --color-teal:         #17B3B9;   /* turquesa do brasão */

  --color-background:   #FFF7EE;   /* creme da manha */
  --color-surface:      #FFEFE0;
  --color-surface-2:    #FFE5CD;
  --color-paper:        #FFFFFF;   /* faixa clara */

  --color-text:         #2A1114;   /* marrom-vinho de leitura */
  --color-text-muted:   #6E4B47;
  --color-text-dark:    #241012;
  --color-text-invert:  #FFF6F1;   /* texto sobre cheios de cor */
  --color-border:       rgba(42, 17, 20, .14);
  --color-border-strong:rgba(42, 17, 20, .30);
  --color-focus:        #1F3FAE;   /* anel de foco visivel no claro */

  /* Tipografia */
  --font-heading: 'Anton', 'Arial Narrow', 'Haettenschweiler', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --fs-h1:      clamp(2.5rem, 7.5vw, 6rem);
  --fs-h2:      clamp(1.9rem, 5vw, 3.75rem);
  --fs-h2-big:  clamp(2.2rem, 6.4vw, 5rem);
  --fs-h3:      clamp(1.3rem, 2.4vw, 1.875rem);
  --fs-lead:    clamp(1.0625rem, 1.5vw, 1.3125rem);
  --fs-body:    clamp(1rem, 1.15vw, 1.0625rem);
  --fs-small:   .875rem;
  --fs-eyebrow: .75rem;

  /* Espaçamento */
  --space-3xs: .25rem;
  --space-2xs: .5rem;
  --space-xs:  .75rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: clamp(4.5rem, 11vw, 9.5rem);

  /* Raios */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Outros */
  --shell: 1280px;
  --shell-pad: clamp(1.125rem, 4vw, 3rem);
  --header-h: 68px;
  --ease: cubic-bezier(.22, .68, .28, 1);
  --shadow-lift: 0 24px 60px -22px rgba(92, 38, 30, .32);
}

@media (min-width: 900px) { :root { --header-h: 84px; } }

/* ---------- 3. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }
button { font: inherit; color: inherit; }

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection { background: var(--color-primary); color: #fff; }

.skip-link {
  position: fixed;
  top: .5rem; left: .5rem;
  z-index: 200;
  padding: .75rem 1.25rem;
  background: var(--color-accent);
  color: var(--color-text-dark);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}
.skip-link:focus-visible { transform: translateY(0); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

/* ---------- 4. LAYOUT ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}

.section { padding-block: var(--space-3xl); }
.section--tight { padding-block: clamp(3.5rem, 8vw, 7rem); }

.section-head { max-width: 36rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
/* Nada de `ch` aqui: a unidade seguiria a fonte do container (body), não a do
   display, e estrangularia o título. */
.section-head--center { max-width: 44rem; margin-inline: auto; text-align: center; }
.section-head--split {
  display: grid;
  gap: var(--space-md);
  max-width: none;
  align-items: end;
}
.section-head__aside {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  max-width: 36ch;
}
@media (min-width: 860px) {
  .section-head--split { grid-template-columns: 1fr auto; }
  .section-head__aside { text-align: right; }
}

/* ---------- 5. TIPOGRAFIA ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: var(--space-sm);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}
.eyebrow::before {
  content: "";
  width: 1.75rem; height: 2px;
  background: var(--color-primary);
}
.eyebrow--light { color: var(--color-primary-dark); }

.h2, .h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.005em;
  /* Folga suficiente para os diacríticos do português (Ã, Ê, É) em caixa alta. */
  line-height: 1.02;
}
.h2 { font-size: var(--fs-h2); }
.h2--big { font-size: var(--fs-h2-big); }
.h3 { font-size: var(--fs-h3); }

.h2 em, .hero__title em {
  font-style: normal;
  color: var(--color-primary);
}

.section p { color: var(--color-text-muted); }
.section p + p { margin-top: var(--space-sm); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: var(--space-md);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: .25rem;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.link-arrow svg {
  width: 1.1em; height: 1.1em;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .25s var(--ease);
}
.link-arrow:hover { color: var(--color-primary-dark); border-color: var(--color-primary-dark); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow--inline { margin-top: 0; }

/* ---------- 6. BOTÕES ---------- */
.btn {
  --btn-bg: var(--color-primary);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.5rem;
  min-height: 48px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: .9375rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform .2s var(--ease), background-color .2s var(--ease),
              box-shadow .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: var(--color-primary);
  box-shadow: 0 10px 30px -10px rgba(229, 35, 27, .8);
}
.btn--primary:hover {
  --btn-bg: var(--color-primary-dark);
  box-shadow: 0 16px 38px -12px rgba(229, 35, 27, .95);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--color-text);
  border-color: var(--color-border-strong);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { --btn-bg: rgba(42, 17, 20, .07); border-color: var(--color-text); }

.btn--sm { padding: .625rem 1.125rem; min-height: 42px; font-size: .8125rem; }
.btn--lg { padding: 1rem 1.875rem; min-height: 54px; font-size: 1rem; }
.btn--xl { padding: 1.125rem 2.5rem; min-height: 60px; font-size: clamp(1rem, 1.6vw, 1.125rem); }

/* ---------- 7. HEADER / NAV ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease),
              border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
  isolation: isolate;
}
/* Scrim que garante leitura do menu sobre a foto do hero. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 -70px 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 247, 238, .82) 0%, rgba(255, 247, 238, .42) 45%, rgba(255, 247, 238, 0) 100%);
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.site-header.is-stuck::before { opacity: 0; }
.site-header.is-stuck {
  background: rgba(255, 247, 238, .9);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--color-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.brand {
  position: relative;
  z-index: 1; /* fica visível por cima do menu mobile em tela cheia */
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(42, 17, 20, .14);
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__kicker {
  font-size: .5625rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.brand__name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-top: .12em;
}
@media (min-width: 900px) {
  .brand__mark { width: 48px; height: 48px; }
  .brand__name { font-size: 1.625rem; }
}

.nav { display: flex; align-items: center; gap: var(--space-lg); }
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
  margin: 0; padding: 0;
}
.nav__link {
  position: relative;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  padding-block: .35rem;
  color: var(--color-text);
  opacity: .82;
  transition: opacity .2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 18px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  /* backdrop-filter cria containing block: com ele o menu `position: fixed`
     ficaria preso dentro da caixa do header. No mobile usamos fundo sólido. */
  .site-header.is-stuck {
    backdrop-filter: none;
    background: rgba(255, 247, 238, .98);
  }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: var(--space-lg);
    padding: calc(var(--header-h) + var(--space-lg)) var(--shell-pad) var(--space-xl);
    background: var(--color-background);
    background-image:
      radial-gradient(120% 70% at 50% 0%, rgba(255, 198, 30, .34), transparent 60%),
      radial-gradient(90% 60% at 100% 100%, rgba(229, 35, 27, .16), transparent 65%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li + li { border-top: 1px solid var(--color-border); }
  .nav__link {
    display: block;
    padding: 1.15rem 0;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    text-transform: uppercase;
    opacity: 1;
  }
  .nav__link::after { display: none; }
  .nav__cta { align-self: stretch; }
}

/* ---------- 8. HERO ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: calc(var(--header-h) + var(--space-xl)) clamp(4.5rem, 12vh, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
/* Véu com peso à esquerda no desktop (onde fica o texto) e embaixo no mobile,
   para manter contraste AA sem apagar a fotografia. */
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 247, 238, .55) 0%, rgba(255, 247, 238, .2) 18%, rgba(255, 247, 238, .52) 44%, rgba(255, 247, 238, .88) 76%, var(--color-background) 100%);
}

/* Mobile: hero mais compacto para o CTA principal caber acima da dobra. */
@media (max-width: 767px) {
  .hero { padding-block: calc(var(--header-h) + var(--space-md)) clamp(3.25rem, 8vh, 4.5rem); }
  .hero__lead { margin-top: var(--space-sm); }
  .hero__facts { margin-top: var(--space-md); }
  .hero__actions { margin-top: var(--space-md); }
}
@media (min-width: 768px) {
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(255, 247, 238, .38) 0%, rgba(255, 247, 238, 0) 22%, rgba(255, 247, 238, 0) 54%, rgba(255, 247, 238, .34) 86%, var(--color-background) 100%),
      linear-gradient(95deg, rgba(255, 247, 238, .9) 0%, rgba(255, 247, 238, .74) 26%, rgba(255, 247, 238, .2) 48%, rgba(255, 247, 238, 0) 62%);
  }
}

.hero__inner { position: relative; }
/* Sobre a foto o vermelho claro perde legibilidade; no hero usamos o fechado. */
.hero__title em { color: var(--color-primary-dark); }

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: var(--space-md);
  padding: .45rem .9rem .45rem .7rem;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-text);
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 0 rgba(229, 35, 27, .55);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(229, 35, 27, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(229, 35, 27, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 35, 27, 0); }
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: .96;
  letter-spacing: -.01em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow:
    0 0 3px rgba(255, 247, 238, .98),
    0 0 8px rgba(255, 247, 238, .95),
    0 0 20px rgba(255, 247, 238, .8),
    0 0 42px rgba(255, 247, 238, .6);
}

.hero__lead {
  max-width: 44ch;
  margin-top: var(--space-md);
  font-size: var(--fs-lead);
  font-weight: 500;
  color: var(--color-text);
  text-shadow:
    0 0 2px rgba(255, 247, 238, .98),
    0 0 7px rgba(255, 247, 238, .92),
    0 0 16px rgba(255, 247, 238, .7);
}

.hero__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-strong);
}
.hero__facts .fact:first-child { grid-column: 1 / -1; }
.hero__facts .fact dt,
.hero__facts .fact dd {
  text-shadow:
    0 0 2px rgba(255, 247, 238, .98),
    0 0 7px rgba(255, 247, 238, .92),
    0 0 15px rgba(255, 247, 238, .7);
}
@media (min-width: 560px) {
  .hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-lg);
  }
}
.fact dt {
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #5A3733;
}
.fact dd {
  margin: .25rem 0 0;
  font-weight: 600;
  font-size: .9375rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}
@media (max-width: 479px) { .hero__actions .btn { flex: 1 1 100%; } }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 1.25rem;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--color-text-muted);
}
.scroll-cue__line {
  width: 1px; height: 40px;
  background: linear-gradient(var(--color-primary), transparent);
  animation: cue 2.2s var(--ease) infinite;
}
.scroll-cue__label {
  font-size: .625rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
@keyframes cue {
  0%, 100% { transform: scaleY(.4); transform-origin: top; opacity: .4; }
  50%      { transform: scaleY(1); transform-origin: top; opacity: 1; }
}
@media (min-width: 900px) { .scroll-cue { display: flex; } }

/* ---------- 9. BANDEIRINHAS + MARQUEE ---------- */
.flags {
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='22' viewBox='0 0 240 22'%3E%3Cpolygon points='0,0 40,0 20,22' fill='%23E5231B'/%3E%3Cpolygon points='40,0 80,0 60,22' fill='%231F3FAE'/%3E%3Cpolygon points='80,0 120,0 100,22' fill='%23FFC61E'/%3E%3Cpolygon points='120,0 160,0 140,22' fill='%23F4692B'/%3E%3Cpolygon points='160,0 200,0 180,22' fill='%2317B3B9'/%3E%3Cpolygon points='200,0 240,0 220,22' fill='%23E2158A'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: auto 100%;
}
.flags--flip { transform: scaleY(-1); }

.marquee {
  overflow: hidden;
  padding-block: .875rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  user-select: none;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.6vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: rgba(42, 17, 20, .72);
  animation: marquee 34s linear infinite;
}
.marquee__star { color: var(--color-primary); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 10. EXPERIÊNCIA ---------- */
.experiencia { position: relative; }
.experiencia__grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); }
@media (min-width: 900px) {
  .experiencia__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); align-items: center; }
}

.experiencia__text .h2 { margin-bottom: var(--space-md); }

.experiencia__media {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.experiencia__fig { margin: 0; overflow: hidden; border-radius: var(--radius-lg); width: 100%; }
.experiencia__fig img { width: 100%; height: 100%; object-fit: cover; }
.experiencia__fig--tall { aspect-ratio: 4 / 3; }

/* Foto única ocupando a coluna inteira. */
@media (min-width: 900px) {
  .experiencia__media { display: block; }
  .experiencia__fig--tall {
    width: 100%;
    /* 4/5 e não 3/4: recorta 6% do original e fecha a altura perto da coluna
       de texto ao lado, que o grid centraliza. */
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lift);
  }
}

/* ---------- 11. DESTAQUES ---------- */
.destaques {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(31, 63, 174, .1), transparent 55%),
    radial-gradient(100% 70% at 100% 100%, rgba(229, 35, 27, .09), transparent 60%),
    var(--color-surface);
  border-block: 1px solid var(--color-border);
}
.destaques__list {
  display: grid;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 620px) { .destaques__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .destaques__list { grid-template-columns: repeat(4, 1fr); } }

.destaque {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-surface);
  transition: background-color .3s var(--ease);
}
.destaque:hover { background: var(--color-surface-2); }
.destaque__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: .75rem;
}
.destaque__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.375rem;
  text-transform: uppercase;
  letter-spacing: .005em;
  margin-bottom: .5rem;
}
.destaque p { font-size: .9375rem; line-height: 1.6; color: var(--color-text-muted); }

.destaques__note {
  margin-top: var(--space-md);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

/* ---------- 12. OPEN BAR & OPEN FOOD ---------- */
.mesa__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.mesa__fig { margin: 0; overflow: hidden; border-radius: var(--radius-lg); width: 100%; }
.mesa__fig img { width: 100%; height: 100%; object-fit: cover; }
.mesa__fig--a { aspect-ratio: 16 / 9; }
.mesa__fig--b { aspect-ratio: 16 / 9; }
.mesa__fig--c { aspect-ratio: 16 / 9; }
.mesa__text { width: 100%; }
.mesa__text .h2 { margin-bottom: var(--space-sm); }
.mesa__cta { margin-top: var(--space-lg); }
.mesa__aside {
  margin-top: var(--space-md);
  padding-left: var(--space-sm);
  border-left: 3px solid var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.4vw, 1.625rem);
  text-transform: uppercase;
  color: var(--color-text) !important;
  line-height: 1.15;
}

@media (min-width: 900px) {
  .mesa__grid {
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
  }
  .mesa__fig--a { grid-column: 1 / 7; grid-row: 1 / 2; aspect-ratio: 4 / 3; }
  .mesa__text  { grid-column: 8 / -1; grid-row: 1 / 2; }
  .mesa__fig--b { grid-column: 1 / 5; grid-row: 2 / 3; aspect-ratio: 3 / 4; }
  .mesa__fig--c { grid-column: 5 / -1; grid-row: 2 / 3; aspect-ratio: 16 / 9; align-self: start; }
  .mesa__grid { row-gap: var(--space-lg); }
}

/* ---------- 13. GALERIA ---------- */
.galeria { padding-bottom: clamp(3rem, 7vw, 6rem); }
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row dense; /* preenche os buracos deixados pelos itens largos/altos */
  gap: var(--space-xs);
}
@media (min-width: 700px)  { .galeria__grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-sm); } }
@media (min-width: 1100px) { .galeria__grid { grid-template-columns: repeat(6, 1fr); } }

.galeria__item { position: relative; }
.galeria__item--wide { grid-column: span 2; }
@media (min-width: 700px) {
  .galeria__item--tall { grid-row: span 2; }
  .galeria__item--wide { grid-column: span 2; }
}

.galeria__btn {
  display: block;
  width: 100%; height: 100%;
  padding: 0;
  background: var(--color-surface);
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.galeria__btn picture, .galeria__btn img { width: 100%; height: 100%; }
.galeria__btn img {
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
.galeria__btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(229, 35, 27, .16), rgba(31, 63, 174, .13));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.galeria__btn:hover img, .galeria__btn:focus-visible img { transform: scale(1.06); }
.galeria__btn:hover::after, .galeria__btn:focus-visible::after { opacity: 1; }

.galeria__item { aspect-ratio: 3 / 4; }
.galeria__item--wide { aspect-ratio: 16 / 9; }
@media (min-width: 700px) {
  .galeria__item--tall { aspect-ratio: auto; }
}

/* ---------- 14. PROVA SOCIAL ---------- */
.prova {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
  text-align: center;
}
.prova::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Arte oficial do Galo 2027, com vinheta na cor da seção por cima para
     manter o contraste do texto. */
  background:
    radial-gradient(ellipse at center,
      rgba(255, 239, 224, .58) 0%,
      rgba(255, 239, 224, .8) 42%,
      var(--color-surface) 78%),
    url("../assets/images/Majestic2027-elementos-separados_page-0001.jpg") center / cover no-repeat;
  pointer-events: none;
}
.prova > .shell { position: relative; }
.prova .eyebrow { justify-content: center; }
/* A arte do Galo fica visivel por baixo; o halo garante a leitura do texto. */
.prova .h2, .prova .stat dt, .prova .stat dd, .prova .eyebrow, .prova__note {
  text-shadow: 0 1px 10px rgba(255, 239, 224, .95), 0 6px 26px rgba(255, 239, 224, .8);
}

.prova__stats {
  display: grid;
  gap: var(--space-md);
  margin-top: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
@media (min-width: 760px) { .prova__stats { grid-template-columns: repeat(3, 1fr); } }
.stat { padding: var(--space-md) var(--space-sm); border-top: 2px solid var(--color-primary); }
.stat dt {
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.stat dd {
  margin: .5rem 0 0;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}
.stat__word { font-size: clamp(1.125rem, 2.2vw, 1.5rem) !important; line-height: 1.15 !important; }

.prova__note {
  margin-top: clamp(2rem, 4vw, 3rem);
  font-size: var(--fs-small);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: center;
}

/* ---------- 15. O QUE TE ESPERA ---------- */
.espera__list { display: grid; gap: clamp(2.5rem, 6vw, 5rem); margin-top: 0; }
.espera__item {
  display: grid;
  gap: var(--space-md);
  align-items: center;
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}
.espera__media { overflow: hidden; border-radius: var(--radius-lg); }
.espera__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; }
.espera__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 2px var(--color-primary);
  margin-bottom: var(--space-xs);
}
.espera__body .h3 { margin-bottom: var(--space-2xs); }
.espera__body p { color: var(--color-text-muted); max-width: 42ch; }

@media (min-width: 860px) {
  .espera__item { grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); }
  .espera__item--flip .espera__media { order: 2; }
  .espera__media img { aspect-ratio: 4 / 3; }
}

/* ---------- 16. CTA FINAL ---------- */
.cta-final {
  position: relative;
  isolation: isolate;
  padding-block: clamp(4.5rem, 12vw, 9rem);
  text-align: center;
  overflow: hidden;
}
.cta-final__media { position: absolute; inset: 0; z-index: -2; }
.cta-final__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-final__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, var(--color-background) 0%, rgba(255, 247, 238, .66) 30%, rgba(255, 247, 238, .76) 70%, var(--color-background) 100%);
}
.cta-final__inner { max-width: 36rem; }
.cta-final .h2, .cta-final__lead, .cta-final .eyebrow, .cta-final__fine {
  text-shadow: 0 1px 10px rgba(255, 247, 238, .95), 0 6px 30px rgba(255, 247, 238, .8);
}
.cta-final .eyebrow { justify-content: center; }
.cta-final .h2 { margin-bottom: var(--space-md); }
.cta-final__lead { font-size: var(--fs-lead); color: rgba(42, 17, 20, .8) !important; }
.cta-final .btn { margin-top: var(--space-lg); }
.cta-final__fine {
  margin-top: var(--space-sm);
  font-size: .8125rem;
  color: var(--color-text-muted) !important;
}

/* ---------- 17. FAQ ---------- */
.faq__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px) { .faq__grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: start; } }
@media (min-width: 900px) { .faq__head { position: sticky; top: calc(var(--header-h) + 2rem); } }

.faq__aside { margin-top: var(--space-md); font-size: var(--fs-small); }
.faq__aside a { color: var(--color-primary-dark); text-underline-offset: 3px; }

.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__item:first-child { border-top: 1px solid var(--color-border); }
.faq__q { margin: 0; font-size: inherit; font-weight: inherit; }
.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: 0;
  text-align: left;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 600;
  cursor: pointer;
  transition: color .2s var(--ease);
}
.faq__trigger:hover { color: var(--color-primary-dark); }
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 22px; height: 22px;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2px;
  background: var(--color-primary);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), background-color .2s var(--ease);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__trigger[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__trigger[aria-expanded="true"] .faq__icon::before,
.faq__trigger[aria-expanded="true"] .faq__icon::after { background: var(--color-secondary); }

.faq__a { overflow: hidden; }
.faq__a p {
  padding-bottom: 1.35rem;
  max-width: 62ch;
  font-size: .9375rem;
  color: var(--color-text-muted);
}
.faq__a a { color: var(--color-primary-dark); text-underline-offset: 3px; }
.faq__a:not([hidden]) { animation: faqIn .32s var(--ease); }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- 18. FOOTER ---------- */
.site-footer {
  background: var(--color-surface);
  padding-block: clamp(2.5rem, 6vw, 4.5rem) var(--space-lg);
  font-size: var(--fs-small);
}
.site-footer__grid { display: grid; gap: var(--space-lg); }
@media (min-width: 760px) { .site-footer__grid { grid-template-columns: 1.4fr .8fr 1fr; gap: var(--space-xl); } }

.brand--footer .brand__mark { width: 52px; height: 52px; }
.site-footer__tag { margin-top: var(--space-sm); color: var(--color-text-muted); max-width: 32ch; }

.site-footer__h {
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .625rem; }
.site-footer a { text-decoration: none; opacity: .85; transition: opacity .2s var(--ease), color .2s var(--ease); }
.site-footer a:hover { opacity: 1; color: var(--color-primary-dark); }
.site-footer__cta { margin-top: var(--space-md); }

.site-footer__legal {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: var(--space-2xs);
  color: var(--color-text-muted);
}
.site-footer__legal p { max-width: 70ch; }
@media (min-width: 760px) {
  .site-footer__legal { grid-template-columns: 1fr auto; align-items: center; gap: var(--space-md); }
}

/* ---------- 19. STICKY CTA (MOBILE) ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: .625rem var(--shell-pad);
  padding-bottom: calc(.625rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 247, 238, .95);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--color-border);
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.sticky-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--color-primary) 0 16.6%, var(--color-secondary) 16.6% 33.2%,
    var(--color-accent) 33.2% 49.8%, var(--color-orange) 49.8% 66.4%,
    var(--color-teal) 66.4% 83%, var(--color-magenta) 83% 100%);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  max-width: 520px;
  margin-inline: auto;
}
.sticky-cta__info { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.sticky-cta__info strong { font-size: .75rem; }
.sticky-cta__info span { font-size: .6875rem; color: var(--color-text-muted); }
@media (max-width: 359px) { .sticky-cta__info { display: none; } }
.sticky-cta__btn { flex-shrink: 0; padding: .75rem 1.125rem; font-size: .8125rem; min-height: 46px; }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ---------- 20. LIGHTBOX ---------- */
.lightbox { position: fixed; inset: 0; z-index: 150; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(255, 247, 238, .96);
  backdrop-filter: blur(6px);
  animation: fadeIn .25s var(--ease);
}
.lightbox__dialog {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-2xs);
  padding: clamp(3.5rem, 8vh, 5rem) var(--space-2xs) var(--space-md);
}
.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  min-width: 0;
  height: 100%;
  justify-content: center;
  animation: fadeIn .3s var(--ease);
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 11rem);
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  font-size: .8125rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 60ch;
}
.lightbox__counter { font-size: .6875rem; letter-spacing: .2em; color: var(--color-primary-dark); }

.lightbox__close, .lightbox__nav {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  background: rgba(42, 17, 20, .06);
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover {
  background: var(--color-primary);
  color: var(--color-text-invert);
  transform: scale(1.06);
}
.lightbox__close { position: absolute; top: 1rem; right: 1rem; z-index: 2; }
.lightbox__close svg, .lightbox__nav svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
@media (min-width: 700px) {
  .lightbox__dialog { padding-inline: var(--space-md); gap: var(--space-md); }
  .lightbox__close { top: 1.5rem; right: 1.5rem; }
  .lightbox__close, .lightbox__nav { width: 54px; height: 54px; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- 21. ILUSTRAÇÕES DECORATIVAS ---------- */
/* Recortes da arte do Galo 2027 espalhados pela página como acento gráfico.
   São puramente visuais: ficam atrás do conteúdo, fora do fluxo, sem clique e
   escondidos de leitores de tela. */
.has-deco { position: relative; overflow: clip; }
/* `clip` e não `hidden`: não cria contêiner de rolagem, então o
   `position: sticky` do FAQ continua colando na viewport. */
.has-deco > .shell,
.has-deco > .espera__list { position: relative; z-index: 1; }

.deco {
  position: absolute;
  z-index: 0;
  width: var(--deco-w, 120px);
  opacity: var(--deco-o, .9);
  transform: rotate(var(--deco-r, 0deg));
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 16px 22px rgba(92, 38, 30, .16));
}
.deco img { width: 100%; height: auto; }

@keyframes deco-float {
  0%, 100% { transform: rotate(var(--deco-r, 0deg)) translateY(0); }
  50%      { transform: rotate(var(--deco-r, 0deg)) translateY(-14px); }
}
@keyframes deco-sway {
  0%, 100% { transform: rotate(calc(var(--deco-r, 0deg) - 4deg)); }
  50%      { transform: rotate(calc(var(--deco-r, 0deg) + 4deg)); }
}
.deco--float { animation: deco-float var(--deco-dur, 8s) var(--ease) infinite; }
.deco--sway {
  animation: deco-sway var(--deco-dur, 9s) var(--ease) infinite;
  transform-origin: 50% 10%; /* balança pendurada pela ponta, como sombrinha */
}

/* Posições — mobile primeiro. Todas sangram para fora da coluna de leitura
   para que a ilustração apareça sem disputar espaço com o texto. */
.deco--sol            { --deco-w: clamp(78px, 21vw, 150px); --deco-r: -8deg;  right: -5%;  top: calc(var(--header-h) + .25rem); }
.deco--sombrinha      { --deco-w: clamp(90px, 25vw, 170px); --deco-r: 14deg;  left: -13%;  bottom: -1.5rem; --deco-o: .85; }
.deco--metais         { --deco-w: clamp(96px, 27vw, 180px); --deco-r: -10deg; right: -13%; top: -2rem;      --deco-o: .8; }
.deco--sombrinha-rosa { --deco-w: clamp(90px, 24vw, 170px); --deco-r: -12deg; left: -13%;  bottom: -1rem;   --deco-o: .85; }
.deco--rei-momo       { --deco-w: clamp(92px, 25vw, 175px); --deco-r: -6deg;  left: -12%;  bottom: -2.5rem; --deco-o: .75; }
.deco--galo           { --deco-w: clamp(105px, 28vw, 200px); --deco-r: 4deg;  right: -14%; top: 1.5rem;     --deco-o: .8; }
.deco--brasao         { --deco-w: clamp(120px, 34vw, 220px); --deco-r: -5deg; left: -12%;  bottom: 2rem;    --deco-o: .22; }
.deco--lua            { --deco-w: clamp(84px, 22vw, 155px); --deco-r: 8deg;   right: -11%; bottom: -1rem;   --deco-o: .8; }

/* Desktop: sobra gutter dos dois lados do `shell`, então as ilustrações
   crescem e entram quase inteiras no quadro. */
@media (min-width: 1100px) {
  .deco--sol            { --deco-w: 210px; right: 2%;   top: calc(var(--header-h) + 2.5rem); }
  .deco--sombrinha      { --deco-w: 240px; left: -1%;   bottom: -3rem; }
  .deco--metais         { --deco-w: 270px; right: -2%;  top: -4rem; }
  .deco--sombrinha-rosa { --deco-w: 230px; left: -2%;   bottom: -2.5rem; }
  .deco--rei-momo       { --deco-w: 240px; left: -2%;   bottom: -4rem; }
  .deco--galo           { --deco-w: 320px; right: -2%;  top: 3rem; }
  .deco--brasao         { --deco-w: 300px; left: 2%;    bottom: 4rem; --deco-o: .5; }
  .deco--lua            { --deco-w: 200px; left: 1%;    right: auto; bottom: 4rem; }
}

/* ---------- 22. REVEAL ---------- */
/* Só esconde o conteúdo se o JS estiver ativo — sem JS, tudo aparece normalmente. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 110ms);
  will-change: opacity, transform;
}
.js [data-reveal].is-revealed { opacity: 1; transform: none; will-change: auto; }

/* ---------- 23. PREFERÊNCIAS / IMPRESSÃO ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; transform: none; }
}

@media (prefers-contrast: more) {
  :root { --color-text-muted: #4A2A26; --color-border: rgba(42, 17, 20, .45); }
}

@media print {
  .site-header, .sticky-cta, .lightbox, .scroll-cue, .marquee, .flags,
  .deco { display: none !important; }
  body { background: #fff; color: #000; }
  .hero { min-height: auto; }
}
