/* PROPOSTA 03 — EDITORIAL PRIME — Barra Prime Offices / ArtBarra Imóveis RJ
   Paleta: preto azulado, marfim, vinho sutil, cinza-pedra
   Fontes: Cormorant Garamond (títulos editoriais) + Montserrat (corpo/dados)
   Direção: ultra premium, minimalismo editorial, silêncio visual, respiro generoso
*/

/* ===== RESET E VARIÁVEIS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #14181C;
  --ink-soft:   #1E242A;
  --ivory:      #F1ECE3;
  --ivory-mid:  #E9E2D4;
  --white:      #FFFFFF;
  --wine:       #7A1F2B;
  --wine-light: #9C3A46;
  --stone:      #8A8580;
  --text-dark:  #14181C;
  --text-mid:   #4B4F53;
  --text-light: #8A8580;
  --header-h:   84px;
  --artbarra-cream:  #F5F0EC;
  --artbarra-red:    #7B0000;
  --artbarra-red-tx: #3D1212;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

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

/* ===== WATERMARK via ::after (todas as fotos, canto inferior direito) ===== */
.photo-frame {
  position: relative;
  overflow: hidden;
  display: block;
  line-height: 0;
  background: #cfc8ba;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
.photo-frame:hover img { transform: scale(1.03); }

/* SUBSTITUIR PELA LOGO DEFINITIVA SE HOUVER VERSÃO COM FUNDO TRANSPARENTE */
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../NOVO_BARRA/LOGOTIPOS_MARCA_DAGUA/LOGOTIPO_MARCADAGUA.jpeg') center / 65% auto no-repeat;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
.gallery-item { cursor: zoom-in; }

/* ===== HEADER — padrão ArtBarra (mesmo topo usado no deploy_definitivo) ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--artbarra-cream);
  z-index: 1000;
  border-bottom: 2px solid var(--artbarra-red);
  transition: box-shadow 0.4s;
}
.header.scrolled {
  box-shadow: 0 8px 28px rgba(123, 0, 0, 0.14);
}
.header-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-wordmark {
  display: flex;
  align-items: baseline;
  gap: 7px;
  line-height: .9;
}
.brand-wordmark-small {
  font-family: 'Pinyon Script', cursive;
  font-size: 20px;
  color: var(--artbarra-red);
}
.brand-wordmark-large {
  font-family: 'Pinyon Script', cursive;
  font-size: 40px;
  color: var(--artbarra-red);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav-link {
  color: var(--artbarra-red-tx);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-link:hover { color: var(--artbarra-red); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  background: var(--white);
  padding: 10px 12px;
  margin-top: 12px;
  border-radius: 4px;
  border-top: 2px solid var(--artbarra-red);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  box-shadow: 0 8px 24px rgba(123,0,0,0.18);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-menu a {
  color: var(--artbarra-red-tx);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 9px;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-dropdown-menu a:hover { color: var(--artbarra-red); }

.wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--artbarra-red);
  color: var(--artbarra-red);
  text-decoration: none;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, transform 0.15s;
  flex-shrink: 0;
}
.wa-btn:hover {
  background: var(--artbarra-red);
  border-color: var(--artbarra-red);
  color: var(--white);
  transform: translateY(-1px);
}
.wa-number { font-size: 14px; }
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--artbarra-red);
  transition: all 0.25s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 94vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-frame {
  position: absolute;
  inset: 0;
  height: 100%;
}
/* Hero fica sem marca d'água — aplicada apenas nas fotos de galeria/exibição */
.hero-frame::after { content: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 24, 28, 0.90) 0%,
    rgba(20, 24, 28, 0.48) 42%,
    rgba(20, 24, 28, 0.12) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px 88px;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.8;
  margin-bottom: 22px;
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}
.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--wine-light);
  margin-bottom: 24px;
}
.hero-caption {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: rgba(241, 236, 227, 0.75);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-block;
  text-decoration: none;
  padding: 15px 36px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, transform 0.2s, border-color 0.3s;
}
.hero-cta--ghost {
  border: 1px solid rgba(241, 236, 227, 0.55);
  color: var(--white);
}
.hero-cta--ghost:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}
.hero-cta--solid {
  background: var(--wine);
  border: 1px solid var(--wine);
  color: var(--white);
}
.hero-cta--solid:hover {
  background: var(--wine-light);
  border-color: var(--wine-light);
  transform: translateY(-2px);
}

/* ===== INTRO SECTION ===== */
.intro-section {
  background: var(--white);
  padding: 130px 0;
}
.intro-section .container { max-width: 780px; }
.intro-p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 32px;
  font-weight: 300;
  text-align: center;
}
.intro-p--lead {
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--text-dark);
  font-weight: 400;
}
.intro-p--em {
  font-style: italic;
  color: var(--wine);
  font-weight: 400;
}
.intro-rule {
  width: 40px;
  height: 1px;
  background: var(--wine);
  margin: 44px auto;
  opacity: 0.6;
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 18px;
}

/* ===== DATA SECTION ===== */
.data-section {
  background: var(--ink);
  padding: 64px 0;
}
.data-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.data-row.in-view { opacity: 1; transform: translateY(0); }
.data-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 52px;
  text-align: center;
}
.data-sep {
  width: 1px;
  height: 60px;
  background: rgba(122, 31, 43, 0.35);
}
.data-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
}
.data-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 10px;
  max-width: 160px;
}

/* ===== CONDO SECTION ===== */
.condo-section { background: var(--ivory); }
.condo-intro { padding: 120px 0 60px; }
.condo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 32px;
}
.condo-text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 600px;
  margin-bottom: 16px;
}
.condo-hero-photo { height: 62vh; min-height: 420px; }
.condo-text-block {
  padding: 70px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.condo-text-block.in-view { opacity: 1; transform: translateY(0); }
.condo-text-block .res-text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.condo-second-photo { height: 56vh; min-height: 380px; margin-bottom: 0; }

/* ===== MALL SECTION ===== */
.mall-section {
  background: var(--white);
  padding: 120px 0 0;
}
.mall-section .container { max-width: 720px; text-align: center; margin-bottom: 70px; }
.mall-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 10px 0 28px;
}
.mall-title em { color: var(--wine); font-style: italic; }
.mall-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
}
.mall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.mall-grid .photo-frame { height: 260px; position: relative; }
.mall-grid .photo-frame:nth-child(5) { grid-column: span 1; }
.mall-caption {
  position: absolute;
  left: 0; bottom: 0; right: 0;
  padding: 22px 16px 12px;
  background: linear-gradient(to top, rgba(20,24,28,0.82), rgba(20,24,28,0));
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 1;
}

/* ===== INFRA SECTION ===== */
.infra-section {
  background: var(--ivory-mid);
  padding: 120px 0 0;
}
.infra-section .container { max-width: 720px; text-align: center; margin-bottom: 70px; }
.infra-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 10px 0 28px;
}
.infra-title em { color: var(--wine); font-style: italic; }
.infra-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
}
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.infra-grid .photo-frame { height: 380px; position: relative; }

/* ===== SALAS SECTION ===== */
.salas-section { background: var(--ink); padding-bottom: 0; }
.salas-intro {
  text-align: center;
  padding: 120px 0 70px;
  max-width: 720px;
}
.salas-section .section-label { color: var(--wine-light); }
.salas-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin: 10px 0 24px;
}
.salas-title em { color: var(--wine-light); font-style: italic; }
.salas-text {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 48px;
}
.salas-index {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.salas-index a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(241, 236, 227, 0.25);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}
.salas-index a:hover {
  border-color: var(--wine-light);
  background: rgba(122, 31, 43, 0.18);
}
.salas-index a span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--ivory);
}

.sala-block { position: relative; }
.sala-photo {
  height: 88vh;
  min-height: 520px;
  position: relative;
}
.sala-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,24,28,0.86) 0%, rgba(20,24,28,0.30) 45%, rgba(20,24,28,0.05) 100%);
  z-index: 1;
}
.sala-photo-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 0 48px 64px;
  max-width: 1120px;
  margin: 0 auto;
}
.sala-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--wine-light);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.sala-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.sala-body {
  padding: 70px 48px 96px;
  max-width: 780px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.sala-body.in-view { opacity: 1; transform: translateY(0); }
.sala-desc {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 44px;
  font-style: italic;
}
.sala-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sala-gallery .photo-frame { height: 320px; }
.gallery-placeholder {
  height: 320px;
  border: 1px dashed rgba(241, 236, 227, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.gallery-placeholder span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(241, 236, 227, 0.35);
  padding: 0 20px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--white);
  padding: 130px 0;
}
.cta-inner { text-align: center; }
.cta-pre {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 26px;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.1;
}
.cta-sub {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 52px;
}
.cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--wine);
  color: var(--white);
  text-decoration: none;
  padding: 17px 46px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.15s;
}
.cta-wa:hover { background: var(--wine-light); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  padding: 56px 0 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-brand-chip {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 999px;
  padding: 6px 14px;
  flex-shrink: 0;
}
.footer-brand-chip img { height: 26px; width: auto; display: block; }
.footer-contact-text { text-align: left; }
.footer-contact-text p {
  font-size: 13px;
  color: var(--ivory);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.footer-wa-link {
  color: var(--wine-light);
  text-decoration: none;
  font-size: 13px;
}
.footer-wa-link:hover { color: var(--ivory); }
.footer-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--ivory);
  letter-spacing: 0.02em;
  padding-top: 8px;
  border-top: 1px solid rgba(241, 236, 227, 0.12);
  max-width: 520px;
}
.footer-disclaimer {
  font-size: 10.5px;
  color: var(--stone);
  line-height: 1.7;
  max-width: 640px;
  opacity: 0.75;
  margin-top: 8px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 28, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-body {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}
.lightbox-body img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}
/* SUBSTITUIR PELA LOGO DEFINITIVA SE HOUVER VERSÃO COM FUNDO TRANSPARENTE */
.lightbox-body::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(70px, 15%, 150px);
  height: clamp(70px, 15%, 150px);
  background: url('../NOVO_BARRA/LOGOTIPOS_MARCA_DAGUA/LOGOTIPO_MARCADAGUA.jpeg') no-repeat center / contain;
  opacity: 0.65;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 3;
}
.lightbox-close {
  position: absolute;
  top: -50px; right: 0;
  background: none;
  border: 1px solid rgba(241, 236, 227, 0.30);
  color: rgba(241, 236, 227, 0.80);
  font-size: 16px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox-close:hover {
  border-color: var(--wine-light);
  color: var(--wine-light);
}

/* ===== FADE-IN GENÉRICO ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .mall-grid { grid-template-columns: repeat(3, 1fr); }
  .infra-grid { grid-template-columns: 1fr 1fr; }
  .infra-grid .photo-frame:last-child { grid-column: span 2; }
  .data-item { padding: 0 30px; }
}
@media (max-width: 900px) {
  .nav-dropdown-menu { left: auto; right: 0; transform: none; }
}
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--artbarra-cream);
    padding: 24px 32px;
    gap: 20px;
    border-top: 1px solid rgba(123, 0, 0, 0.15);
    box-shadow: 0 12px 28px rgba(123,0,0,0.14);
  }
  .nav.open .nav-link { color: var(--artbarra-red-tx); }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    box-shadow: none;
    padding: 10px 0 0;
    margin: 0;
  }
  .menu-btn { display: flex; }
  .wa-number { display: none; }
  .wa-btn { padding: 10px 14px; }
  .hero-content { padding: 0 28px 60px; }
  .hero-title { font-size: clamp(44px, 13vw, 76px); }
  .hero-actions { flex-direction: column; }
  .container { padding: 0 24px; }
  .data-row { flex-direction: column; gap: 24px; }
  .data-sep { width: 40px; height: 1px; }
  .data-item { padding: 0; }
  .mall-grid { grid-template-columns: 1fr 1fr; }
  .mall-grid .photo-frame { height: 200px; }
  .infra-grid { grid-template-columns: 1fr; }
  .infra-grid .photo-frame:last-child { grid-column: span 1; }
  .infra-grid .photo-frame { height: 240px; }
  .condo-hero-photo, .condo-second-photo { height: 42vh; min-height: 280px; }
  .sala-photo { height: 70vh; min-height: 420px; }
  .sala-photo-content { padding: 0 24px 44px; }
  .sala-body { padding: 50px 24px 70px; }
  .sala-gallery { grid-template-columns: 1fr; }
  .sala-gallery .photo-frame, .gallery-placeholder { height: 260px; }
  .footer-contact { flex-direction: column; }
  .footer-contact-text { text-align: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 48px; }
  .mall-grid { grid-template-columns: 1fr 1fr; }
  .salas-index a { width: 46px; height: 46px; }
  .header-inner { padding: 0 24px; gap: 16px; }
}
