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

:root {
    --font-base-size: 1rem; /* ~16px */
    
    /* Scale Factors */
    --scale-heading: 1.200;    /* Minor Third for Standard Headings */
    --scale-display: 1.618;    /* Golden Ratio for Display Headings */

    /* --- 1. Standard Headings (Minor Third Scale) --- */
    /* Base sizes computed linearly, using clamp to ensure fluidity on mobile */
    --fs-p:    clamp(1rem, 0.95rem + 0.25vw, 1.125rem); /* ~16px - 18px */
    
    --fs-h6:   calc(var(--font-base-size) * var(--scale-heading)); /* ~19.2px */
    --fs-h5:   calc(var(--fs-h6) * var(--scale-heading));          /* ~23px */
    --fs-h4:   calc(var(--fs-h5) * var(--scale-heading));          /* ~27.6px */
    --fs-h3:   calc(var(--fs-h4) * var(--scale-heading));          /* ~33.2px */
    --fs-h2:   calc(var(--fs-h3) * var(--scale-heading));          /* ~39.8px */
    --fs-h1:   calc(var(--fs-h2) * var(--scale-heading));          /* ~47.8px */

    /* --- 2. Display Headings (Golden Ratio Scale) --- */
    /* To prevent Display 1 from blowing up on mobile, we clamp the baseline */
    --display-base: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem); 

    --fs-display-6: calc(var(--display-base) * var(--scale-display)); /* ~39px */
    --fs-display-5: calc(var(--fs-display-6) * var(--scale-display)); /* ~63px */
    --fs-display-4: calc(var(--fs-display-5) * var(--scale-display)); /* ~102px */
    --fs-display-3: calc(var(--fs-display-4) * var(--scale-display)); /* ~166px */
    --fs-display-2: calc(var(--fs-display-3) * var(--scale-display)); /* ~268px */
    --fs-display-1: calc(var(--fs-display-2) * var(--scale-display)); /* ~434px * Use with caution! */

    --font-family-sans: "Heebo", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-family-heading: var(--font-family-sans);
    
    --line-height-base: 1.6;
    --line-height-heading: 1.2;

    /* --- Global Colors & Palettes --- */
    --body-bg: #161617;
    --body-color: #fff;

    --primary: #161617;
    --secondary: #ffc107;
    --tertiary: #495057;

    /* Accent Colors */
    --accent-1: #ffc107; /* Warning / Gold */
    --accent-2: #dc3545; /* Danger / Red */
    --accent-3: #198754; /* Success / Green */

    /* --- Spacing System (8px / 0.5rem base) --- */
    --spacer-base: 0.5rem; /* 8px */
    --spacer-1: var(--spacer-base);          /* 8px */
    --spacer-2: calc(var(--spacer-base) * 2);  /* 16px */
    --spacer-3: calc(var(--spacer-base) * 3);  /* 24px */
    --spacer-4: calc(var(--spacer-base) * 4);  /* 32px */
    --spacer-5: calc(var(--spacer-base) * 6);  /* 48px */
    --spacer-6: calc(var(--spacer-base) * 8);  /* 64px */
    --spacer-7: calc(var(--spacer-base) * 10); /* 80px */
    --spacer-8: calc(var(--spacer-base) * 12); /* 96px */
    --spacer-9: calc(var(--spacer-base) * 14); /* 112px */
    --spacer-10: calc(var(--spacer-base) * 16);/* 128px */

    /* --- Border Radius --- */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 1rem;
    --border-radius-pill: 50rem;

    /* --- Grid / Container Max Widths --- */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1140px;
    --container-xxl: 1320px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--body-bg);
    color: var(--body-color);
    font-family: var(--font-family-sans);
    font-size: var(--fs-p);
    line-height: var(--line-height-base);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   2. GLOBAL TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    margin-bottom: var(--spacer-2);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    line-height: var(--line-height-heading);
    color: inherit;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }
p  { font-size: var(--fs-p); }

.display-1 {
  font-size: clamp(2.5rem, 10vw, 6rem);
  line-height: 1.1; 
  word-wrap: break-word; 
}
.display-2 {
  font-size: 1.8rem;
  line-height: 1.1; 
  word-wrap: break-word; 
}
.display-4 {
  font-size: clamp(1vw, 3rem, 4rem);
  line-height: 1.1; 
  word-wrap: break-word;
}


/* ==========================================================================
   3. CONTAINERS
   ========================================================================== */
.container, .container-fluid {
    width: 100%;
    padding-right: var(--spacer-3);
    padding-left: var(--spacer-3);
    margin-right: auto;
    margin-left: auto;
}

/* Fluid option remains 100% wide at all viewports */
.container-fluid {
    max-width: 100%;
}

/* Responsive fixed-width containers matching Bootstrap breakpoints */
@media (min-width: 576px)  { .container { max-width: var(--container-sm); } }
@media (min-width: 768px)  { .container { max-width: var(--container-md); } }
@media (min-width: 992px)  { .container { max-width: var(--container-lg); } }
@media (min-width: 1200px) { .container { max-width: var(--container-xl); } }
@media (min-width: 1400px) { .container { max-width: var(--container-xxl); } }

/* ==========================================================================
   4. SPACING UTILITIES (1 to 10)
   ========================================================================== */
/* Margins */
.m-1  { margin: var(--spacer-1); }
.m-2  { margin: var(--spacer-2); }
.m-3  { margin: var(--spacer-3); }
.m-4  { margin: var(--spacer-4); }
.m-5  { margin: var(--spacer-5); }
.m-6  { margin: var(--spacer-6); }
.m-7  { margin: var(--spacer-7); }
.m-8  { margin: var(--spacer-8); }
.m-9  { margin: var(--spacer-9); }
.m-10 { margin: var(--spacer-10); }

.mt-1  { margin-top: var(--spacer-1); } .mb-1  { margin-bottom: var(--spacer-1); }
.mt-2  { margin-top: var(--spacer-2); } .mb-2  { margin-bottom: var(--spacer-2); }
.mt-3  { margin-top: var(--spacer-3); } .mb-3  { margin-bottom: var(--spacer-3); }
.mt-4  { margin-top: var(--spacer-4); } .mb-4  { margin-bottom: var(--spacer-4); }
.mt-5  { margin-top: var(--spacer-5); } .mb-5  { margin-bottom: var(--spacer-5); }
.mt-6  { margin-top: var(--spacer-6); } .mb-6  { margin-bottom: var(--spacer-6); }
.mt-7  { margin-top: var(--spacer-7); } .mb-7  { margin-bottom: var(--spacer-7); }
.mt-8  { margin-top: var(--spacer-8); } .mb-8  { margin-bottom: var(--spacer-8); }
.mt-9  { margin-top: var(--spacer-9); } .mb-9  { margin-bottom: var(--spacer-9); }
.mt-10 { margin-top: var(--spacer-10); }.mb-10 { margin-bottom: var(--spacer-10); }

.ms-1  { margin-left: var(--spacer-1); }  .me-1  { margin-right: var(--spacer-1); }
.ms-2  { margin-left: var(--spacer-2); }  .me-2  { margin-right: var(--spacer-2); }
.ms-3  { margin-left: var(--spacer-3); }  .me-3  { margin-right: var(--spacer-3); }
.ms-4  { margin-left: var(--spacer-4); }  .me-4  { margin-right: var(--spacer-4); }
.ms-5  { margin-left: var(--spacer-5); }  .me-5  { margin-right: var(--spacer-5); }
.ms-6  { margin-left: var(--spacer-6); }  .me-6  { margin-right: var(--spacer-6); }
.ms-7  { margin-left: var(--spacer-7); }  .me-7  { margin-right: var(--spacer-7); }
.ms-8  { margin-left: var(--spacer-8); }  .me-8  { margin-right: var(--spacer-8); }
.ms-9  { margin-left: var(--spacer-9); }  .me-9  { margin-right: var(--spacer-9); }
.ms-10 { margin-left: var(--spacer-10); } .me-10 { margin-right: var(--spacer-10); }

/* Paddings */
.p-1  { padding: var(--spacer-1); }
.p-2  { padding: var(--spacer-2); }
.p-3  { padding: var(--spacer-3); }
.p-4  { padding: var(--spacer-4); }
.p-5  { padding: var(--spacer-5); }
.p-6  { padding: var(--spacer-6); }
.p-7  { padding: var(--spacer-7); }
.p-8  { padding: var(--spacer-8); }
.p-9  { padding: var(--spacer-9); }
.p-10 { padding: var(--spacer-10); }

.pt-1  { padding-top: var(--spacer-1); } .pb-1  { padding-bottom: var(--spacer-1); }
.pt-2  { padding-top: var(--spacer-2); } .pb-2  { padding-bottom: var(--spacer-2); }
.pt-3  { padding-top: var(--spacer-3); } .pb-3  { padding-bottom: var(--spacer-3); }
.pt-4  { padding-top: var(--spacer-4); } .pb-4  { padding-bottom: var(--spacer-4); }
.pt-5  { padding-top: var(--spacer-5); } .pb-5  { padding-bottom: var(--spacer-5); }
.pt-6  { padding-top: var(--spacer-6); } .pb-6  { padding-bottom: var(--spacer-6); }
.pt-7  { padding-top: var(--spacer-7); } .pb-7  { padding-bottom: var(--spacer-7); }
.pt-8  { padding-top: var(--spacer-8); } .pb-8  { padding-bottom: var(--spacer-8); }
.pt-9  { padding-top: var(--spacer-9); } .pb-9  { padding-bottom: var(--spacer-9); }
.pt-10 { padding-top: var(--spacer-10); }.pb-10 { padding-bottom: var(--spacer-10); }

.ps-1  { padding-left: var(--spacer-1); }  .pe-1  { padding-right: var(--spacer-1); }
.ps-2  { padding-left: var(--spacer-2); }  .pe-2  { padding-right: var(--spacer-2); }
.ps-3  { padding-left: var(--spacer-3); }  .pe-3  { padding-right: var(--spacer-3); }
.ps-4  { padding-left: var(--spacer-4); }  .pe-4  { padding-right: var(--spacer-4); }
.ps-5  { padding-left: var(--spacer-5); }  .pe-5  { padding-right: var(--spacer-5); }
.ps-6  { padding-left: var(--spacer-6); }  .pe-6  { padding-right: var(--spacer-6); }
.ps-7  { padding-left: var(--spacer-7); }  .pe-7  { padding-right: var(--spacer-7); }
.ps-8  { padding-left: var(--spacer-8); }  .pe-8  { padding-right: var(--spacer-8); }
.ps-9  { padding-left: var(--spacer-9); }  .pe-9  { padding-right: var(--spacer-9); }
.ps-10 { padding-left: var(--spacer-10); } .pe-10 { padding-right: var(--spacer-10); }

/* Auto Margins */
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

/* ==========================================================================
   5. BORDER RADIUS CLASSES
   ========================================================================== */
.rounded-sm   { border-radius: var(--border-radius-sm); }
.rounded-md   { border-radius: var(--border-radius-md); }
.rounded-lg   { border-radius: var(--border-radius-lg); }
.rounded-xl   { border-radius: var(--border-radius-xl); }
.rounded-pill { border-radius: var(--border-radius-pill); }
.rounded-0    { border-radius: 0; }

/* ==========================================================================
   6. FLEX & GRID ALIGNMENT UTILITIES
   ========================================================================== */
/* Display triggers */
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Horizontal Alignment (Justify Content for Main Axis) */
.justify-content-start   { justify-content: flex-start; }
.justify-content-end     { justify-content: flex-end; }
.justify-content-center  { justify-content: center; }
.justify-content-between { justify-content: space-between; }

/* Vertical Alignment (Align Items for Cross Axis) */
.align-items-start   { align-items: flex-start; }
.align-items-end     { align-items: flex-end; }
.align-items-center  { align-items: center; }
.align-items-baseline{ align-items: baseline; }
.align-items-stretch { align-items: stretch; }

/* Quick Center combinations */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-center {
    display: grid;
    place-items: center;
}

/* ==========================================================================
   7. COLOR UTILITY CLASSES (Optional but highly useful)
   ========================================================================== */
.text-primary   { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent-1  { color: var(--accent-1); }
.text-accent-2  { color: var(--accent-2); }
.text-accent-3  { color: var(--accent-3); }

.bg-primary   { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent-1  { background-color: var(--accent-1); }
.bg-accent-2  { background-color: var(--accent-2); }
.bg-accent-3  { background-color: var(--accent-3); }

/* Text Colors (Black) */
.text-black-0   { color: rgba(0, 0, 0, 0) !important; }
.text-black-10  { color: rgba(0, 0, 0, 0.1) !important; }
.text-black-20  { color: rgba(0, 0, 0, 0.2) !important; }
.text-black-30  { color: rgba(0, 0, 0, 0.3) !important; }
.text-black-40  { color: rgba(0, 0, 0, 0.4) !important; }
.text-black-50  { color: rgba(0, 0, 0, 0.5) !important; } /* Standard Bootstrap */
.text-black-60  { color: rgba(0, 0, 0, 0.6) !important; }
.text-black-70  { color: rgba(0, 0, 0, 0.7) !important; }
.text-black-80  { color: rgba(0, 0, 0, 0.8) !important; }
.text-black-90  { color: rgba(0, 0, 0, 0.9) !important; }
.text-black-100 { color: rgba(0, 0, 0, 1) !important; }

/* Background Colors (Black) */
.bg-black-0   { background-color: rgba(0, 0, 0, 0) !important; }
.bg-black-10  { background-color: rgba(0, 0, 0, 0.1) !important; }
.bg-black-20  { background-color: rgba(0, 0, 0, 0.2) !important; }
.bg-black-30  { background-color: rgba(0, 0, 0, 0.3) !important; }
.bg-black-40  { background-color: rgba(0, 0, 0, 0.4) !important; }
.bg-black-50  { background-color: rgba(0, 0, 0, 0.5) !important; }
.bg-black-60  { background-color: rgba(0, 0, 0, 0.6) !important; }
.bg-black-70  { background-color: rgba(0, 0, 0, 0.7) !important; }
.bg-black-80  { background-color: rgba(0, 0, 0, 0.8) !important; }
.bg-black-90  { background-color: rgba(0, 0, 0, 0.9) !important; }
.bg-black-100 { background-color: rgba(0, 0, 0, 1) !important; }

/* Text Colors (White) */
.text-white-0   { color: rgba(255, 255, 255, 0) !important; }
.text-white-10  { color: rgba(255, 255, 255, 0.1) !important; }
.text-white-20  { color: rgba(255, 255, 255, 0.2) !important; }
.text-white-30  { color: rgba(255, 255, 255, 0.3) !important; }
.text-white-40  { color: rgba(255, 255, 255, 0.4) !important; }
.text-white-50  { color: rgba(255, 255, 255, 0.5) !important; } /* Standard Bootstrap */
.text-white-60  { color: rgba(255, 255, 255, 0.6) !important; }
.text-white-70  { color: rgba(255, 255, 255, 0.7) !important; }
.text-white-80  { color: rgba(255, 255, 255, 0.8) !important; }
.text-white-90  { color: rgba(255, 255, 255, 0.9) !important; }
.text-white-100 { color: rgba(255, 255, 255, 1) !important; }

/* Background Colors (White) */
.bg-white-0   { background-color: rgba(255, 255, 255, 0) !important; }
.bg-white-10  { background-color: rgba(255, 255, 255, 0.1) !important; }
.bg-white-20  { background-color: rgba(255, 255, 255, 0.2) !important; }
.bg-white-30  { background-color: rgba(255, 255, 255, 0.3) !important; }
.bg-white-40  { background-color: rgba(255, 255, 255, 0.4) !important; }
.bg-white-50  { background-color: rgba(255, 255, 255, 0.5) !important; }
.bg-white-60  { background-color: rgba(255, 255, 255, 0.6) !important; }
.bg-white-70  { background-color: rgba(255, 255, 255, 0.7) !important; }
.bg-white-80  { background-color: rgba(255, 255, 255, 0.8) !important; }
.bg-white-90  { background-color: rgba(255, 255, 255, 0.9) !important; }
.bg-white-100 { background-color: rgba(255, 255, 255, 1) !important; }


.img-fluid {max-width: 100%;}
.modifier-home {height: 100%; width: 100%; overflow: hidden;}
.reset-link-white {text-decoration: none; color: #fff;}
.position-absolute {position: absolute;}
.spacing-lg {margin: var(--spacing--5) auto;}

.text-center {text-align: center;}




.align-center {align-items: center;}
.align-x-center { justify-content: center;}

.z-index-top {z-index: 9999;}
.z-index-middle {z-index: 999;}
.z-index-bottom {z-index: 1;}

.fw-bold {font-weight: bolder;}

.grad-section-separator {
  background: linear-gradient(0deg,rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.2) 100%);
}


/* Containers and Construct */

.container-fixed-sm, 
.container-fixed-md, 
.container-fluid,
.container-fixed-img {
  padding: 10vh 20px; 
}

.w-100, 
.col-2--6, 
.col-3--3 {
  width: 100%;
}

.grid-container {
  display: grid;
  width: 100%;
  /* 1 column by default (mobile) */
  gap: 1.5rem; /* Adjust the spacing between items as needed */
}

.g3-col {
  grid-template-columns: repeat(1, minmax(0, 1fr)); 
}
/* Desktop */
@media (min-width: 992px) {
  .g3-col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


.center-xy {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*.center-xy-space-between {
  display: grid; 
  grid-template-columns: 1fr auto 1fr; 
  width: 100vw; 
  align-items: center;
}*/

  /* FOOTER */
  footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #000;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  footer p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

  .footer-links { display: flex; gap: 24px; }

  .footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--white); }


   @media (max-width: 900px) {
    footer { flex-direction: column; align-items: flex-start; }
  }


/* Mobile Optimisations - Desktop & Bigger Display Rules Go here */ 
@media (min-width: 992px) {

.container-fixed-sm {
  padding: 8vh calc(50% - var(--container-sm));
}
.container-fixed-md {
  padding: 8vh calc(50% - var(--container-md));
}
.container-fluid {
  padding: 8vh 0;
}
.container-fixed-img {
  padding: 0vh calc(50% - var(--container-sm));
}
.container-fixed-vh-100 {
  width: 100%;
  height: 100vh;
} 
.row {
  display: flex;
}
.col-2--6 {
  width: 50%;
}
.col-3--3 {
  width: 100%;
  max-width: 450px; /* This keeps it 'contained' on desktop */
  margin-left: 0;   /* Keeps it left-aligned */
}
}



.hda-group {
  transform: translateX(-50%);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.7rem;
  opacity: 0.8;
  color: white;
  text-decoration: none;
}

.quote-btn {
  width: 100%;
}

.btn {
  border-radius: 20px;
  text-decoration: none;
}

/* --- Your Base / Desktop Styles --- */
.commercial-nav {
  position: sticky; 
  width: 100%; 
  top: 0; 
  z-index: 1000;
  min-height: 80px;
  box-sizing: border-box;
}

.center-xy-space-between {
  display: grid; 
  grid-template-columns: auto 1fr; /* Mobile default */
  width: 100%; /* Changed from 100vw to prevent mobile overflow bugs */
  align-items: center;
  justify-content: space-between;
}


  .menu-links ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacer-3);
    text-align: left;
  }
  .menu-links { color: white; } 
  .menu-links a { color: white; text-decoration: none;} /* Keeps links visible */

/* --- Mobile Menu Drawer Styles (< 992px) --- */
@media (max-width: 991px) {
  .nav-menu {
    display: none; /* Hidden by default */
    grid-column: 1 / -1; /* Stretch across the full grid width */
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0;
    text-align: center;
  }

  /* When JS toggles this class, show the menu */
  .nav-menu.active {
    display: flex;
  }

  .menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: white;
    text-align: start;
  }




  /* Hide the "|" text separators on mobile stacking */


  /* Hamburger Icon Styling */
  .nav-toggle {
    display: block;
    justify-self: end;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
  }

  .hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    transition: transform 0.3s ease;
    position: relative;
  }
  .hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
  }
  .hamburger::before { top: -8px; }
  .hamburger::after { bottom: -8px; }

  /* Optional: Fun transform into an 'X' when active */
  .nav-toggle.active .hamburger { background: transparent; }
  .nav-toggle.active .hamburger::before { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.active .hamburger::after { transform: translateY(-8px) rotate(-45deg); }
}
.menu-cta {
  width: 100%;
}
/* --- Desktop Layout Switch (Your Breakpoint) --- */
@media (min-width: 992px) {
  .center-xy-space-between {
    grid-template-columns: 1fr auto 1fr; /* Restores your exact desktop layout */
  }

  .nav-toggle {
    display: none; /* Hide hamburger on desktop */
  }
   .menu-links ul {
    flex-direction: row;
    gap: var(--spacer-2);
  } 
  .nav-menu {
    display: grid;
    grid-template-columns: subgrid; /* Seamlessly aligns with parent grid */
    grid-column: 2 / 4;
    align-items: center;
    width: 100%;
  }

  .menu-cta {
    text-align: end;
  }
}




.bg-glass {
    background-color: rgba(0, 0, 0, 0.45); 
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px); /* Safari support */
    border-bottom: 1px solid rgba(0, 0, 0, 0.25); 
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1); 
}

.card-row {
  display: grid;
  gap: 1.5rem;
}
/* Desktop */
@media (min-width: 992px) {
  .card-row {
    grid-template-columns: 15vw 15vw 15vw 15vw 15vw;
  }
}

.card-stat {
  border: 1px solid black;
  background-color: var(--bg-dark);
  box-shadow: #000;
  height: 100%;
  transition: all .2s ease-in-out;
}
.card-stat-description {
  min-height: 150px;
}
.card-stat-ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.card-stat:hover {
  transform: scale(1.05) translate(0, 10px) rotate(2deg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1)
}










/* End Mobile Rules */




label {
	display: inline-block;
}
input, button, select, optgroup, textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
input:focus, textarea:focus {
  outline: none !important;
  border-color: #719ECE;
  box-shadow: 0 0 10px #719ECE;
}


.form-control {
  width: 100%;
  display: block;
  margin-bottom: var(--spacer-5);
  line-height: 1.5rem;
  background-color: black;
  border-radius: var(--border-radius-lg);
  border: 1px solid black;
  transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
  color: white;
}

.form-control-md {
  padding: var(--spacer-2);
}



.monthly-slider {
  background-color:rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
}
.venue-calculator-container {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 1rem;
}
.venue-selector {
  list-style-type: none;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.venue-selector li {
   
}
.sub-heading-message-nudge-up {
  margin-top: -1rem;
  display: inline-block;
}
.sub-heading-message-message {
  margin-top: 2rem;
  text-transform: uppercase;
  font-size: .8rem;
}

        





.default-font {
  font-family: "Heebo", sans-serif;
}
.montserrat-700 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.momo-trust-display-regular {
  font-family: "Momo Trust Display", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.heebo-300 {
  font-family: "Heebo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.heebo-500 {
  font-family: "Heebo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.heebo-700 {
  font-family: "Heebo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.group-headline {
    font-size: clamp(2.5rem, 10vw, 15rem);
    line-height: 8rem;
    margin-bottom: 3rem;
    opacity: .8;
}



.cta-icons {
    display: grid;
    /* Creates 4 equal columns that stretch to fill the text area */
    grid-template-columns: repeat(4, 1fr); 
    gap: 1.5rem;
    margin: 2rem 0;
    /* Optional: Prevents icons from getting comically large on massive screens */
    max-width: 300px; 
}

.cta-icons .component-icon-spacer {
    /* Circles now scale based on the grid width */
    width: 100%;
    aspect-ratio: 1 / 1; 
    
    background-color: rgba(128, 128, 128, 0.918);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    
    /* Centers the logo inside the circle */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cta-icons .component-icon-spacer img {
    /* Logo stays 60% of the circle size regardless of how big the circle gets */
    width: 70%;
    height: auto;
}

.cta-icons .component-icon-spacer:hover {
    transform: scale(1.1);
}

.small {font-size: 60%;}
.fw-bold {font-weight: bolder;}
.bg-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: #000; }
.bg-layer { position: absolute; width: 100%; height: 100%; background-size: cover; background-position: center; transition: opacity 0.8s ease-in-out; }
.bg-layer::after { content: ''; position: absolute; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 100%); }
#bg-temp { opacity: 0; }

.viewport-container { height: 100vh; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(20px, 8%, 100px); position: relative; z-index: 2; }
.top-location { position: absolute; top: 30px; left: 50%; transform: translateX(-50%); text-transform: uppercase; letter-spacing: 3px; font-size: 0.7rem; opacity: 0.8; z-index: 10; }

.content-box { max-width: 600px; opacity: 1; transform: translateX(0); transition: opacity 0.5s ease, transform 0.5s ease; transition-delay: 0.4s; }
.entity-name {margin-bottom:7px; text-transform: uppercase; display: block; opacity: .8;}
.content-box.changing { opacity: 0; transform: translateX(-30px); transition-delay: 0s; }
.standard-headline { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; line-height: 100%; }
.content-box p { font-size: 1.2rem; line-height: 1.6; opacity: 0.8; margin-bottom: 1.5rem; }

.play-btn { display: inline-block; padding: 14px 35px; background:rgba(255, 255, 255, 0.8); color: #000; text-decoration: none; font-weight: bold; border-radius: 40px; transition: 0.3s; text-transform: uppercase; }
.play-btn:hover { transform: scale(1.05); background:rgba(255, 255, 255, 0.9) ; border-radius: 20px; }

.text-btn { display: inline-block; padding: 14px 35px; color: #fff; text-decoration: none; font-weight: bold; border-radius:0;text-transform: uppercase; transition: 0.3s; }
.text-btn:hover { transform: scale(1.1);}


.pill-nav { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px); padding: 20px; border-radius: 50px; display: flex; flex-direction: column; gap: 15px; border: 1px solid rgba(255,255,255,0.1); }
.nav-item { width: 54px; height: 54px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.nav-item img { max-width: 24px; transition: 0.3s; }
.nav-item:hover, .nav-item.active { background: #fff; transform: scale(1.1); }
.nav-item:hover img, .nav-item.active img { /*filter: invert(1);*/ transform: scale(1.5); }
.nav-hide { display: none; }




.nav-item:hover{
    width: 140px;
    border-radius: 25px;
}


.nav-item:hover, .nav-item.active {
    color: black;
    background: white;
   transform: scale(1.1);
}

 
.nav-item:hover > .nav-hide {
    opacity: 1;
    display: block;

@starting-style {
    opacity: 0;
  }

}
.nav-hide {
  margin-left: 15px;
  display: none;  
  opacity: 0;
  transition: 0.3s allow-discrete, opacity 1s;
  font-size: .6rem;
  font-weight: lighter;
  text-transform: uppercase;
}


@media (max-width: 768px) {
    .viewport-container { flex-direction: column; justify-content: center; text-align: center; }
    .pill-nav { flex-direction: row; margin-top: 40px; }
    .content-box { margin-bottom: 20px; }
     .cta-icons{ justify-content: center;} 
     .group-headline {margin-bottom: 3rem; line-height: 0;}
     
}


/* The track that determines how long the shrink animation lasts */
.hero-wrapper {
  height: 102vh; 
  position: relative;
  width: 100%;
}

.hero-video-shrink {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 0 !important; 
  z-index: 1;
}

.floating-text {
  position: relative;
  z-index: 20;
  color: white;
  max-width: 850px;
  padding: 20px;
  will-change: opacity, transform;
  pointer-events: none; 
}

.bg-layer-shrink {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

@media (max-width: 992px) {
  .hero-wrapper {
    height: auto;
  }
  .hero-video-shrink {
    position: relative;
    height: 100vh;
    width: 100vw !important;
  }
}



.two-col-grid {
  display: grid;
  /* Creates two equal columns with a gap between them */
  grid-template-columns: 1fr 1fr;
  gap: 40px; 
  align-items: center; /* Vertically aligns image and text */
}

/* The "Stacking" Logic */
@media (max-width: 768px) {
  .two-col-grid {
    /* Changes 2 columns into 1 column automatically */
    grid-template-columns: 1fr; 
    gap: 20px;
  }
}

/* Ensure the column itself is constrained */
.col-img {
    width: 100%;
    overflow: hidden; /* This acts like your Figma 'Clip Content' checkbox */
}

/* Force the image to fit inside the column */
.col-img img {
    display: block;
    width: 100%;      /* Always fit the width of the column */
    height: auto;     /* Keep the aspect ratio proportional */
    max-height: 100%; /* Prevents the image from being taller than the column */
    object-fit: cover; /* Maintains the 'filled' look without stretching */
}
.grad-text {
	background-size: 100%;
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
}

.bg-grad-ucontrol {
	background: #833ab4;
	background: linear-gradient(127deg, #833ab4 7%, #cb484b 18%, #fd1d1d 37%, #edaf2b 58%, #fcb045 72%, #44bac6 85%, #833ab4 100%);
}

.ucontrol-grad {
      font-size: 72px;
  background: linear-gradient(127deg, #833ab4 7%, #cb484b 18%, #fd1d1d 37%, #edaf2b 58%, #fcb045 72%, #44bac6 85%, #833ab4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}





.image-wrapper {
  width: 100%;       /* Fills the container */
  overflow: hidden;  /* Prevents image from spilling out */
  
  margin-bottom: rem;
}

.image-wrapper img {
  display: block;    /* Removes extra whitespace under images */
  width: 100%;       /* Forces image to scale with the wrapper */
  height: auto;      /* Maintains the aspect ratio */
  transition: transform 0.3s ease;
}

/* Mobile: Stacked and full width */
.custom-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.custom-stack .col {
  width: 100%;
}

/* Desktop: Bigger side-by-side */
@media (min-width: 768px) {
  .custom-stack {
    flex-direction: row;
    justify-content: center; /* Keeps them centered */
    align-items: flex-end;   /* Aligns the TV bases */
    gap: 40px;               /* Adjust space between the two TVs */
  }

  .custom-stack .col {
    /* This forces the columns to be as large as possible within the container */
    flex: 1; 
    max-width: 600px; /* Limits size so they don't get comically large on ultra-wide monitors */
  }
}

.img-fluid {
  width: 100%; /* Force the image to match the column width */
  height: auto;
  display: block;
}

.format-standard {}
.format-standard h1,
.format-standard h2,
.format-standard h3 {
  /*font-family: "Momo Trust Display", sans-serif;*/
  font-weight: 800;
  font-style: normal;
}

.col-3-parent {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.col-3-parent-1 { grid-area: 1 / 1 / 2 / 2; }
.col-3-parent-2 { grid-area: 1 / 2 / 2 / 3; }
.col-3-parent-3 { grid-area: 1 / 3 / 2 / 4; }

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

.scroll-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  user-select: none;

}
.scroll-navigation-button {
  border: none;
  background-color: transparent;
  padding: 1rem;
  color: white;
  font-size: 3rem;
}


.scroll-nav {
  display: flex;
  gap: 1.6rem;
  padding: 3rem 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-nav::-webkit-scrollbar { display: none; }
.scroll-nav .item { flex: 0 0 auto; }

.card--general {
  position: relative;
  overflow: hidden;
  padding: 3rem 2rem;
  height: 75vh;
  width: 90vw;
  border-radius: 2rem !important;
  cursor: grabbing;
  transition: all .5s;
  display: flex;
  flex-direction: column;
}

.card--general::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* This creates a dark fade from bottom to top */
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
  z-index: 1; /* Sits exactly between the image (1) and text (2) */
  pointer-events: none;
}

.card--general img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.card-text-container--general {
  position: relative;
  z-index: 2;
  pointer-events: none;
  bottom:2rem;
}

.card-text-container--general a { pointer-events: auto; }




  .mini-card-venue-title,
  .mini-card-venue-description {
    margin: var(--spacer-3);
  }
  
  .mini-card-list {
    /*background-color: var(--bg-white-10);*/
    width: 100%;
    list-style-type: none;
  }
  .mini-card-list-item {
    line-height: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacer-3);
    display: flex;
    justify-content: space-between;

  }





@media (min-width: 992px) {
  

  .venue-card-section {
    display: flex;
    align-items: stretch;
    justify-content: end;
  }

  .mini-card-container {
    /*border-radius: var(--border-radius--base);
    border: 1px solid rgba(255, 255, 255, 0.1);*/
    width: 70%;
  }



  
  
  .card--general {
    padding: 5rem;
    height: 60vh;
    width: 40vw;
  }

  .card-text-container--general {
    position: absolute;
    width: 50%;
  }
}

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.card-logo-overlay {
  
  position: absolute;
  
  /* Adjust these values to match your card padding */

  left: 2rem;
  z-index: 3; /* Ensures it sits above the image and gradient */
  
  /* DYNAMIC SCALING */
  /* Min: 60px, Preferred: 15% of card width, Max: 120px */
  width: clamp(3.75rem, 5rem, 7.5rem); 
  pointer-events: none;
}

.card-logo-overlay img {
  width: 100%;
  height: 2rem;
  display: block;
  object-fit: contain;
}

/* Adjust position for Desktop if your padding increases */
@media (min-width: 992px) {
  .card-logo-overlay {
    bottom: 3rem;
    left: 3rem;
  }
}
.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
}
.col-lg-6 {
	flex: 0 0 auto;
	width: 50%;
}

/* Styling for the active list item */
.venue-selector li {
    cursor: pointer;
    padding: 10px;
    list-style: none;
    transition: color 0.3s;
}

.venue-selector li.active {
    font-weight: bold;
    color: var(--accent-1); /* Or your brand color */
    border-left: 3px solid var(--accent-1);
}

/* Fade Effect */
#display-venue {
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
}

.fade-out {
    opacity: 0 !important;
}



.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem; /* Space between logos */
    max-width: 1100px;
    margin: 0 auto;
}

.logo-item img {
    /* CLAMP: Min 100px, Scalable 12vw, Max 160px */
    width: clamp(100px, 12vw, 160px);
    height: auto;
}



.slider-section {
  padding: 2rem 0; /* Vertical padding for breathing room */
  background-color: #11111100; /* Dark background to make the slider pop */
  align-items: center;
}

.slider {
    position: relative;
    /* Change width from 100% to a fixed size or a smaller percentage */
    width: 90%; 
    max-width: 800px; /* This keeps it from getting too huge on desktop */
    
    margin: 0 auto;   /* Now this has 'room' to center the box */
    
    overflow: hidden;
    touch-action: none;
    user-select: none;
}

.slider img {
  width: 100%;
  display: block;
}

/* 2. Style the "After" image to sit on top */
.after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Higher number = closer to your eyes */
    clip-path: inset(0 0 0 50%);
}

/* 3. The "Before" image is our base */
.before {
    position: relative; /* This stays in the 'flow' to give the container height */
    display: block;
    width: 100%;
    z-index: 1; /* Lower number = further away */
}

/* The Vertical Line */
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%; /* Start in the middle */
    width:0.2rem;
    background: #ffffff;
    z-index: 10;
    cursor: col-resize;
    transform: translateX(-50%); /* Centers the 4px line perfectly */
}

/* The White Circle */
.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 2rem;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
