/* ============================================================
   EXPAND MEDIA — SHARED NAV, FOOTER & MODAL
   ============================================================ */

/* NAV */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}
.site-nav.scrolled,
body[data-solid-nav="true"] .site-nav {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 24px;
}
.nav-logo-img { flex-shrink: 0; display: flex; align-items: center; text-decoration: none; }
.nav-logo-img img { height: 34px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: #FF231B;
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-partner-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-partner-logo img {
  height: 44px; width: auto; display: block; object-fit: contain;
  opacity: 0.88; transition: opacity 0.2s;
}
.nav-partner-logo:hover img { opacity: 1; }

.nav-cta {
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: #FF231B; border: none;
  padding: 10px 20px; cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background 0.15s;
}
.nav-cta:hover { background: #CC1A14; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 40px 28px;
  flex-direction: column;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06); transition: color 0.2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: #FF231B; }
.nav-mobile .nav-cta-mobile {
  margin-top: 18px; background: #FF231B; color: #fff; text-align: center;
  padding: 14px 24px; border: none;
  font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; display: block; width: 100%; transition: background 0.15s;
}
.nav-mobile .nav-cta-mobile:hover { background: #CC1A14; }

@media (max-width: 1100px) {
  .nav-partner-logo img { height: 36px; }
  .nav-links { gap: 18px; }
  .site-nav { padding: 0 24px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .nav-mobile { padding: 20px 24px 28px; }
}

/* FOOTER */
.site-footer { background: #0A0A0A; border-top: 3px solid #FF231B; padding: 3rem 8rem; font-family: 'Barlow', sans-serif; }
.site-footer-inner { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; }
.site-footer-logo-link { display: inline-block; }
.site-footer-logo { height: 38px; width: auto; display: block; }
.site-footer-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }
.site-footer-nav { display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer-nav-title { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: #FF231B; margin-bottom: 0.5rem; }
.site-footer-nav a { font-size: 0.88rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.site-footer-nav a:hover { color: #fff; }
.site-footer-right { text-align: right; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer-detail { font-size: 0.9rem; font-weight: 500; color: #fff; }
.site-footer-detail a { color: #fff; text-decoration: none; transition: color 0.2s; }
.site-footer-detail a:hover { color: #FF231B; }
.site-footer-bottom { max-width: 1400px; margin: 1.75rem auto 0; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.site-footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.site-footer-link { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.site-footer-link:hover { color: #FF231B; }
@media (max-width: 900px) {
  .site-footer { padding: 2.5rem 24px; }
  .site-footer-inner { flex-direction: column; gap: 2rem; }
  .site-footer-right { text-align: left; }
  .site-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* MODAL */
#contact-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.82); backdrop-filter: blur(6px); }
.modal-box { position: relative; background: #1A1A1A; width: 100%; max-width: 620px; max-height: 92vh; overflow-y: auto; z-index: 1; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.15) transparent; }
.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
.modal-header { padding: 36px 40px 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.modal-label { display: block; font-family: 'Barlow', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: #FF231B; margin-bottom: 10px; }
.modal-header h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: clamp(1.6rem,3vw,2.4rem); color: #fff; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1; margin: 0; }
.modal-header h3 span { color: #FF231B; }
.modal-body { padding: 0; }
.modal-close { position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; color: #fff; transition: background 0.2s, border-color 0.2s; }
.modal-close:hover { background: #FF231B; border-color: #FF231B; }
@media (max-width: 768px) { .modal-header { padding: 28px 20px 20px; } }
