:root {
  --accent: #e85d04;
  --accent-hover: #f47215;
  --accent-glow: rgba(232,93,4,.15);
  --ink: #0a0e0f;
  --ink-light: #111618;
  --ink-lighter: #1a1f22;
  --text: #e9ecef;
  --muted: rgba(233,236,239,.65);
  --section-pad: clamp(64px, 10vw, 120px);
  --content-max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ======== NAVBAR ======== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  background: rgba(10,14,15,.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: .10em;
  text-transform: uppercase;
}
.brand-name .gray { color: rgba(233,236,239,.5); }
.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-nav:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ======== SHARED SECTION STYLES ======== */
.section {
  padding: var(--section-pad) 28px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.section-body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
}
.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,93,4,.2), transparent);
  max-width: var(--content-max);
  margin: 0 auto;
}

/* ======== INLINE CTA ======== */
.inline-cta {
  text-align: center;
  padding: 32px 28px 0;
}
.inline-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  background: transparent;
  color: var(--accent);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(232,93,4,.35);
  border-radius: 6px;
  transition: background .2s, color .2s, transform .2s;
}
.inline-cta a:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
}
.inline-cta a:active { transform: translateY(0); }

/* ======== FOOTER ======== */
.site-footer {
  background: #050708;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 40px 36px;
}
.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(233,236,239,.35);
  letter-spacing: .04em;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(233,236,239,.45);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(233,236,239,.5);
}
.footer-location svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  stroke: rgba(233,236,239,.4);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ======== SCROLL REVEAL ======== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======== ENTRANCE ANIMATIONS ======== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.anim { opacity: 0; animation: fadeUp .8s cubic-bezier(.16,1,.3,1) forwards; }
.anim-d1 { animation-delay: .15s; }
.anim-d2 { animation-delay: .3s; }
.anim-d3 { animation-delay: .5s; }
.anim-d4 { animation-delay: .65s; }
.anim-d5 { animation-delay: .8s; }
.anim-fade { opacity: 0; animation: fadeIn .6s ease forwards; }

/* ======== FOCUS ======== */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ======== HAMBURGER ======== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-link-cta { display: none; }

/* ======== SHARED RESPONSIVE ======== */
@media (max-width: 820px) {
  .navbar { padding: 0 16px; }
  .hamburger { display: block; }
  .btn-nav { display: none; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,14,15,.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 16px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
  }
  .nav-link-cta { display: list-item; }
  .nav-link-cta a {
    color: var(--accent);
    font-weight: 700;
  }
}
@media (max-width: 820px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-right {
    align-items: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .navbar { height: 56px; padding: 0 12px; }
  .nav-links { top: 56px; }
  .brand-name { font-size: 13px; }
  .brand img { width: 32px; height: 32px; }
  .btn-nav { padding: 8px 16px; font-size: 12px; }
  .section { padding-left: 16px; padding-right: 16px; }
}
