html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


main {
  flex: 1;
}



/* Base reset – ultra light */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
}


/* ================================
   AXISBRAND – FAST HEADER (FIXED)
================================ */

/* HEADER WRAPPER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

/* FULL-WIDTH RED STRIP */


/* HEADER INNER (CONTENT WIDTH CONTROL) */
.header-inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  background: #ffffff;
  position: relative;
}

/* LOGO BLOCK */
.logo-block {
  background: #e32619;
  padding: 18px 28px;
  display: flex;
  align-items: center;

  /* extend red to left screen edge */
  margin-left: calc(-1 * (100vw - 100%) / 2);
  padding-left: calc((100vw - 100%) / 2 + 28px);
}


.logo-block img {
  width: 160px;
  height: 55px;
  display: block;
}

/* DESKTOP NAV */

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding-left: 40px;
}

.nav-link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  position: relative;
}

@media (min-width: 901px) {
  .nav-link:hover::after,
  .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #111;
  }
}
.main-nav {
  margin: 0 auto;
}


/* DROPDOWN */
.has-dropdown {
  position: relative;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

/* ================================
   DESKTOP DROPDOWN – PREMIUM
================================ */

@media (min-width: 901px) {
    
    .mobile-menu {
     display: none;
    }


  .has-dropdown > .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    
    min-width: 260px;
    max-width: 320px;

    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;

    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);

    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;

    z-index: 2000;
  }

  .has-dropdown:hover > .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown li {
    list-style: none;
  }

  .dropdown li a {
    display: block;
    padding: 12px 20px;

    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;

    transition: background 0.2s ease, color 0.2s ease;
  }

  .dropdown li a:hover {
    background: #f5f5f5;
    color: #e32619;
  }
}


/* CTA */
.header-cta {
  background: #e32619;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  margin-left: auto;
  margin-right: 24px;
  white-space: nowrap;
}

/* HAMBURGER */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: 16px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 5px 0;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    

  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .header-inner {
    padding: 0;
  }

  .logo-block {
    margin-left: 0;
    padding: 14px 16px;
  }

  /* MOBILE DROPDOWN MENU */
  .mobile-menu {
    display: block; /* required for animation */
    position: absolute;
    top: 100%;
    right: 0;

    width: 75vw;
    max-width: 320px;

    background: #e32619;
    color: #ffffff;

    border-radius: 0 0 0 14px;
    box-shadow: -12px 20px 40px rgba(0,0,0,0.25);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0.25s;

    z-index: 2000;
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }

  /* MENU LIST */
  .mobile-menu ul {
    list-style: none;
    padding: 5px;
    margin: 0;
  }

  .mobile-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.25);
  }

  .mobile-menu li:last-child {
    border-bottom: none;
    margin-bottom: 4px;
  }

  .mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.3px;
  }

  /* CLOSE BUTTON */
  .mobile-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
  }

/* ============================
   MOBILE CONTACT – CTA BUTTONS
============================ */

.mobile-contact {
  padding: 5px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 16px;
  border-radius: 12px;

  background: linear-gradient(180deg, #ffffff, #f3f3f3);
  color: #e32619;

  font-size: 15px;
  font-weight: 600;
  text-decoration: none;

  box-shadow:
    0 6px 0 rgba(0,0,0,0.15),
    0 10px 20px rgba(0,0,0,0.25);

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Tap / Press effect */
.mobile-contact a:active {
  transform: translateY(3px);
  box-shadow:
    0 3px 0 rgba(0,0,0,0.15),
    0 6px 12px rgba(0,0,0,0.25);
}

/* ICONS */
.mobile-contact a::before {
  content: "";
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Phone icon */
    .mobile-contact a[href^="tel"]::before {
  content: "📞";
  background: none;
}

.mobile-contact a[href^="mailto"]::before {
  content: "✉️";
  background: none;
}


/* ============================
   MOBILE Menu Dropdowns
============================ */

    .mobile-menu .has-dropdown > .dropdown {
    display: none;
    padding-left: 12px;
    margin-top: 6px;
  }

  .mobile-menu .has-dropdown > a {
    position: relative;
    padding-right: 28px;
  }

  /* Arrow indicator */
  .mobile-menu .has-dropdown > a::after {
    content: "▾";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.8;
  }

  /* When parent is active */
  .mobile-menu .has-dropdown.active > .dropdown {
    display: block;
  }

.mobile-menu .dropdown a {
  font-size: 14px;
  padding: 10px 0;
  opacity: 0.9;
}

/* ✅ CLOSE HEADER MOBILE MEDIA QUERY HERE */
}





/* ============================
   FOOTER – NEW GEN DESIGN
============================ */

.site-footer {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #ccc;
  font-size: 14px;
}

/* MAIN FOOTER GRID */
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 40px;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
}

/* BRAND COLUMN */
.footer-logo {
  width: 160px;
  margin-bottom: 14px;
}

.footer-address {
  font-size: 13px;
  margin-bottom: 10px;
  color: #aaa;
}

.footer-contact {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-top: 6px;
  font-weight: 500;
}

.footer-contact:hover {
  color: #e32619;
}

/* LINKS */
.footer-links h4,
.footer-form h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #e32619;
}

/* MINI FORM */
.footer-lead-form input,
.footer-lead-form textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-lead-form textarea {
  height: 70px;
  resize: none;
}

.footer-lead-form button {
  width: 100%;
  background: linear-gradient(135deg, #e32619, #ff3b2f);
  border: none;
  color: #fff;
  padding: 11px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.footer-lead-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(227,38,25,0.35);
}

/* HONEYPOT */
.hp-field {
  display: none !important;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 16px 20px;
  font-size: 13px;
  color: #777;
}

.footer-logo img {
  width: 160px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-success-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);

  background: #ffffff;
  color: #111;
  padding: 22px 28px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);

  font-size: 16px;
  text-align: center;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.footer-success-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Honeypot */
.footer-hp {
  display: none !important;
}


/* ============================
   MOBILE
============================ */

@media (max-width: 900px) {

  .footer-main {
    display: grid;              /* ✅ REQUIRED */
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-contact {
    display: flex;              /* ✅ REQUIRED */
    justify-content: center;
  }

  .footer-logo img {
    width: 140px;
    margin: 0 auto;
  }
  
  /* Reorder footer columns on mobile */
  .footer-form {
    order: 1;
  }

  .footer-brand {
    order: 2;
  }

  .footer-links {
    order: 3;
  }
}


/* ============================
   pop-up form
============================ */

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lead-popup.active {
  display: block;
}

.lead-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.lead-popup-box {
  position: relative;
  max-width: 420px;
  margin: 8vh auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  animation: popupIn 0.35s ease;
}

@keyframes popupIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.lead-popup-box h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.lead-popup-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.lead-popup-box input,
.lead-popup-box textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.lead-popup-box textarea {
  resize: none;
  height: 100px;
}

.lead-popup-box button {
  width: 100%;
  background: #e32619;
  color: #fff;
  border: none;
  padding: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

.lead-popup-box button:hover {
  background: #c71f14;
}

.form-status {
  margin-top: 10px;
  font-size: 14px;
}
.hp-field {
  display: none !important;
}
.popup-header {
  background: #e32619;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -32px -32px 20px -32px;
}

.popup-header span {
  font-size: 16px;
  font-weight: 600;
}

.lead-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #ffffff;
  font-size: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-close:hover {
  background: rgba(255,255,255,0.3);
}

.popup-subtext {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.success-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);

  background: #ffffff;
  color: #111;
  padding: 22px 28px;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);

  font-size: 16px;
  text-align: center;
  z-index: 10000;

  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
}

.success-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}


/* =========================
   ABOUT HERO
========================= */

.about-hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#000;
  color:#fff;
  font-family:'Inter',sans-serif;
}

/* ================= MEDIA ================= */

.about-hero-media{
  position:absolute;
  inset:0;
  z-index:1;
}

.about-hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.65) contrast(1.05);
}

/* ================= OVERLAY ================= */

.about-hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;

  background:
  radial-gradient(circle at 70% 40%,
  rgba(227,38,25,.45),
  transparent 60%),

  linear-gradient(
    180deg,
    rgba(0,0,0,.65),
    rgba(0,0,0,.95)
  );
}

/* GRID EFFECT */

.about-hero-grid{
  position:absolute;
  inset:0;
  z-index:3;

  background-image:
  linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);

  background-size:80px 80px;

  mask-image:
  radial-gradient(circle at center,
  black 45%,
  transparent 80%);
}

/* ================= CONTENT ================= */

.about-hero-content{
  position:relative;
  z-index:5;
  max-width:1100px;
  padding:0 6vw;
}

.about-eyebrow{
  color:#e32619;
  letter-spacing:2px;
  font-size:13px;
  text-transform:uppercase;
  margin-bottom:18px;
  display:inline-block;
}

/* TITLE */

.about-title{
  font-size:clamp(36px,6vw,64px);
  font-weight:800;
  line-height:1.1;
  margin-bottom:26px;
}

.about-title span{
  color:#e32619;
  display:block;
  margin-top:10px;
}

/* TEXT */

.about-intro{
  max-width:650px;
  font-size:18px;
  line-height:1.7;
  color:#cccccc;
}

.about-intro-sub{
  margin-top:14px;
  font-size:18px;
  font-weight:600;
}

/* ================= CTA ================= */

.about-cta{
  margin-top:40px;
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.btn-outline-light{
  padding:14px 30px;
  border:1px solid rgba(255,255,255,.5);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:.35s;
}

.btn-outline-light:hover{
  background:#e32619;
  border-color:#e32619;
  transform:translateY(-2px);
}

.btn-primary{
  padding:14px 30px;
  background:#e32619;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:.35s;
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(227,38,25,.4);
}

/* ================= SCROLL ================= */

.about-scroll{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  z-index:6;
}

.about-scroll span{
  width:2px;
  height:40px;
  display:block;
  background:linear-gradient(
    to bottom,
    transparent,
    #e32619,
    transparent
  );
  animation:scrollPulse 2s infinite;
}

@keyframes scrollPulse{
  0%{opacity:0;transform:translateY(-10px);}
  50%{opacity:1;}
  100%{opacity:0;transform:translateY(10px);}
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .about-hero{
    min-height:92vh;
  }

  .about-hero-content{
    padding:0 24px;
  }

  .about-title{
    font-size:clamp(30px,8vw,44px);
  }

  .about-intro{
    font-size:16px;
  }

  .about-cta{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* =====================================
   AXISBRAND ABOUT SECTION (SCOPED)
===================================== */

.ab-about-section{
  position:relative;
  background:#ffffff;
  padding:140px 0;
  overflow:hidden;
}

/* Background */
.ab-about-bg{
  position:absolute;
  inset:0;
  z-index:1;
}

.ab-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size:90px 90px;
}

.ab-glow{
  position:absolute;
  width:600px;
  height:600px;
  background:radial-gradient(circle,
    rgba(227,38,25,0.12),
    transparent 70%);
  top:25%;
  left:50%;
  transform:translateX(-50%);
  filter:blur(90px);
}

/* Container */
.ab-container{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
  padding:0 6vw;
}

/* Header */
.ab-header{
  text-align:center;
  margin-bottom:90px;
}

.ab-eyebrow{
  color:#e32619;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.ab-heading{
  font-size:clamp(34px,5vw,56px);
  font-weight:800;
  line-height:1.2;
  margin-top:20px;
  color:#111;
}

.ab-heading span{
  color:#e32619;
}

/* Grid */
.ab-story-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:50px;
}

/* Cards */
.ab-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  padding:40px;
  border-radius:12px;
  transition:.45s ease;
  transform:translateY(40px);
  opacity:0;
}

.ab-card h3{
  font-size:22px;
  margin-bottom:12px;
  color:#111;
}

.ab-card p{
  font-size:16px;
  line-height:1.7;
  color:#555;
}

.ab-card:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* Highlight */
.ab-highlight{
  border-color:#e32619;
  box-shadow:0 20px 60px rgba(227,38,25,0.12);
}

/* Dark Card */
.ab-dark{
  background:#111;
}

.ab-dark h3,
.ab-dark p{
  color:#fff;
}

/* Signature */
.ab-signature{
  text-align:center;
  margin-top:120px;
  font-size:22px;
  color:#111;
  line-height:1.6;
}

.ab-signature strong{
  color:#e32619;
}

/* Responsive */
@media(max-width:900px){

  .ab-story-grid{
    grid-template-columns:1fr;
  }

  .ab-about-section{
    padding:100px 0;
  }

}
