/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all .3s ease;
  background: rgba(43,45,49,0.4);
  backdrop-filter: blur(4px);
}
.header.scrolled {
  background: rgba(43,45,49,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img { height: 40px; width: auto; }
.header-nav { display: none; align-items: center; gap: 32px; }
.header-nav a {
  font-size: 14px;
  color: rgba(245,242,237,0.8);
  transition: color .2s ease;
}
.header-nav a:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-whats-header {
  display: none;
  align-items: center;
  padding: 10px 20px;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 14px;
  font-weight: 500;
  transition: box-shadow .3s ease;
}
.btn-whats-header:hover { box-shadow: 0 0 30px rgba(217,119,50,0.18); }
.menu-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--offwhite);
  padding: 8px;
}
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(43,45,49,0.95);
  backdrop-filter: blur(12px);
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu nav a { color: rgba(245,242,237,0.85); font-size: 16px; padding: 4px 0; }
.btn-whats-mobile {
  display: inline-flex;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 640px) {
  .btn-whats-header { display: inline-flex; }
  .btn-whats-mobile { display: none; }
}
@media (min-width: 768px) {
  .header-nav { display: flex; }
  .menu-toggle { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(17,19,21,0.78);
}
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: radial-gradient(circle at 50% 70%, rgba(217,119,50,0.12), transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 20;
  max-width: 960px;
  margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-title {
  font-weight: 800;
  color: var(--offwhite);
  font-size: 40px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--primary); }
.hero-sub {
  font-size: 17px;
  color: rgba(245,242,237,0.8);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.btn-primary, .btn-outline {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 500;
  transition: box-shadow .3s ease, color .2s ease, border-color .2s ease;
}
.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { box-shadow: 0 0 30px rgba(217,119,50,0.18); }
.btn-outline { border: 1px solid rgba(245,242,237,0.4); color: var(--offwhite); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.hero-scroll-hint { margin-top: 64px; display: flex; justify-content: center; color: var(--primary); }

@media (min-width: 640px) {
  .hero-title { font-size: 56px; }
  .hero-ctas { flex-direction: row; }
  .btn-primary, .btn-outline { width: auto; }
}
@media (min-width: 768px) { .hero-title { font-size: 64px; } }
@media (min-width: 1024px) { .hero-title { font-size: 76px; } }

/* ===== Marquee ===== */
.marquee-wrap {
  position: relative;
  overflow: hidden;
  background: var(--background);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
}
.marquee-item {
  display: flex;
  align-items: center;
  color: rgba(245,242,237,0.9);
  font-size: 15px;
  font-weight: 500;
}
.marquee-item span:first-child { padding: 0 24px; }
.marquee-dot { color: var(--primary); font-size: 20px; }
