@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;900&display=swap');

/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'Arboria';
  src: url('../webfonts/Arboria-Book.ttf') format('truetype'),
       url('../webfonts/Arboria-Book.woff2') format('woff2');
  font-weight: 300;
}
@font-face {
  font-family: 'Teko';
  src: url('../webfonts/teko.woff2') format('woff2'),
       url('../webfonts/teko.woff') format('woff'),
       url('../webfonts/teko.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #b36916;
  --red-dark: #915612;
  --black:    #0a0a0a;
  --dark:     #111111;
  --dark2:    #1a1a1a;
  --gray:     #888888;
  --light:    #f0ede8;
  --white:    #ffffff;
}

html { scroll-behavior: smooth; }

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

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

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
nav.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 16px 48px;
}
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--red); transform: scaleX(0); transition: transform 0.25s ease; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 9px 20px; border-radius: 2px; font-weight: 700 !important; letter-spacing: 0.1em; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; }

/* BURGER */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s ease; border-radius: 1px; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MENU MOBILE */
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 199; background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.08); padding: 16px 20px 24px; flex-direction: column; gap: 2px; transform: translateY(-8px); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; pointer-events: none; }
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a { display: block; padding: 12px 14px; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); border-left: 2px solid transparent; transition: all 0.2s; border-radius: 0 2px 2px 0; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--white); border-left-color: var(--red); background: rgba(255,255,255,0.03); }
.mobile-menu .mobile-cta { display: block; margin-top: 10px; padding: 13px 14px; background: var(--red); color: var(--white) !important; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-align: center; border-radius: 2px; border-left: none !important; }

/* ============================================================
   PAGE HERO — BASE
   ============================================================ */
.page-hero { position: relative; padding: 180px 48px 100px; overflow: hidden; }
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #110a02 50%, #0a0a0a 100%);
}
.page-hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent);
}
.page-hero-content { position: relative; z-index: 2; max-width: 780px; }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.6s 0.2s ease forwards;
}
.page-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--red); }
.page-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.9; letter-spacing: 0.02em; color: var(--white);
  margin-bottom: 20px;
}
.page-title .line { display: block; overflow: hidden; }
.page-title .line span { display: block; opacity: 0; transform: translateY(100%); animation: slideUp 0.7s ease forwards; }
.page-title .line:nth-child(1) span { animation-delay: 0.35s; }
.page-title .line:nth-child(2) span { animation-delay: 0.5s; color: var(--red); }
.page-subtitle {
  font-size: 15px; color: rgba(255,255,255,0.45);
  line-height: 1.6; max-width: 500px;
  opacity: 0; animation: fadeUp 0.6s 0.8s ease forwards;
}

/* ============================================================
   BANDE CTA
   ============================================================ */
.cta-band {
  padding: 80px 48px; background: var(--red);
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(36px, 4vw, 60px);
  letter-spacing: 0.02em; color: var(--white); line-height: 1;
}
.cta-title span { color: rgba(255,255,255,0.5); }
.btn-white {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white); color: var(--red);
  padding: 16px 32px; border-radius: 2px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; white-space: nowrap;
  transition: all 0.25s; cursor: pointer;
}
.btn-white:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark); padding: 60px 48px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end;
}
.footer-logo {
  font-family: 'Teko', sans-serif;
  font-size: 32px; letter-spacing: 0.08em; color: var(--white); margin-bottom: 12px;
}
.footer-logo span { color: var(--red); }
.footer-logo img { height: 34px; width: auto; margin-bottom: 14px; opacity: 0.8; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); max-width: 320px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: all 0.2s;
}
.social-btn svg { display: block; flex-shrink: 0; }
.social-btn:hover { border-color: var(--red); color: var(--red); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-copy a { color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-copy a:hover, .footer-copy a.active { color: var(--red); }

/* ============================================================
   ANIMATIONS & REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   RESPONSIVE COMMUN
   ============================================================ */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .page-hero { padding: 140px 24px 64px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 48px 24px; }
  footer { grid-template-columns: 1fr; padding: 40px 24px; }
}
