/* ── VIDCREW SHARED CSS ── */
/* Palette: Black #000, Orange #E63000→#FF6A00, Silver #C0C0C0, Gold #D4A843 */

:root {
  --orange: #FF6A00;
  --orange-dark: #E63000;
  --gold: #D4A843;
  --silver: #9ca3af;
  --silver-light: #C0C0C0;
  --black: #000000;
  --dark: #0a0a0a;
  --border: #1c1c1c;
  --border-light: #2a2a2a;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: 'Barlow Condensed', sans-serif; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6A00, #E63000);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,48,0,0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #333;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ── NAVBAR ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: background 0.3s;
}

header.scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #111;
}

.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo img {
  height: 52px;
  width: auto;
}

.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #FF6A00, #E63000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--silver);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.active {
  color: #FF6A00;
  font-weight: 600;
}

.nav-cta {
  padding: 10px 22px;
  font-size: 13px;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #000;
  border-top: 1px solid #111;
  padding: 20px 24px 28px;
}

.mobile-menu a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--silver);
  border-bottom: 1px solid #111;
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 16px;
  padding: 14px 0;
  text-align: center;
}

.mobile-menu a.btn-primary {
  color: #ffffff !important;
  font-weight: 700;
}

.mobile-menu a.active {
  color: #FF6A00;
  font-weight: 600;
}

.mobile-menu a:hover {
  color: #fff;
}

.mobile-menu.open {
  display: flex;
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 160px 0 80px;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, rgba(230,48,0,0.12), transparent 70%), #000;
  text-align: center;
  border-bottom: 1px solid #111;
}

.page-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  justify-content: center;
}

.page-header .eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.page-header h1 {
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 17px;
  color: var(--silver);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: #000;
  border-top: 1px solid #111;
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #111;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-social a {
  font-size: 14px;
  color: var(--silver);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #333;
}

/* ── WA FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  z-index: 999;
  transition: transform 0.2s;
}

.wa-float:hover {
  transform: scale(1.08);
}

/* ── UTILITIES ── */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.section-title .dim {
  color: #333;
}

.section-head {
  margin-bottom: 64px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
.nav-links, .nav-cta {
    display: none;
  }
  .page-header {
    padding: 100px 0 48px;
  }

  .hamburger {
    display: flex;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section-title {
    font-size: clamp(32px, 8vw, 48px);
  }
  
  .section-head {
    margin-bottom: 32px;
  }
}