html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  overflow-x: hidden ;
}

@font-face {
  font-family: 'hotRod'; /* You can name this whatever you want */
  src: url('../fonts/hotRod.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/* JS page load */
/* Page fade-in (prevents users from seeing layout shifts) */
html.is-loading body { opacity: 0; }
html.is-ready body  { opacity: 1; transition: opacity .35s ease; }

/* Image & bg-image soft reveal */
img {
  opacity: 0;
  transform: translateY(6px);
  will-change: opacity, transform;
}



html.is-ready img.is-loaded {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease, transform .5s ease;
}

/* (Nice to have) stop all other transitions while loading to avoid weird pops */
html.is-loading * { transition: none !important; animation-play-state: paused !important; }


/* end of JS page load */


body {
  background-color: #000000;
}
/* Keeps the footer at the bottom of the page! */
html, body { height: 100%; }
main {
  flex: 1 0 auto;
}
/* -------------------- */
body.no-scroll {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.service-item {
  background: #f8f8f8;
  padding: 1rem;
  border-radius: 8px;
}
footer {
  text-align: center;
  padding: 1rem;
  background: linear-gradient(to left, rgb(10 10 10 / 70%) 0%, rgba(0, 0, 0, 80%) 50%, rgb(10 10 10 / 70%));
  color: #616365;
  font-family: IBM Plex Sans Condensed, sans-serif;
  font-size: 0.7rem;
  margin-top: auto;
  z-index: 1;
  /* border-top: 1px solid #141414; */
} 
.footer-socials {
  margin-bottom: 0.5rem;
}
.footer-socials .fa-facebook-f {
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
  color: #616365;
}

.footer-socials .fa-instagram {
  font-size: 24px;
  line-height: 1;
  color: #616365;
}

.footer-socials a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #cfd8e3;
}

/* ------------- */
/* Header styles */
.site-header {
  padding: 16px 24px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: transparent;
  box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
  /* border-bottom: 1px solid #141414; */
}

.site-header::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;                      /* behind header content */

  background: linear-gradient(to left,
    rgb(5 5 5) 0%,
    rgb(0 0 0 / 70%) 50%,
    rgb(5 5 5) 100%
  );

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}


.hide-header {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo img {
  height: 64px;
}

.nav-toggle {
  width: 32px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  gap: 5px; /* spacing between bars */
}

.nav-toggle .bar {
  height: 2px;
  width: 100%;
  background-color: #f1f5f9;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Open state */
.nav-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}



.nav-links {
  position: fixed;
  top: 0;
  right: -100%; /* Start off screen */
  height: 100vh;
  width: 250px;
  background: linear-gradient(to left, 
  rgb(5 5 5 / 97%) 0%,
  rgb(5 5 5 / 90%) 20%,
  rgb(5 5 5 / 80%) 40%,
  rgb(5 5 5 / 70%) 60%,
  rgb(5 5 5 / 35%) 80%,
  rgb(5 5 5 / 0%) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 32px;
  transition: right 0.4s ease;
  z-index: 1000;
}

.nav-links a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  letter-spacing: 0.08em;
  color: #b2b2b2;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  transition: color 0.2s ease-in-out;
  display: inline-block;
  position: relative;
  will-change: transform;
  margin: 0 50px 0 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #cfd8e3;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);

}

.nav-links a:hover {
  color: #cfd8e3; /* ← slightly softer gray on hover */
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links.open {
  right: 0; /* Slide in */
}

/* new stuff */
/* place the account icon at the bottom-right of the panel */
.nav-links .nav-account{
  position: absolute;
  right: 50px;
  bottom: 18px;

  /* look/feel to match your links but smaller */
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #b2b2b2;            /* same base color as your links */
  opacity: .9;
  font-size: 0;              /* prevent 40px font-size from your link rule */
  margin: 0;                 /* cancel the global link margin-right:50px */
  text-decoration: none;
  transition: opacity .2s ease;
}

/* stop the underline animation on the icon */
.nav-links .nav-account::after{
  content: none;
}

/* subtle hover to match your link hover color */
.nav-links .nav-account:hover{
  color: #cfd8e3;
  opacity: 1;
}
/* end of new stuff */

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.6); /* dim shadow */
  backdrop-filter: blur(6px); /* optional for extra softness */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 999; /* Below nav panel (z-1000), above rest of page */
  overflow: hidden;
}
.nav-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/images/logo/builttoperform.png);
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;                      /* start hidden */
  transition: opacity 1s ease;   /* fade in with overlay */
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay.open::before {
  opacity: 1;
}

/* -------- */
/* Show.ejs styles */

/* ─── Reveal Animations ─── */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


[data-animate] {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease;
  will-change: opacity, transform; 
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}


.hero-placeholder {
  height: 100vh;    /* matches your fixed hero height */
  pointer-events: none;  /* doesn’t interfere with anything */
}

.container + .container,
    .block,
    .gallery,
    .cta {
      position: relative; 
      z-index: 2;
    }
.cta.reveal {
  padding: 80px 0;
  background-color: #030303;
  /* border: 1px solid #141414; */
}



    .block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: strex  tch;
      height: var(--block-h);
      position: relative;
      z-index: 2;
    }
    .block::before {
      content: "";
      position: absolute;
      inset: 0;             /* cover the whole block */
      background: #030303;  /* solid backdrop */
      z-index: -1;          /* sits behind block content, but above hero */
    }

    .block:first-of-type {
      position: relative;
    }

    .btp-block {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
      height: 15px;
      display: flex;
      align-items: center;
      font-family: "IBM Plex Sans Condensed", "Bebas Neue", sans-serif;
      font-size: 30px;
      letter-spacing: 3px;
      color: rgb(101 97 97 / 24%);  /* subtle gray */
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      z-index: 5;
      text-transform: uppercase;
      text-align: center;
      background: rgba(18, 18, 18, 0.35);
      backdrop-filter: blur(14px) saturate(135%);
      -webkit-backdrop-filter: blur(14px) saturate(135%);
      box-shadow:
        0 6px 18px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.06);
      line-height: 1;
    }

    .btp-block::before{
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 3px;
      background: linear-gradient(
        to right,
        rgba(210,38,34,0),
        #820300d9,
        rgba(210,38,34,0)
      );
      /* box-shadow: 0 0 6px rgba(210,38,34,0.6); */
      pointer-events: none;
    }

    .show-completed .btp-block {
      background: rgba(18, 18, 18, 0.85);
    }

    .show-current .btp-block {
      background: rgba(18, 18, 18, 0.85);
    }


    /* .btp-block::after {
      content: "BUILT TO PERFORM BUILT TO PERFORM BUILT TO PERFORM "
      "BUILT TO PERFORM BUILT TO PERFORM BUILT TO PERFORM BUILT TO PERFORM BUILT TO PERFORM "
      "BUILT TO PERFORM BUILT TO PERFORM BUILT TO PERFORM BUILT TO PERFORM BUILT TO PERFORM "
      "BUILT TO PERFORM BUILT TO PERFORM BUILT TO PERFORM BUILT TO PERFORM BUILT TO PERFORM ";
      position: absolute;
      inset: 0;                 
      display: flex;
      align-items: center;       
      white-space: nowrap;
      width: 200vw;   
      font: inherit;           
      letter-spacing: inherit;
      color: inherit;
      line-height: 1;
      pointer-events: none;
      animation: btp-belt 80s linear infinite;
      will-change: transform;
      transform: translateY(-4%) translateX(-25vw);
    } */
    /* @keyframes btp-belt {
      from { transform: translateY(-4%) translateX(0); }
      to   { transform: translateY(-4%) translateX(-50%); } 
    } */
    @media (prefers-reduced-motion: reduce) {
      .btp-block::after { animation: none !important; }
    }
    .is-home html {
      background: auto;
    }


    .btp-block span {
      margin: 0;
      padding: 0;
    }

    .block-fade {
      background: linear-gradient(to top, #15181d, transparent);
      width: 100%;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50%;
      margin-right: -50%;
    }


/* ——— Info block (combined + simplified) ——— */
/* ——— Info block (combined + simplified, static) ——— */


.block .info {
  position: relative;
  z-index: 3;
  border-right: none;
  height: 100%;
  max-height: 568px;
  display: grid;
  isolation: isolate;
  box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, .55);
  background: linear-gradient(180deg,
    color-mix(in oklab, #575555 51%, #2b2b2b) 0%, #070707 100%);
}

/* thin accent rail on the left */
.block .info::before {
  /* content: ""; it disappear */
  position: absolute;
  inset: calc(10% + 26px) 0 0 auto;
  width: 6px;
  background:  linear-gradient(0deg,
    color-mix(in oklab, #2b2a2a 51%, #474747) 0%,
    color-mix(in oklab, #8f8f8f 51%, transparent) 10%, transparent 100%);
  z-index: 1;
  box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, .55);
}

/* Override for mirrored blocks: rail on the right */
.block.mirror .info::before {
  inset: calc(10% + 26px) 0 0 auto;  /* top:0, right:0, bottom:0, left:auto */
}

/* keep these shared constraints compact */
.info,
.info-inner {
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  box-sizing: border-box;
}

.block .info-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  box-shadow: 0px 0px 10px 2px #030303;
}

/* Section label (compact chip) */
.block .info-inner h2 {
  position: relative;
  z-index: 1;
  margin: 0 0;
  height: 20%;
  padding: 0 30px;
  font-size: clamp(20px, 50px, 50px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  color: #c7c7c7;
  background: linear-gradient(270deg, #070707, transparent);
  /* text-shadow: 0 0 50px #ffffff; */
  display: flex;
  align-items: center;  
  font-weight: 500;
  font-family: Bebas Neue, sans-serif;
}

.block.mirror .info-inner h2 {
  margin: 0 0;
  /* text-shadow: 0 0 50px #ffffff; */
  color: #c7c7c7;
  font-weight: 500;
}


/* remove native bullets and create room for the custom tick */
.info-inner ul {
  list-style: none;
  padding: 30px 20px 20px 48px; /* ← space for the tick */
  background-color: #030303;     /* you already have this */
  font-size: 24px;
  height: 100%;
  margin: 0 0 0 10px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}
/* each li hosts a positioned pseudo for the bar */
.info-inner ul li {
  position: static;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 17px;
  color: #c7c7c7;
}
/* the red bar (matches your ticker dimensions) */
.info-inner ul li::before {
  content: "";
  position: static;
  left: auto;              /* same offset you used on the ticker */
  top: auto;
  width: 4px;
  margin-left: -10px; 
  height: 10px;
  background: #c72828;
  opacity: .9;
  flex: 0 0 4px;
}

/* Scrollbar styling ONLY for the info bullet list */
.info-inner ul::-webkit-scrollbar {
  width: 10px;
}

.info-inner ul::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.25); /* subtle dark track */
}

.info-inner ul::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2); /* muted light thumb */
  transition: background 0.2s ease;
}

.info-inner ul::-webkit-scrollbar-thumb:hover {
  background: #857e7e; /* red accent hover (your brand color) */
}

.info-inner ul::-webkit-scrollbar-track {
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(3px);
}

/* Optional entrance (only when you add data-animate to .info) */
.block .info[data-animate] .info-inner {
  animation: infoIn 420ms cubic-bezier(.22,.61,.36,1) both;
}

/* ready to start your build block */

.btn {
  display: inline-block;
  padding: 10px 16px;
  background: #c72828;
  color: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 
    inset 0 0px 15px 3px rgba(0,0,0,0.4),  /* soft glow */
    0px 0px 12px rgba(0,0,0,0.5); /* angled pop */
}
:root { --cta-red: #c72828; } /* reuse your red */

.btn,
.btn-cta,
button.btn,
button.btn-cta {
  cursor: pointer;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-14deg);
}

.btn:hover::after {
  animation: shine 0.6s forwards;
}

@keyframes shine {
  100% { left: 125%; }
}


.cta-box {
  width: 60%;
  margin: 0 auto;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
  gap: 16px;
  background: #454343;
  border: 1px solid #141414;
  /* box-shadow:
    0 16px 40px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.04); */
  box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, .55);
}
.cta-box {
  background: radial-gradient(
      circle at center,
      rgba(60, 60, 60, 0.6) 0%,   /* soft lighter center */
      rgba(16, 16, 16, 0.85) 60%,  /* dark fade */
      #070707 100%                 /* solid dark edge */
  );
  box-shadow:
    0 16px 40px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.cta-box > .cta-ticker {
  margin-left: -28px;
  margin-right: -28px;
  margin-top: 10px;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: -24px;
}

.cta-heading { grid-column: 1; }
.btn-cta     { grid-column: 2; }
.cta-ticker  { grid-column: 1 / -1; } /* spans full width underneath */

.cta-heading {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 6vw, 55px);
  letter-spacing: 0.06em;
  color: #c7c7c7;
}

/* --- Button variant with red bar sweep --- */
.btn-cta {
  justify-self:flex-end;
  position: relative;
  overflow: hidden;
  isolation: isolate;                 /* keeps the overlay behind text */
  border: none;
  color: #ffffff;                     /* base text color */
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
}

/* red bar present before hover */
.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 0px;
  width: 0px;                        /* the visible red bar */
  background: var(--cta-red);
  z-index: 0;
  transition: width .6s cubic-bezier(.22,.61,.36,1);
  /* transform: skewX(-14deg); */
}

/* keep label above overlay */
.btn-cta > span {
  position: relative;
  z-index: 1;
  font-size: 20px;
}

/* on hover/focus, sweep red to full width */
.btn-cta:hover::before,
.btn-cta:focus-visible::before {
  width: 100%;
}

/* when red covers the button, flip text/border for contrast */
.btn-cta:hover,
.btn-cta:focus-visible {
  color: #fff;
  box-shadow:
    0 16px 40px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.ig-button {
  text-decoration: none;
  background: #833ab4;
  color: #ffffff;
  font-size: clamp(12px, 2.2vw, 24px);
  font-family: "Bebas Neue", sans-serif;
  padding: 10px 16px;
  border-radius: 5px;
  letter-spacing: 1.5px;
  scale: 1;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  will-change: transform, background, box-shadow;
}
.ig-button:hover {
  background: #9c46d5;
  transform: translateY(-2px);
  box-shadow: 0px 0px 20px 4px rgb(120 4 182 / 52%);
}

@media (max-width: 468px) {
  .ig-button {
    padding: 6px 10px;
  }
  
}


/* mobile: make the card full-width and stack nicely */
@media (max-width: 900px) {
  .cta-box {
    width: 80%;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

/* start of cta ticker */

/* —— CTA sliding ticker —— */
.cta-ticker {
  margin-top: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid #141414;
  background: #070707;
  box-shadow:
    0 6px 24px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.04);
}

/* edge fades so items gracefully disappear */
.cta-ticker::before,
.cta-ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.cta-ticker::before {
  left: 0;
  background: linear-gradient(to right, rgba(11,13,16,1), rgba(11,13,16,0));
}
.cta-ticker::after {
  right: 0;
  background: linear-gradient(to left, rgba(11,13,16,1), rgba(11,13,16,0));
}

/* the moving belt */
.ticker {
  display: flex; 
  gap: 11px;               /* space between Track A and B */
  width: max-content;
  animation: ticker-move 30s linear infinite;
  will-change: transform;
}

.cta-ticker .ticker__track {
  flex: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 12px 0;
}

.cta-ticker .ticker__track::after {
  content: "";
  display: block;    
  width: 6px; height: 20px;
  margin-left: -17px;     
  background: #c72828;
  opacity: .9;
  transform: translateY(-5%);
}

/* duplicate tracks so it loops seamlessly */
.ticker__track {
  display: inline-flex;
  gap: 28px;
  padding: 12px 28px;
}

/* items (text now, easy to swap for logos later) */
.tick {
  white-space: nowrap;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .06em;
  color: #c7c7c7;
  font-size: clamp(20px, 28px, 30px);
  text-shadow: 0 2px 4px rgba(0,0,0,.45);
  position: relative;
}

/* small angled accent divider before each item (optional) */
.tick::before {
  content: "";
  position: absolute;
  left: -17px; top: 50%;
  width: 6px; height: 21px;
  background: #c72828;               /* your red accent */
  transform: translateY(-53%);
  opacity: .9;
}
.ticker__track .tick:first-child::before { display: none; }

/* loop: shift by exactly 50% because we have two identical tracks */
@keyframes ticker-move {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* pause for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; }
}

/* end of cta ticker */


@keyframes infoIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .block .info[data-animate] .info-inner { animation: none; }
}

/* Responsive tweak */
@media (max-width: 900px) {
}

    .block .media {
      /* border-left: 1px solid var(--border); */
      overflow: hidden;
      background: #030303;
      height: 100%;
      position: relative;
      z-index: 1;
    }

    .block .media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .block.mirror .info {
      order: 2;
      border-right: 1px solid var(--border);
      border-left: none;
      background:#070707; 
      box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, .55);
      background: linear-gradient(180deg,
        color-mix(in oklab, #575555 51%, #2b2b2b) 0%, #070707 100%);
    }

    .block.mirror .media {
      order: 1;
      border-left: none;
    }
    

    @media (max-width: 900px) {
      .topnav {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }

    

      .full-bleed {
        left: auto;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        width: auto;
      }

      .block {
        grid-template-columns: 1fr;
        height: auto;
      }

      .block .info-inner {
        max-height: none;
        overflow: visible;
      }

      .block .media img {
        aspect-ratio: 16/9;
      }
      .block.mirror .info,
      .block.mirror .media {
        order: 0;
      }
    }
    
    @media (max-width: 600px) {
      .hero-title {
        font-size: 32px;
        padding: 8px 16px;
      }
    }


/* ------------ */
/* Contact Page */


/* ========== Contact: 40/60 split ========== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;            /* ~40% / 60% */
  min-height: clamp(680px, 88vh, 1100px);
  background: #0b0d10;
  /* border-top: 1px solid #232831;
  border-bottom: 1px solid #232831; */
  box-shadow: 0 4px 20px rgba(0,0,0,.35) inset;
  isolation: isolate;
}

/* Left media */
.contact-media {
  position: relative;
  overflow: hidden;
  background-color: #000;
}

/* For video option */
.contact-media .media-video {
  position: absolute;
  inset: 0;
  width: 100%;  
  height: 100%;
  object-fit: cover;
}

/* Right panel */
.contact-panel {
  position: relative;
  padding-bottom: clamp(24px, 5vw, 48px);
  padding-left: clamp(24px, 5vw, 48px);
  padding-right: clamp(24px, 5vw, 48px);
  background: #0b0d10;
  border-left: 1px solid #232831;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: clamp(12px, 2.2vw, 20px);
  margin-top: 100px;
  min-width: 0;
  box-sizing: border-box;
}

.contact-panel > * { 
  max-width: 100%; 
  box-sizing: border-box;
  overflow: hidden;
}
.contact-panel * { box-sizing: border-box; } /* optional but super effective */

/* Heading like the reference */
.contact-header {
  margin-top: 6px;
}
.contact-header h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(34px, 6.4vw, 55px);
  letter-spacing: 2.5px;
  margin: 20px 0 6px 0;
  color: #c7c7c7;
  text-shadow: -4px 4px 20px rgba(0,0,0,.3);
}
.contact-header .sub {
  color: #9aa3af;
  font-size: clamp(12px, 1.5vw, 16px);
  line-height: 1.5;
  max-width: 800px;
}

/* Business info grid */
.biz-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 0;
  padding: 16px 80px 8px;
  border-top: 1px dashed rgba(255,255,255,.06);
  border-bottom: 1px dashed rgba(255,255,255,.06);
  background: #19191c;
  max-width: 800px;
  margin: 0 60px;
}
.info-block .label {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  color: #aab4c3;
  margin-bottom: 6px;
}
.info-block p,
.info-block a {
  color: #cfd8e3;
  font-size: 12px;
  text-decoration: none;
}
.info-block a:hover { text-decoration: underline; }

/* Flash messages */
.form-flash {
  margin: 0 auto;
  padding: 8px 70px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 14px;
  max-width: 600px;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  transform: translateY(-10px);
  opacity: 1;
  max-height: 200px;
  clip-path: inset(0 0 0 0);
  transition: 
    clip-path 1000ms ease,
    transform 1000ms ease, 
    opacity 1000ms ease;
  will-change: clip-path, transform, opacity;
}
.form-errors {
   background: /* LEFT + RIGHT TRANSPARENT FADE */
    linear-gradient(90deg,
      rgba(110, 16, 16, 0)   0%,
      rgba(110, 16, 16, 0.25) 5%,
      rgba(110, 16, 16, 0.85) 15%,
      rgba(110, 16, 16, 0.85) 85%,
      rgba(110, 16, 16, 0.25) 95%,
      rgba(110, 16, 16, 0)   100%
    );  
  color: #f8d7da; 
  list-style: disc;
}
.form-success {
  text-transform: uppercase;
  background: /* LEFT + RIGHT TRANSPARENT FADE */
    linear-gradient(90deg,
      rgba(16, 110, 60, 0)   0%,
      rgba(16, 110, 60, 0.25) 5%,
      rgba(16, 110, 60, 0.85) 15%,
      rgba(16, 110, 60, 0.85) 85%,
      rgba(16, 110, 60, 0.25) 95%,
      rgba(16, 110, 60, 0)   100%
    ); 
  color: #d1e7dd; 
}
.form-flash.fade-out {
  clip-path: inset(0 0 100% 0);
  transform: translateY(-12px);
  opacity: 1;
  max-height: 200px;
}

@media (max-width: 768px) {
  .form-flash {
    padding: 8px 40px;
    font-size: 14px;
  }
}
@media (max-width: 426px) {
  .form-flash {
    font-size: 12px;
  }
  .field small {
    font-size: 12px !important;
  }
  #photos {
    font-size: 12px !important;
  }
}


/* Slim form like the reference (underline inputs) */
.contact-form.slim .row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 700px) {
  .contact-form.slim .row.two-col {
    grid-template-columns: 1fr; /* stack on mobile */
  }
}
.contact-form.slim {
  margin-top: 6px;
  max-width: 800px;
}
.contact-form.slim .field {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
}
.contact-form.slim label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .1em;
  color: #aab4c3;
}
.contact-form.slim .optional {
  color: #7b8794;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
}

/* Underline-only fields */
.contact-form.slim input,
.contact-form.slim textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid #313743;
  padding: 10px 2px 12px;
  color: #e5edf7;
  font-family: sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form.slim textarea { min-height: 50px; resize: vertical; }
.contact-form.slim input::placeholder,
.contact-form.slim textarea::placeholder { color: #5e6775; }

.contact-form.slim input:focus,
.contact-form.slim textarea:focus {
  border-bottom-color: #94a3b8;
  box-shadow: 0 2px 0 0 rgba(147,197,253,.25);
}


#photos {
  margin-top: 10px;
  color: #aab4c3;
  font-size: 16px;
  border-bottom: none; 
  padding: 0;
}
.contact-form.slim #photos {
  padding-bottom: none;
}
.field small {
  color: #aab4c3;
}
.contact-form.slim input[type="file"]::file-selector-button {
  background: #252525;
  color: #aab4c3;
  border: 1px solid #313743;
  padding: 4px;
}
.contact-form.slim input[type="file"]::file-selector-button {
  background: #252525;
  color: #aab4c3;
}

.button-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* new stuff */
/* Base button layout */
.send-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Spinner hidden by default */
/* .send-btn__spinner{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  display: none;
  animation: sendSpin .7s linear infinite;
}

@keyframes sendSpin{
  to { transform: rotate(360deg); }
} */

/* When loading: show spinner, disable feel */
.send-btn.is-loading{
  pointer-events: none;
  opacity: .85;
}

.btn-send.is-loading .send-btn__spinner{
  position: relative;
}

/* animated dots */
.btn-send.is-loading .send-btn__text::after{
  content: '';
  display: inline-block;
  width: 1.2em;            /* space reserved so button doesn’t shift */
  text-align: left;
  overflow: hidden;
  vertical-align: bottom;
  animation: dots 1s steps(4, end) infinite;
}

/* cycles: "", ".", "..", "..." */
@keyframes dots{
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}

/* end of new stuff */


/* original size + typography */
.btn-send{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* ← wider with a touch more height (original spec) */
  padding: 14px 48px;
  /* min-width: 240px; */
  line-height: 1;
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 20px;
  /* border: 1px solid #232831; */
  color: #f1f5f9;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
  background: transparent;
  cursor: pointer;
  transition: transform .06s ease;
  margin: 10px 0 0;
  text-transform: uppercase;
  border: 0;
}
.btn-send > span{ position: relative; z-index: 3; }


.btn-send::before{
  content:"";
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(90deg, var(--cta-red), transparent);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-shadow: inset 0 0 0 100vmax rgba(0,0,0,.18);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 85%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 85%, transparent 100%);
}

.btn-send::after{
  content:"";
  position:absolute; inset:0; z-index:2;
  background: #cd1616;
  background-size: cover; background-position: center;
  width: 0px;
  opacity: 0;
  transition: width .6s cubic-bezier(.22,.61,.36,1),  opacity .8s cubic-bezier(.22,.61,.36,1);
  box-shadow: inset 0 0px 15px 3px rgba(0, 0, 0, 0.4), 0px 0px 12px rgba(0, 0, 0, 0.5);
}
.btn-send:hover::after,
.btn-send:focus-visible::after{ width: 100%; opacity: 1; }

/* polish */
.btn-send:active{ transform: translateY(1px); }
.btn-send:focus-visible{ outline:2px solid #e2e8f0; outline-offset:2px; border-color:#e2e8f0; }

@media (prefers-reduced-motion: reduce){
  .btn-send::after{ transition: none; }
}

/* end of contact button */

.more-info {
  color: #9aa3af;
  margin: 10px 110px 0 0;
}
.more-info a {
  text-decoration: none;
  color: #b9c2ce;
  transition: color 0.4s ease;
  font-weight: 600;
  text-transform: uppercase;
}
.more-info a:hover {
  color: #cd1616;
}


/* Responsive layout */
@media (max-width: 1000px) {
  .contact-split { grid-template-columns: 1fr; min-height: unset; }
  .contact-media { height: 44vh; min-height: 320px; }
  .contact-panel { 
    border-left: none; 
    border-top: 1px solid #232831; 
    margin: 0;
  }
  .biz-info { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .contact-panel.angle-caps::before, .contact-panel.angle-caps::after {
    content: none;
  }
  .hero-logo {
    width: 400px !important;
  }
}

/* Angled side bars for contact panel (bottom-right, inverted skew) */
.angle-caps{
  position: relative;
  isolation: isolate;            /* keeps pseudos behind contents */
}

/* gray 40px inner bar */
.angle-caps::after{
  content:"";
  position:absolute;
  right:15px;                   /* tuck just outside the edge */
  bottom:-100px;                  /* let it dip slightly below */
  width:73px;
  height:320px;                  /* bar height — tweak to taste */
  background:#2f343a;
  transform: skewX(-35deg);      /* ← inverted from builds page */
  transform-origin: left center;
  pointer-events:none;
  z-index: 0;
  box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, .55);
}

/* light 25px outside bar */
.angle-caps::before{
  content:"";
  position:absolute;
  right:81px;                   /* sits just outside the gray bar */
  bottom:-100px;
  width:40px;
  height:420px;
  background:#b6b6b6;
  transform: skewX(-35deg);
  transform-origin: left center;
  pointer-events:none;
  z-index: 0;
  box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, .55);
}

/* keep the panel content above the bars */
.angle-caps > * { position: relative; z-index: 1; }

/* Responsive: tone down or hide on small screens if needed */
@media (max-width: 740px){
  .angle-caps::before,
  .angle-caps::after{
    content: none;
  }
  .more-info {
    margin: 20px 0 0 0;
  }

}


/* end of contact.ejs */


/* index.ejs --- */
/* Landing Page */

.builds-landing {
  width: 71vw;
  margin: 100px auto 0;
  display: flex;
  gap: 2px;
  overflow: hidden;
  align-items: center;
  position: relative;
}
html { --sbw: calc(100vw - 100%); }  /* = scrollbar width */

/* ── Build-landing slide-in bars ─────────────────────────────────────────── */
/* tweak widths here if you ever need to */
.builds-landing {
  --cap-outer: 150px;    /* light cap width (edge-most)   */
  --cap-inner: 400px;    /* dark cap width (inside of it) */
  --cap-light: #cfd8e3;  /* light cap color               */
  --cap-dark:  #2f343a;  /* dark cap color                */
  --slide-in: 400px; /* try 40–80px to taste */
}
.builds-index {
  --slide-in: 400px
}

/* shared geometry stays */
.builds-landing::before,
.builds-landing::after {  
  content: "";
  position: absolute;
  height: 10px;
  pointer-events: none;
  z-index: 2;
  will-change: clip-path, transform;
}

.builds-index .site-header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: auto;
  right: calc(50% - 50vw);
  width: 30vw;
  max-width: calc(100vw - 7.5px);
  height: 10px;
  will-change: clip-path, transform;

  /* only the two caps; no black base */
  background:
    linear-gradient(to left, 
    #7a7e83 0%, 
    #2f343a33 50%, 
    #00000000 100%);

  /* box-shadow:
    inset 0 0 7px 0 rgba(0,0,0,.85),
    inset -8px 0 8px -6px rgba(0,0,0,.45); */

  /* start totally clipped from the RIGHT, with a small nudge from the right edge */
  transform: translateX(0);
  animation: barTranslateFromRight .8s cubic-bezier(.22,.61,.36,1) .4s both;
  border: none;
}


/* BOTTOM bar — caps on LEFT, enter from LEFT */
.builds-index footer::before {
  content: '';
  position: absolute;
  height: 10px;
  pointer-events: none;
  z-index: 2;
  will-change: clip-path, transform;
  
  bottom: 100px;
  left: calc(50% - 50vw);
  right: auto;
  width: 30vw;
  max-width: calc(100vw - 8px);
  height: 10px;

  background:
    linear-gradient(to right, 
    #7a7e83 0%, 
    #2f343a33 50%, 
    #00000000 100%);

  /* box-shadow:
    inset 0 0 7px 0 rgba(0,0,0,.85),
    inset 8px 0 8px -6px rgba(0,0,0,.45); */

  transform: translatex(0);
  animation: barTranslateFromLeft .8s cubic-bezier(.22,.61,.36,1) .4s both;
  border: none;
}

@keyframes barTranslateFromRight {
  from { transform: translateX(var(--slide-in)); }
  to   { transform: translateX(0); }
}
@keyframes barTranslateFromLeft {
  from { transform: translateX(calc(-1 * var(--slide-in))); }
  to   { transform: translateX(0); }
}

/* Reduced motion: reveal instantly, no slide */
@media (prefers-reduced-motion: reduce) {
  .builds-landing::before,
  .builds-landing::after {
    animation: none;
    clip-path: inset(0 0 0 0);
    transform: none;
  }
}


/* end of new stuff */

/* Each side */
.build-tile {
  flex: 1;
  height: 70vh;
  position: relative;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  will-change: transform; 
}

/*                  */
/* Background Image */
.build-tile.left .bg-image {
  background-image: url('/img/1600/70/images/c30.jpg');
}

.build-tile.right .bg-image {
  background-image: url('/img/1600/70/images/mustang.jpg');
}

.build-tile .bg-image {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  transition: transform 10s linear, opacity 0.5s ease;
  opacity: 0.2;
  will-change: transform, opacity;
  z-index: 0;
}

.build-tile:hover .bg-image {
  opacity: 0.6;
  transform: scale(1.15) translateX(5%);
}


/* Dark overlay & centered text */
.build-tile .overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 0 100px;
  backdrop-filter: none;
  text-align: center;
}

.build-tile h2 {
  color: #cfd8e3;
  font-family: "Bebas Neue", sans-serif;
  font-size: 70px;
  margin: 0;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  transition: transform 0.5s ease;
  will-change: transform;
  letter-spacing: 2.5px;
}

.build-tile:hover h2 {
  transform: scale(1.01);
  /* backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px); */
}


/* Mobile */
@media (max-width: 768px) {
  .builds-landing {
    flex-direction: row;
    align-items: center;
    width: 80vw;
    padding: 40px 0;
  }

  .builds-landing::before, .builds-landing::after {
    display: none;
  }

  .build-tile {
    width: 100%;
    height: 60vh;
    min-width: 0;
  }

  .build-tile .overlay {
    padding: 0;
  }

  .overlay h2 {
    font-size: 45px;
    padding: 0 24px;
  }
}

/* ------------- */
/* completed.ejs & current.ejs */

.completed-builds {
  background: radial-gradient(circle at 40% 30%, #161616 0%, #030303 80%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.current-builds {
  background: radial-gradient(circle at 40% 30%, #161616 0%, #030303 80%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.current-builds .grid, .completed-builds .grid {
  margin-bottom: 80px;
}


html, body { height: 100%; }
main {
  flex: 1 0 auto;
}
/* Title */
/* Title styling + slide-in */
  .builds-title{
    position: relative;
    z-index: 1;
    border-right: none;
    margin: 0 0 80px 0;
    position: relative; 
    /* top: -24px; */
    font-family: "Bebas Neue", sans-serif;
    font-weight: 500;
    /* -webkit-text-stroke: .1px #050505; */
    /* text-shadow:
      -1px -1px 0 #b6b6b6,
      1px -1px 0 #b6b6b6,
      -1px  1px 0 #b6b6b6,
      1px  1px 0 #b6b6b6,
      0px -1px 0 #b6b6b6,
      0px  1px 0 #b6b6b6,
      -1px  0px 0 #b6b6b6,
      1px  0px 0 #b6b6b6; */
    justify-self: center;
    width: max-content;
    font-size: clamp(69px, 9vw, 90px);
    line-height: 0.6;
    letter-spacing: 2.5px;
    white-space: nowrap;
    padding: 50px 100px 60px 100px;
    background-color: #030303;
    color: #c7c7c7;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.3);
    height: 14vh;
    border: 1px solid #141414;
    border-right: none;
  }
  .builds-title span {
    display: inline-block;
    position: relative;
    top: 10vh;   /* pushes the text down 70px inside the black bar */
  }
  .builds-title-wrap {
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
  }
  .builds-title-wrap::after {
    content: "";
    position: absolute;
    margin: 0 0 80px 0;
    top: 0;
    bottom: 0;
    left: 50%;
    right: calc(50% - 50vw);   /* full-bleed to viewport right */
    background: #030303;
    border-top: 1px solid #141414;
    border-bottom: 1px solid #141414;
    pointer-events: none;
  }


  /* Right-side angled add-ons (gray 20px + light 10px), same look as cards */
  .builds-title::after{
    content: "";
    position: absolute; top: 0; bottom: 0;
    left: -45px; right: auto; width: 73px;           /* gray block next to the text */
    background:
      /* linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.22) 60%, rgba(0,0,0,.35)),
    linear-gradient(to left, rgba(0,0,0,.45), transparent 55%), */
    #2f343a;
    border: 1px solid #141414;
    transform: skewX(14deg);
    transform-origin: right center;
    pointer-events: none;
    box-shadow:
      inset 0 0 20px 0 rgba(0,0,0,.55); 
  }
  .builds-title::before{
    content: "";
    position: absolute; top: 0; bottom: 0;
    left: -118px; right: auto; width: 45px;        /* light block on the outside */
      background:
      /* linear-gradient(180deg, rgba(255,255,255,.20), rgba(0,0,0,.18) 70%, rgba(0,0,0,.30)),
    linear-gradient(to left, rgba(0,0,0,.35), transparent 60%), */
    #b6b6b6;
    border: 1px solid #141414;
    transform: skewX(14deg);
    transform-origin: right center;
    pointer-events: none;
    box-shadow:
      inset 0 0 20px 0 rgba(0,0,0,.55);

  }
  @media (min-width: 1024px) {
    .builds-title {
      line-height: .6;
    }
  }

/* end of title */



    body { 
      margin-top: 100px; 
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; 
      color:#f1f5f9; 
      display: flex;
      flex-direction: column;

    }
    .buildgrid { 
      padding: 0 24px 0;
      overflow: visible;
    }
    h1 { 
      margin: 0 0 8px; 
    }
    p.sub { 
      color:#9aa3af; 
      margin: 20px 0;
    }
    .grid { 
      display: grid; 
      gap: 12px; 
      grid-template-columns: repeat(3, minmax(0, 1fr)); 
    }
    @media (max-width: 1024px) {
      .grid { grid-template-columns: repeat(2, 1fr); }
      .builds-title::before, .builds-title::after {
        content: none;
      }
      .builds-title-wrap::after {
        content: none;
      }
      .builds-title {
        width: 100%;
        padding: 50px 0 60px;
        margin: 0 auto 80px;
        text-align: center;
        box-shadow: 0px 0px 6px 6px rgba(0, 0, 0, 0.3);
        border: none;
      }
    }
    @media (max-width: 640px) {
      .grid { grid-template-columns: 1fr; }
      .builds-title::before, .builds-title::after {
        content: none;
      }
      .builds-title-wrap::after {
        content: none;
      }
      .builds-title {
        width: 100%;
        padding: 40px 0;
        margin: 0 auto 80px;
        text-align: center;
        box-shadow: 0px 0px 10px 12px rgba(0, 0, 0, 0.7);
        border: none;
        overflow: hidden;
        line-height: 1;
        font-size: 10vw;
        position: relative;
        background: radial-gradient(circle at 25% 20%, #1a1a1a 0%, transparent 40%), 
          radial-gradient(circle at 75% 80%, #3b3b3b 0%, transparent 45%), 
          radial-gradient(circle at 60% 25%, #423c3c7d 0%, transparent 35%), 
          radial-gradient(circle at 40% 70%, #262626 0%, transparent 40%), 
          radial-gradient(circle at 50% 50%, #262525 0%, #050505 100%);
        background-blend-mode: screen, overlay, lighten, normal;
      }
      .builds-title span {
        padding: 0 0px;
      }
    }

@media (max-width: 552px) {
  .builds-title span {
   font-size: 11vw;
  }
}

    /* cards */
/* === CARD STYLES — consolidated === */

/* Foundation */
.card{
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #0f1216;
  box-shadow: 0px 0px 5px   5px #030303a1;
}


.cardlink{ position: relative; display: block; color: inherit; text-decoration: none; }

/* Image */
.thumbwrap{ position: relative; aspect-ratio: 16/10; width: 100%; margin: 0; overflow: hidden; }
.thumb{ 
  opacity: 0;
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}
.card:hover .thumb,
.card:focus-visible .thumb { opacity: .88; }  /* tweak to taste */

/* Edge shadow ring (appears on hover/focus) */
.card::before{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  z-index:1;                 /* under .meta (z-index:2) */
  opacity:0;
  box-shadow:
    inset 0   0  50px 22px rgba(0,0,0,.36),
    inset 0 -64px 64px -28px rgba(0,0,0,.30),
    inset 0  64px 64px -28px rgba(0,0,0,.26),
    inset 64px 0  64px -28px rgba(0,0,0,.26),
    inset -64px 0 64px -28px rgba(0,0,0,.26);
  transition: opacity .6s cubic-bezier(.22,.61,.36,1);
}
.card:hover::before,
.card:focus-within::before{ opacity: 1; }

/* Meta overlays (bottom, no container padding) */
.meta{
  position: absolute; left: 0; right: 0; bottom: -1px;
  padding: 0;
  z-index: 2;
  color: #c7c7c7;
  text-shadow: 0 1px 2px rgba(0,0,0,.55);
  pointer-events: none;
  will-change: transform;
}
.meta-info{ text-align: left; transform: translate3d(0,0,0); }
.meta-cta { text-align: right; transform: translate3d(110%,0,0); transition: transform .6s cubic-bezier(.22,.61,.36,1); }

/* Labels (black pills sized to text) */
.meta-box{
  position: relative; overflow: visible;
  display: inline-flex; align-items: flex-start; gap: 0;
  max-width: 95%;
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border-radius: 0; 
  padding: 10px 12px;
      box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.3);
}
.meta-info .meta-box{ flex-direction: column; }
.meta-cta  .meta-box{ font-weight: 700; }

/* Forward: info slides OUT right; CTA comes IN after 0.3s */
.card:hover .meta-info{
  transform: translate3d(110%,0,0);
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.card:hover .meta-info .meta-box{         /* after slide completes, park below */
  transform: translate3d(0,110%,0);
  transition: transform 0s linear .6s;
}
.card:hover .meta-cta{
  transform: translate3d(0,0,0);
  transition-delay: .3s;
}

/* Reverse: CTA exits immediately; info snaps back, then slides UP */
.card:not(:hover) .meta-cta{ transform: translate3d(110%,0,0); transition-delay: 0s; }
.card:not(:hover) .meta-info{ transform: translate3d(0,0,0); transition: none; }
.meta-info .meta-box{ transform: translate3d(0,0,0); transition: transform .6s ease .3s; }

/* Angled side bars (solid) */
.meta-info .meta-box::after{
  content:"";
  position:absolute; top:0; bottom:0; right:-10px; width:10px;
  background:#4a4f56;
  box-shadow: inset 0 0 6px 1px rgba(0, 0, 0, .55);
  pointer-events:none;
}
.meta-cta .meta-box::before{
  content:"";
  position:absolute; top:0; bottom:0; left:-10px; width:10px;
  background:#c72828;
  box-shadow: inset 0 0 6px 1px rgba(0, 0, 0, .55);
  pointer-events:none;
}

/* Type */
.name{ 
  margin: 0;
   font-size: 24px; 
   font-weight: 700; 
   line-height: 1.15; 
  }

.subtxt{ display: none; margin: 0; font-size: 14px; color: #cbd5e1; }
.meta-box h2{ margin-right: 10px; }
span.cta{ margin-left: 10px; letter-spacing: .2px; }

/* Keyboard mirrors hover */
.cardlink:focus-visible .meta-info{
  transform: translate3d(110%,0,0);
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.cardlink:focus-visible .meta-cta{
  transform: translate3d(0,0,0);
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
  transition-delay: .3s;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .card, .card::before,
  .meta-info, .meta-cta, .meta-info .meta-box { transition: none !important; }
}






/* ------------ */
/* Show.ejs */
/* build title sticky */

:root {
      --bg: #0b0d10;
      --panel: #15181d;
      --panel2: #101317;
      --border: #232831;
      --text: #f1f5f9;
      --muted: #9aa3af;
      --accent: #e2e8f0;
      --radius: 16px;
      --container: 1100px;
      --text-max: 680px;
      --block-h: clamp(520px, 55vh, 860px);
      --hero-max-w: 1600px;
      --hero-min-w: 720px;
      --hero-h: clamp(600px, 70vh, 1000px);
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: #000000;
      color: var(--text);
    }

    .topnav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 50px 24px;
      background: #15181d;
      position: relative;
      z-index: 10;

    }

    .backlink {
      color: var(--muted);
      font-size: 14px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: transparent;
      text-decoration: none;
    }

    .backlink:hover {
      background: var(--panel);
      color: var(--text);
    }

    .full-bleed {
      width: 100%;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50%;
      margin-right: -50%;
    }

    .hero {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100vw;
      overflow: hidden;
      z-index: 0;
      transition: opacity 0.05s linear;
      will-change: opacity, filter;
    }

    .hero-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
    }

    .hero-shadow {
      position: absolute;
      inset: 0;
      pointer-events: none; /* Prevents blocking clicks */
      z-index: 1;
      box-shadow: 
        inset 0 0 120px rgba(0, 0, 0, 0.5),  /* strong overall edge shadow */
        inset 0 -200px 200px rgba(0, 0, 0, 0.4), /* darker at bottom */
        inset 0 200px 150px rgba(0, 0, 0, 0.4),  /* darker at top */
        inset 200px 0 150px rgba(0, 0, 0, 0.4),   /* left edge */
        inset -200px 0 150px rgba(0, 0, 0, 0.4);  /* right edge */
    }

    .hero-shadow-thumb{
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;

      /* hero-like cinematic vignette that scales with thumbnail size */
      background:
        /* top fade */
        linear-gradient(to bottom,
          rgba(0,0,0,.65) 0%,
          rgba(0,0,0,.25) 22%,
          rgba(0,0,0,0) 45%
        ),
        /* bottom fade */
        linear-gradient(to top,
          rgba(0,0,0,.60) 0%,
          rgba(0,0,0,.18) 30%,
          rgba(0,0,0,0) 55%
        ),
        /* side fades */
        linear-gradient(to right,
          rgba(0,0,0,.45) 0%,
          rgba(0,0,0,0) 22%,
          rgba(0,0,0,0) 78%,
          rgba(0,0,0,.45) 100%
        );

      /* optional: makes it feel less “flat” */
      mix-blend-mode: multiply;
    }

    

    .build-title-sticky {
      display: block;
      font-family: "Bebas Neue", sans-serif;
      font-size: 6vw;
      font-weight: 400;
      color: #c7c7c7;
      text-shadow: 0 3px 4px rgba(0, 0, 0, 0.7);
      text-align: right;
      padding: 34px 48px 24px 100px;
      position: fixed;
      bottom: 0;
      right: 0;
      z-index: 1;
      /* Constrain to right 2/3 of screen */
      /* max-width: 66.67vw; */
      width: fit-content;
      margin-left: auto; /* pushes it to the right */
      margin-right: 0;
      text-wrap: balance;
      overflow-wrap: break-word;
      background: none;
      background-color: #030303;
      border-radius: 0;
      backdrop-filter: none;
      box-shadow: -4px 4px 20px rgba(0,0,0,0.3);
      animation: buildStickyIn .7s cubic-bezier(.22,.61,.36,1);
    }

    /* gray 20px flush to text */
  .build-title-sticky::after{
    content:"";
    position:absolute; top:0; bottom:0;
    left:-38px; width:70px;
    background:
    /* linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.22) 60%, rgba(0,0,0,.35)),
    linear-gradient(to left, rgba(0,0,0,.45), transparent 55%),  */
    #2f343a;
    box-shadow: inset 0 0 20px 0 rgba(0,0,0,.55); 
    transform:skewX(14deg);
    transform-origin:right center;
    pointer-events:none;
  }

  /* light 10px outside */
  .build-title-sticky::before{
    content:""; 
    position:absolute; top:0; bottom:0;
    left:-118px; width:45px;
    background:
    /* linear-gradient(180deg, rgba(255,255,255,.20), rgba(0,0,0,.18) 70%, rgba(0,0,0,.30)),
    linear-gradient(to left, rgba(0,0,0,.35), transparent 60%), */
    #b6b6b6;
    box-shadow: inset 0 0 20px 0 rgba(0,0,0,.55); 
    transform:skewX(14deg);
    transform-origin:right center;
    pointer-events:none;
  }
  @keyframes buildStickyIn{
    from{ transform: translateY(420px); }
    to  { transform: translateY(0); }
  }

  @media (min-width: 1441px) {
  .build-title-sticky {
    font-size: 100px;
    line-height: 1;
    }
  }
  @media (max-width: 1440px) {
    @keyframes buildStickyIn{
      from{ transform: translateY(300px); }
      to  { transform: translateY(0); }
  }
    .build-title-sticky::before {
      left: -133px;
      width: 55px;
    }
    .build-title-sticky::after {
      left: -50px;
      width: 100px;
    }
  }


/* Small tablets — remove side bars, center text higher */
@media (max-width: 768px) {
  .build-title-sticky {
    font-size: 8vw;
    width: 100%;
    margin: 0 auto;
    max-width: none;
    padding: 20px 10px;
    box-sizing: border-box;
    text-align: center;
    background: rgb(0 0 0 / 60%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
    border-top: #0e0e0e 1px solid;
    }
  .build-title-sticky::before,
  .build-title-sticky::after {
    display: none;
  }
}

/* Phones — small text and no pseudo elements */
@media (max-width: 480px) {
  .build-title-sticky {
  }
  .build-title-sticky::before,
  .build-title-sticky::after {
    display: none;
  }
}

.adtlPhotos {
  padding: 0 30px;
  font-family: Bebas Neue, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(20px, 50px, 50px);
  color: #c7c7c7;
  background: #030303;
  margin: 0;
  position: relative;
}
.show-completed .gallery-grid {
  background: #030303;
}


/* home.ejs      */
/* ------------- */

/* Homepage only: hide header logo until scrolled */
body.is-home .nav-logo {
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
body.is-home .nav-logo.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ===== Home Video Hero ===== */
.home-hero {
  position: relative;
  height: 100vh;            /* CSS fallback if JS is disabled */
  min-height: 100vh;
  display: flex;
  flex-direction: column;   /* stack logo + slogan */
  will-change: opacity, filter;
}

/* Home hero uses the global fixed .hero behavior */
.hero.home-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-height: 320px;
  z-index: 0;
  display: flex;
  flex-direction: column;
}



/* Invisible spacer that simulates the hero taking up space in the document */
.home-hero-spacer {
  height: 100vh;
}


.hero-top {
  position: relative;
  height: 100vh;
  min-height: 320px;
  overflow: hidden;
}


/* Home video hero logo — delay its reveal by 1s */
.home-hero .hero-logo {
  opacity: 0;
  transform: translateY(10px);
  /* prevent the global img reveal from taking over */
  transition: none !important;
  animation: heroLogoIn .8s cubic-bezier(.22,.61,.36,1) 0.1s forwards;
}


@keyframes heroLogoIn {
  to { opacity: .7; transform: translateY(0); }
}

/* Mobile/tablet stability: avoid filter on the fixed hero (prevents black flashes) */
@media (hover: none), (pointer: coarse), (max-width: 1024px) {
  .home-hero {
    filter: none !important;
    will-change: opacity; /* not filter */
  }
}

.home-hero,
.hero.home-hero,
.home-hero-spacer,
.hero-top {
  height: 100vh;
}

@supports (height: 100dvh) {
  .home-hero,
  .hero.home-hero,
  .home-hero-spacer,
  .hero-top {
    height: 100dvh;
  }
}


.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;         /* fill container */
  object-position: center;   /* center the subject */
  z-index: 0;
  opacity: .6;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 50% 50%, rgba(0,0,0,.25), rgba(0,0,0,.55) 65%, rgba(0,0,0,.75));
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
}

/* new cue stuff */
/* Scroll cue */
.scroll-cue{
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 5;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;

  background: none;
  border: none;
  padding: 0;

  color: rgba(255,255,255,.9);
  cursor: pointer;
  user-select: none;

  transition: opacity .25s ease, transform .25s ease;
}

.scroll-cue:hover{
  opacity: 1;
}

.scroll-cue:active{
  transform: translateX(-50%) translateY(2px);
}

.scroll-cue__icon{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #848181;

  animation: scrollCueBall 4s infinite ease-in-out;
  animation-delay: 3.5s;
  animation-fill-mode: both;
}

.scroll-cue__text{
  font-size: 14px;
  letter-spacing: .18em;
  font-weight: 600;
  opacity: .75;
  color: #848181;
}

@keyframes scrollCueBall {
  0%   { transform: translateY(0); animation-timing-function: cubic-bezier(.2,.9,.35,1); }

  /* QUICK LIFT */
  3.5% { transform: translateY(-14px); animation-timing-function: cubic-bezier(.15,0,.25,1); }

  /* FAST FALL */
  7%   { transform: translateY(0); animation-timing-function: cubic-bezier(.15,.7,.2,1); }

  /* BOUNCE 1 */
  9.6% { transform: translateY(-9px); animation-timing-function: cubic-bezier(.15,0,.25,1); }
  12.2%{ transform: translateY(0); animation-timing-function: cubic-bezier(.15,.7,.2,1); }

  /* BOUNCE 2 */
  14.3%{ transform: translateY(-5px); animation-timing-function: cubic-bezier(.15,0,.25,1); }
  16.5%{ transform: translateY(0); animation-timing-function: cubic-bezier(.15,.7,.2,1); }

  /* BOUNCE 3 */
  18.3%{ transform: translateY(-3px); animation-timing-function: cubic-bezier(.15,0,.25,1); }
  20%  { transform: translateY(0); }

  /* LONG REST */
  100% { transform: translateY(0); }
}



/* hide on scroll */
.scroll-cue.is-hidden{
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .scroll-cue__icon{ animation: none; }
  .scroll-cue{ transition: none; }
}


/* end of new cue stuff */



.hero-logo {
  max-width: min(600px, 80vw);
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  /* backdrop-filter: blur(8px); */
}

.btp {
  height: 8vh;
  display: flex;
  justify-content: flex-start;
  position: relative;
  background: #0e0e0e99;
  z-index: 1;
  border-top: 1px solid #141414;

}
.btp::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #000000;

}
.btp::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: linear-gradient(
    to bottom,
    rgba(241,44,44,.35) 0%,
    rgba(3,3,3,.85) 30%,
    rgba(3,3,3,.85) 70%,
    rgba(241,44,44,.35) 100%
  );

  /* optional side fade */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 18%,
    black 82%,
    transparent
  );
          mask-image: linear-gradient(
    to right,
    transparent,
    black 18%,
    black 82%,
    transparent
  );
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}

.btp img {
  width: 45%;
  margin: auto 0;
  padding: 0 10px;
  opacity: .8 !important;

}

:root{
  --band-height: 700px;
  --band-dark: #030303;
  --band-gray: #111111;                         /* tweak as needed */
  --band-mid:  color-mix(in oklab, var(--band-gray) 55%, var(--band-dark) 45%);
  --band-gray-extent: 66%;                       /* how far gray reaches (~2/3) */
  --band-softness: 10%;                          /* widen the mid blend (5–18%) */
}


/* full-bleed container */
.band{
  position: relative;
  display: grid;
  place-items: stretch;
  isolation: isolate;
  /* box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    inset 0 -1px 0 rgba(0,0,0,.35); */
}

/* LEFT-accent gradient → fades right */
.band--left{
  /* background:
    linear-gradient(
      90deg,
      var(--band-gray) 0%,
      var(--band-mid) calc(var(--band-gray-extent) - var(--band-softness)),
      var(--band-mid) var(--band-gray-extent),
      var(--band-dark) 100%
    ),
    linear-gradient(
      205deg,
      transparent 0% 55%,
      rgba(0,0,0,.12) 100%
    ); */
  background: #000000;
  
}

.band--left .band-media img {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
  mask-repeat: no-repeat;
  mask-size: cover;
  border-left: none;
}

.band--right .band-media img {
  -webkit-mask-image: linear-gradient(to left, transparent 0%, black 25%, black 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-image: linear-gradient(to left, transparent 0%, black 25%, black 100%);
  mask-repeat: no-repeat;
  mask-size: cover;
}

/* RIGHT-accent gradient → fades left (mirrored) */
.band--right{
  /* background:
    linear-gradient(
      270deg,
      var(--band-gray) 0%,
      var(--band-mid) calc(var(--band-gray-extent) - var(--band-softness)),
      var(--band-mid) var(--band-gray-extent),
      var(--band-dark) 100%
    ),
    linear-gradient(
      335deg,
      transparent 0% 55%,
      rgba(0,0,0,.12) 100%
    ); */
  background:#000000;
  position: relative;
}

.band--right::before {
  content: "";
  position: absolute;
  inset: 0;        /* fills the entire band */
  background: #000;
  z-index: -1;     /* keep it behind your band content */
}

/* inner layout: default = info left 2/3, spacer right 1/3 */
.band-inner{
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-areas: "media info";
  align-items: center;
  /* gap: 24px; */
  height: 650px;
  padding: 24px clamp(16px, 3vw, 70px);
}

/* flip layout for band--right: info right 2/3 */
.band--right .band-inner{
  grid-template-columns: 1fr 2fr;
  grid-template-areas: "media info";
  /* padding: 0 50px; */
}

.band--left .band-inner {
  grid-template-columns: 2fr 1fr;
  grid-template-areas: "info media";
  /* padding: 0 50px; */
}

.band-inner:first-of-type {
  /* padding-top: 0 !important; */
  margin-top: 0 !important;
}

.band-media { grid-area: media; }
.band-info  { grid-area: info; }

/* info block */
.band-info{
  padding: clamp(16px, 7vw, 50px);
  /* border: 1px solid #141414; */
  /* box-shadow:
    0 16px 40px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.04); */
  box-sizing: border-box;
  text-align: center;
  height: 100%;
  width: 100%;
  border-top: none;
  display: flex;
  flex-direction: column;
  align-items: center;   /* horizontal center */
  justify-content: center; /* vertical center */
  gap: 30px;             /* space between title, text, and button */
  min-height: 0;
}
.band-info .btn-send {
  text-decoration: none;
  margin-top: 4px;      /* subtle spacing from paragraph */
}

.band--right .band-info {
  background: linear-gradient(to right, 
  #040404 0%, 
  #04040400 20%, 
  #0b0d10db 60%,
  #04040400 100% );
  border-left: none;
}

.band--left .band-info {
  background: linear-gradient(to left, 
  #040404 0%, 
  #04040400 20%, 
  #0b0d10db 60%,
  #04040400 100%
  );
  border-right: none;
}


.band-title{
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 6vw, 56px);
  letter-spacing: .06em;
  color: #c7c7c7;
  margin: 0 0;
  text-transform: uppercase;
}

.band-text{
  color: #c7c7c7;
  margin: 0;
  max-width: 60ch;
  text-align: justify;
  text-align-last: center;
  font-size: 24px;
  line-height: 1.6;
}

.band-media {
  position: relative;
  /* padding: clamp(16px, 3vw, 28px); */
  /* border: 1px solid #141414; */
  box-shadow:
    0 16px 40px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.04);
  background: #070707;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  min-height: 0;
}

.band--left .band-media {
  border-left: none;
}
.band--right .band-media {
  border-right: none;
}

.band-media-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;   /* ⬅️ keeps img from bleeding out */
}


.band-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.9);
}


.band-media::after{
  content: "";
  position: absolute;
  inset: 0;  
  pointer-events: none;
  z-index: 2;
  box-shadow:
    inset 0 0 40px rgba(0,0,0,.45),
    inset 0 -80px 80px rgba(0,0,0,.35),
    inset 0 80px 60px rgba(0,0,0,.35),
    inset 80px 0 60px rgba(0,0,0,.35),
    inset -80px 0 60px rgba(0,0,0,.35);
}

.band-media-inner::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1; /* sits above the img, below the vignette */
  /* fade from band dark → transparent */
}

/* responsive tweaks */
@media (max-width: 900px){
  :root{ --band-height: 240px; }
  .band-inner{
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "info";
    gap: 12px;
    min-height: 400px;
  }
  .band-info{ padding: 16px; }
  .btp img {
    width: 70%;
  }
  .nav-links.open {
    width: 200px;
    align-items: end;
  }
  .nav-links a {
    font-size: 26px;
    margin: 0 40px 0 0;
  }
  .nav-overlay::before {
    background-size: 78%;
    margin-right: 20%;
  }
}

/* social media links */
.social-feed{
  position: relative;
  padding: 0px 0 80px;
  margin: 24px 0;
  --ig-angle: 135deg;
  background: linear-gradient(
    var(--ig-angle),
    rgba(43, 18, 77, 0.4) 0%,
    rgba(90, 16, 85, 0.4) 25%,
    rgba(138, 22, 66, 0.4) 50%,
    rgba(168, 67, 47, 0.4) 70%,
    rgba(194, 122, 41, 0.4) 100%
  );
  min-height: 500px;
  opacity: .9 !important;
}

/* .social-feed::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    135deg,
    rgba(255, 70, 101, 0.28),
    rgba(255, 140, 0, 0.22)
  );
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
} */


.social-inner{
  width: min(1500px, 93vw);
  margin: 0 auto;
}

.social-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-right: 40px;
  margin-left: 40px;
  padding: 50px 0;
}

.social-header-bar {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f77737, #e1306c, #833ab4);
  box-shadow: 0 0 12px rgba(225, 48, 108, 0.6);
}

.is-home .btn {
  border-radius: 5px;
  margin: auto 0;
  background: #73379ed1;
  border: 1px solid #73379e82;
}

.is-home .btn-cta::before {
  background: #8c37c2;

}

.social-title{
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(19px, 5vw, 55px);
  letter-spacing: .06em;
  color: #e6e6e6;
  margin: 0;
  text-transform: uppercase;  
}

/* .social-title::after {
  content: "";
  position: absolute;
  left: 315px;
  /* bottom: 0; */
  /* width: 874px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f77737, #e1306c, #833ab4);
  box-shadow: 0 0 12px rgba(225, 48, 108, 0.6);
} */

.social-link{
  text-decoration: none;
  font-weight: 600;
}

.social-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  height: 500px;
}

.social-card{
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid #141414;
  box-shadow:
    0 16px 40px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.03);
  background: #0b0d10;
  border-radius: 5px;
  z-index: 0;
  will-change: transform;
  transform-origin: center center;
  transition: transform .2s ease, border-radius .2s ease, box-shadow .2s ease;
}

.social-card.is-active {
  transform: scale(1.1);
  border-radius: 10px;
  z-index: 2;
  box-shadow:
    0 22px 60px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.04);
}
/* .social-card:hover {
  transform: scale(1.1);
  border-radius: 10px;
  z-index: 2;
} */

.social-card.is-active img {
  transform: scale(1.05);
}

.social-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.98) contrast(1.02);
  transition: transform .35s ease;
}


.social-card-overlay{
  position: absolute;
  inset: 0;
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.05) 30%);
  opacity: 0;
  transform: translateY(20%);
  transition: opacity .25s ease-out, transform .25s ease-out;
  pointer-events: none;
}

.social-card.is-active .social-card-overlay {
  transform: translateY(0%);
  opacity: 1;
  scale: 1;
  margin-bottom: -1px;
}

/* .social-card:hover .social-card-overlay,
.social-card:focus-visible .social-card-overlay{
  opacity: 1;
  scale: 1;
  transform: translateY(0%);
  margin-bottom: -1px;
} */

.social-card-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none;
  opacity: 1;
  transition: filter .25s ease, opacity .25s ease;
}

.social-grid--hovering .social-card:not(.is-active) .social-card-media {
  filter: grayscale(0.4);
  opacity: 0.5;
}

.social-caption{
  font-size: 1rem;
  line-height: 1.3;
  color: #f7f7f7;
  max-height: 5.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}


.social-meta{
  display: flex;
  gap: 12px;
  margin-top: 8px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f7f7f7cc;
}

.social-meta-item{
  display: inline-flex;
  align-items: center;
}

.social-meta-icon{
  width: 14px;
  height: 14px;
  margin-right: 4px;
  fill: currentColor;
  flex-shrink: 0;
}


.social-empty{
  color: #aab4c3;
  grid-column: 1 / -1;
  padding: 24px 0;
  text-align: center;
}

/* responsive */
@media (max-width: 900px){
  .social-grid{ grid-template-columns: repeat(3, 1fr); height: 400px; }
  
}
@media (max-width: 520px){
  .social-grid{ grid-template-columns: 1fr; padding: 0 24px; }
}

/* end of social media links */

/* ===== HOME CONTACT SECTION ===== */

.home-contact {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* IMPORTANT: inherits page background */
  margin: 40px 0 60px;
}




.home-contact-box {
  width: min(600px, 63vw);
  padding: 52px 64px;
  text-align: center;

  /* DARK INDUSTRIAL BASE */
    background:
    /* LEFT / RIGHT EDGE FADE */
    linear-gradient(
      90deg,
      #000000 0%,
      rgba(3,3,3,0) 18%,
      rgba(3,3,3,0) 82%,
      #000000 100%
    ),
    /* BASE CARD GRADIENT */
    linear-gradient(
      180deg,
      #1b0000 0%,
      #1b0000 100%
    );

  /* box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02); */

  position: relative;
  overflow: hidden;
}

.contact-cta{
  position: relative;
  overflow: hidden;

  --mx: 50%;
  --my: 50%;
}

.contact-cta .cta-spotlight{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  opacity: 0;
  transition: opacity .18s ease;

  background: radial-gradient(
    circle 200px at var(--mx) var(--my),
    rgba(181, 42, 42, 0.35) 0%,
    rgba(181, 42, 42, 0.18) 28%,
    rgba(181, 42, 42, 0.08) 48%,
    rgba(181, 42, 42, 0.00) 70%
  );

  filter: blur(6px);
}

.contact-cta:hover .cta-spotlight{
  opacity: 1;
}

.contact-cta > *:not(.cta-spotlight){
  position: relative;
  z-index: 1;
}





.home-contact-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #b52a2a,
    transparent
  );
  opacity: .8;
}

.home-contact-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 80px;
  right: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #b52a2a,
    transparent
  );
  opacity: .8;
}

.home-contact-box h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 6vw, 40px);
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  color: #c7c7c7;
  text-transform: uppercase;
}

.home-contact-box p {
  color: #c7c7c7;
  font-size: 18px;
  margin: 0 0 20px;
  opacity: 0.9;
}

/* tighten button spacing just for this section */
.home-contact-box .btn-send {
  margin: 0 auto;
  text-decoration: none;
  color: #f1f5f9;
}



/* new stuff */
/* ===== HOME CONTACT: 2-col split ===== */
.home-contact-box{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  align-items: center;
  width: min(700px, 63vw);
  text-align: left;            /* override your current centered layout */
}

/* LEFT: big stacked title */
.home-contact-box h2{
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0 0 0 50px;
  text-align: left;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 60px;
  letter-spacing: 0.04em;
}

/* RIGHT: copy + button */
.home-contact-box p{
  grid-column: 2;
  grid-row: 1;
  margin: 10px 50px 0 0;
  line-height: 1.3;
  max-width: 44ch;
  font-size: 20px;
  line-height: 1.5;
  text-align: right;
}

.home-contact-box .contact-cta{
  grid-column: 2;
  grid-row: 2;
  justify-self: right;         /* button aligns left in the right column */
  margin-right: 50px;
  margin-bottom: 10px;
  padding: 10px 16px;
}





/* ===== Responsive: stack on smaller screens ===== */
@media (max-width: 769px){
  .home-contact-box{
    width: 450px;
    margin: 0 auto; 
    padding: 16px 40px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
    gap: 12px;
  }

  .home-contact-box h2{
    margin: 0;
    text-align: left;
    line-height: 1.05;
    text-align: left;
    margin-left: 30px;
  }

  .home-contact-box p{
    margin: 0 auto;
    text-align: right;
    max-width: 34ch;
    font-size: 13px;
    margin-right: 30px;
    text-wrap: balance;
  }

  .home-contact-box .contact-cta{
    margin-right: 0;
    justify-self: right;
    padding: 6px 10px;
    margin-right: 30px;
  }
  .contact-cta__label {
    font-size: 10px !important;
  }
}
@media (max-width: 426px) {
  .home-contact-box {
    grid-template-columns: 2fr 2fr;
    padding: 24px 34px;
    gap: 8px;
  }

  .home-contact-box h2{
    margin: 0;
    font-size: 28px !important;
  }

  .home-contact-box p{
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: right;
  }
  .home-contact-box .contact-cta{
    margin: 0 !important;
    padding: 8px;
    position: relative;
    z-index: 1;
    justify-self: right;
  }
  .home-contact-box .contact-cta__label {
    font-size: 9px !important;
  }
}
/* end of new stuff */



.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 26px;
  text-decoration: none;

  background: rgb(229 17 17 / 14%);
  border: 1px solid rgb(148 2 2 / 10%);

  box-shadow:
    0 0 20px 5px rgb(14 0 0 / 92%);

  border-radius: 2px;
  position: relative;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.contact-cta__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e9eef5;
}

.contact-cta__arrow {
  font-size: 1.05rem;
  color: #b52a2a;
  transform: translateY(-1px);
  transition: transform 0.2s ease;
}

/* HOVER — glass + slight red warmth */
.contact-cta:hover {
  background: rgba(181, 42, 42, 0.14);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow:
    0px 0px 20px 0px rgb(209 4 4 / 23%), 
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);

  transform: translateY(-2px);
}

.contact-cta:hover .contact-cta__arrow {
  transform: translate(4px, -1px);
}

/* keyboard accessibility */
.contact-cta:focus-visible {
  outline: 2px solid rgba(181, 42, 42, 0.55);
  outline-offset: 4px;
}








/* end of home.ejs */


/* ===== Current Build (show-current.ejs) ===== */
.show-current .wip-intro {
  margin-top: 0;
}

.show-current .wip-section {
  padding-top: 50px;
}

.wip-section {
  width: 100%;            /* span full page width */
  height: auto;       /* at least fill its content */
  background: #030303;  
  padding: 20px 0;        /* space above/below inner content */
  box-sizing: border-box; /* keep padding included */
  position: relative;
  z-index: 2;
}


.wip-intro {
  /* border: 1px solid #141414; */
  box-shadow: 0 0 20px 10px rgb(14 14 14 / 50%);
  margin: 100px auto 20px;
  background: radial-gradient(circle at 40% 30%, #161616 0%, #030303 80%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  width: 90%;
  min-height: 400px;
}


@media (max-width: 900px) {
  .wip-intro {
    width: 90%;
    margin: 0px auto 20px;
  }
}

.wip-heading {
  margin: 0 0 8px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .06em;
  font-size: clamp(28px, 4.4vw, 40px);
  color: #cfd8e3;
}
/* WIP section heading with opposite-lean bars */
.wip-heading {
  position: relative;
  display: inline-block;     /* size to the text */
  padding: 6px 60px 6px 30px;        /*  adjust to taste */
  z-index: 1;
  font-size: 50px;
  background: #2f343a;
  box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, .55);
  font-weight: 200;
  color: #c7c7c7;
}


/* Light gray cap that follows the same angle on the right */
.wip-heading::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 30px;
  background: #b6b6b6;
  /* transform: skewX(-14deg); */
  transform-origin: left center;
  z-index: -2;
  /* border: 1px solid #141414; */
  box-shadow: inset 0 0 20px rgba(0,0,0,.55);
}



.wip-paragraph {
  color: #c7c7c7;
  line-height: 1.55;
  margin: 0 0 8px;
  font-size: 24px;
  padding: 18px 22px;
}

/* 4-wide responsive gallery that fills the page naturally */
.gallery-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 20px 24px 20px;
  background: #010101b5;
  position: relative;
  z-index: 1;
}
.gallery-grid::before {
  content: "";
  position: absolute;
  inset: 0;                        /* full cover */
  /* background: #070707; */
  z-index: -1;                     /* sit behind gallery items */
}
.gallery-item { 
  aspect-ratio: 4 / 3; 
  overflow: hidden; 
  width: 100%;
  height: 100%;
  margin: auto;
}
/* new stuff for   gallery loader */

.gallery-row {
  display: contents;
}
.gallery-row.row-visible .gallery-item { opacity: 1; }

.gallery-row.row-visible .gallery-item,
.gallery-row.row-visible .gallery-item img {
  opacity: 1 !important;
}

.gallery-grid .gallery-item img {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
}

/* reveal when the whole row is ready */
.gallery-row.row-visible .gallery-item img {
  opacity: 1 !important;
  transform: translateY(0);
}

.gallery-item img {
  display: block;          /* no inline-img gaps */
  width: 100%;
  height: 100%;
  object-fit: cover;       /* same cropped look as before */
  object-position: center;
}


/* 2) Base state only for gallery images (we control these) */
.gallery-grid .gallery-item img {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
}

/* 3) Neutralize the global “is-loaded” reveal inside the gallery */
html.is-ready .gallery-grid img.is-loaded {
  opacity: 0;                /* still hidden until row-visible */
  transform: translateY(8px);
}

/* 4) The actual reveal gate */
.gallery-row.row-visible .gallery-item { opacity: 1; }            /* if you keep figure fade */
.gallery-row.row-visible .gallery-item img {
  opacity: 1 !important;                                        /* beats any global/inline */
  transform: translateY(0);
}

/* base state: hide the IMAGE (not the figure) */
.gallery-grid .gallery-item img {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
}

/* reveal gate: when the row is ready, force-show the four images */
.gallery-grid .gallery-row.row-visible .gallery-item img {
  opacity: 1 !important;   /* beats global/inline */
  transform: translateY(0);
}

/* make sure figures themselves are NOT hidden */
.gallery-grid .gallery-item { opacity: 1; }

/* optional: if you still have a global img fade elsewhere, keep it—
   this higher-specificity rule ensures the gallery uses the values above */
.gallery-grid img { transition: opacity .35s ease, transform .35s ease; }

.gallery-grid img.is-loaded,
.gallery-grid img.loaded,
.gallery-grid img.lazyloaded {
  opacity: 0 !important;
  transform: translateY(8px) !important;
}

.no-global-img img.is-loaded {
  opacity: 0 !important;
  transform: translateY(8px) !important;
}


/* responsive steps */
@media (max-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* .wip-section .cta-box {
  color: #070707;
  background: #2f343a;
  box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, .55);
}
.wip-section .cta-ticker {
  background: #070707;
  box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, .55);
}
.wip-section .tick {
  color: #c7c7c7;
} */

/* end of show-current.ejs */

/* forSale.ejs */

.page.forSale {
  background: radial-gradient(circle at 40% 30%, #161616 0%, #030303 80%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.page.forSale .builds-title {
  margin: 0;
}
.page.forSale .builds-title-wrap::after {
  margin: 0;
}

.page.forSale .wip-section {
  background: none;
}

.page.forSale .wip-heading {
  font-size: 42px;
  background: #2f343a;
  box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, .8);
  font-weight: 200;
  color: #c7c7c7;
  text-align: center;
}
.page.forSale .wip-intro {
  margin: 100px auto 00px;
  background: #010101e0;
  width: 90%;
  min-height: 300px;
  box-shadow: 0px 0px 20px 10px rgb(14 14 14 / 50%);
}

.page.forSale .gallery-grid {
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  border: none;
  box-shadow: 0px 20px 20px 0px rgb(14 14 14 / 50%);
  background: none;
}


.page.forSale .wip-paragraph {
  min-height: 150px;
  text-align: center;
  margin-top: 100px;
}

:root{
  --fsd-height: 10px;
  --fsd-cap:   #b6b6b6;  /* light gray caps */
  --fsd-mid:   #888888;  /* dark gray center */
  --fsd-cap-w: 300px;     /* cap width on each side */  
   --fsd-edge: 140px;
}

.for-sale-divider{
  position: relative;
  width: 40%;      
  height: var(--fsd-height);
  margin: 140px auto 0;     /* center + spacing */
  background: var(--fsd-mid); /* dark center */
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 var(--fsd-edge)),
    linear-gradient(to left,  transparent 0, #000 var(--fsd-edge));
  -webkit-mask-composite: source-in;  /* combine the two masks */

  mask-image:
    linear-gradient(to right, transparent 0, #000 var(--fsd-edge)),
    linear-gradient(to left,  transparent 0, #000 var(--fsd-edge));
  mask-composite: intersect;          /* spec-ish equivalent */

  /* IMPORTANT */
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* hard-cap with outside fade */
.for-sale-divider::before,
.for-sale-divider::after{
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: var(--fsd-cap-w);
  background: var(--fsd-cap);

  /* fade to transparent on the OUTSIDE edge */
  -webkit-mask-image: linear-gradient(to var(--fade-dir), transparent 0, #000 32%);
          mask-image: linear-gradient(to var(--fade-dir), transparent 0, #000 32%);
}

/* left cap: fade outward to the left */
.for-sale-divider::before {
  left: 0;
  --fade-dir: left;
}

/* right cap: fade outward to the right */
.for-sale-divider::after  {
  right: 0;
  --fade-dir: right;
}

.forSaleContact {
  text-align: center;
  box-sizing: border-box;
  margin: 40px 0 60px 0;
}
.forSaleContact h2 {
  color: #c7c7c7;
  font-family: IBM Plex Sans Condensed, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.page.forSale .btn-send {
  text-decoration: none;
  padding: 6px 5px;
  font-size: 24px;
}

@media (max-width: 768px) {

}




/* end of forSale.ejs */


/* login.ejs */
/* Page wrapper for centering */
/* Login error message */
.error {
  margin: 12px 0 18px;
  padding: 12px 14px;
  border-left: 4px solid #ff3b3b;
  background: rgba(255, 59, 59, 0.08);
  color: #ff4d4d;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 6px;
  animation: fadeIn 0.25s ease-out;
} 

.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 200px); /* adjust for header/footer if needed */
}

/* Login card */
.login-box {
  background: rgba(20, 20, 20, 0.95);
  padding: 32px 40px;
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  width: 400px;
  text-align: center;
}

/* Heading */
.login-box h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: #fff;
}

/* Form */
.login-box form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Labels & inputs */
.login-box label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: #bbb;
  font-family: sans-serif;
  text-align: left;
}

.login-box input {
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border 0.2s ease;
}

.login-box input:focus {
  border-color: #c72828; /* your red accent */
}

/* Submit button */
.login-box button[type="submit"] {
  padding: 10px 40px;
  margin: 16px auto 0;
  width: max-content;
  border: none;
  border-radius: 6px;
  background: #c72828; /* your red accent */
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-box button:hover {
  background: #922323;
  color: #ffffff;
}



/* New stuff */
.login-page {
  position: relative;
  height: calc(100vh - 200px); /* keep your margin-top */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #070707;
}

/* Spotlight + vignette */
.login-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background:
    radial-gradient(900px 600px at 50% 35%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(1200px 900px at 50% 60%, rgba(255,255,255,0.04), transparent 65%),
    radial-gradient(1400px 1000px at 50% 50%, rgba(0,0,0,0.25), rgba(0,0,0,0.92));
  filter: blur(10px);
}

/* Subtle grain so it doesn't feel flat */
.login-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background-image:
    radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.10;
  mix-blend-mode: overlay;
}

/* Keep the login card above the background */
.login-box {
  position: relative;
  z-index: 1;
  background: rgba(3, 3, 3, 0.9);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 25px 80px rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
}
/* End of new stuff */




/* end of login.ejs */

/* dashboard.ejs */
.admin-page {
  padding: 16px 20px 40px;
  color: #e7e7e7;
  background: #0a0a0a; /* matches your site */
  margin-top: 100px;
}
.admin.btn-send {
  text-decoration: none;
  padding: 10px 12px;
  font-size: 18px;
  margin: 20px 0 10px;
}

/* Header */
.admin-header {
  margin: 10px 0 18px;
  border-bottom: 1px solid var(--border, #2a2a2a);
  padding-bottom: 10px;
  text-align: center;
}
.admin-header h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  letter-spacing: .05em;
  margin: 0;
  color: #fff;
}
.admin-greeting { color: #bdbdbd; margin: 6px 0 0; }

.admin-section.user-management {
  width: 45%;
  padding: 18px 40px 22px;
}

.user-title {
  font-size: 26px;
  margin: 0;
}

/* Sections */
.admin-section {
  margin: 40px auto 80px;
  padding: 18px 18px 22px;
  width: 90%;
  background: rgba(18,18,18,.95);
  border: 1px solid var(--border, #2a2a2a);
  box-shadow: 0 0 20px rgba(0,0,0,.55);
}

/* stack title + both tab rows */
#sec-builds .admin-section__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

/* both rows of tabs */
#sec-builds .tabs-row {
  display: flex;
  gap: 8px;
}

/* show/hide: kind panels & action panels */
#sec-builds .build-kind-panel { display: none; }
#sec-builds .build-kind-panel.is-active { display: block; }

#sec-builds .panel { display: none; }
#sec-builds .panel.is-active { display: grid; gap: 14px; }

.admin-section .panel { display: none; }
.admin-section .panel.is-active { display: grid; gap: 14px; }

.admin-section__head {
  display: flex;
  flex-direction: column;   /* stack title + tabs */
  align-items: flex-start;  /* left align both */
  gap: 12px;
  margin-bottom: 14px;
}
.admin-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  letter-spacing: .04em;
  margin: 0;
  color: #fff;
}

/* Tabs (Add / Update / Delete) */
.admin-section__tabs {
  display: flex;
  gap: 8px;
}
.tabs-build-action[hidden] { display: none !important; }
.tab {
  padding: 8px 12px;
  border: 1px solid #333;
  background: #141414;
  color: #d7d7d7;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .08em;
  transition: border .2s ease, background .2s ease;
}
.tab:hover { border-color: #555; }
.tab.is-active {
  border-color: var(--cta-red, #c72828);
  background: rgba(199,40,40,.7);
}

/* Panels */
.panel { display: none; }
.panel.is-active { display: block; }

/* Hide all panels by default */
.admin-section__body form.panel {
  display: none;
}

/* Only the active panel shows (and uses grid layout) */
.admin-section__body form.panel.is-active {
  display: grid;
  gap: 14px;               /* keep your spacing here */
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 720px) {
  .admin-grid { grid-template-columns: 1fr; }
}

/* Fields */
.admin-section label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #bdbdbd;
}

.admin-section input,
.admin-section select,
.admin-section textarea {
  padding: 10px 12px;
  margin-bottom: 10px;
  background: #0f0f0f;
  color: #fff;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
  text-wrap: auto;
}
.admin-section input:focus,
.admin-section select:focus,
.admin-section textarea:focus {
  border-color: var(--cta-red, #c72828);
  box-shadow: 0 0 0 2px rgba(199,40,40,.25);
}

/* Buttons */
.btn-red {
  justify-self: start;
  padding: 12px 16px;
  border: 1px solid var(--cta-red, #c72828);
  background: var(--cta-red, #c72828);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: filter .2s ease, transform .02s ease-in-out;
}
.btn-red:hover { filter: brightness(1.08); }
.btn-red:active { transform: translateY(1px); }

.btn-outline {
  justify-self: start;
  padding: 12px 16px;
  border: 1px solid #8a2a2a;
  background: transparent;
  color: #ffbdbd;
  border-radius: 8px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .06em;
  cursor: pointer;
  transition: border .2s ease, color .2s ease, background .2s ease;
}
.btn-outline:hover {
  border-color: var(--cta-red, #c72828);
  color: #fff;
  background: rgba(199,40,40,.12);
}

/* Flash */
.admin-flash { margin: 8px 0 14px; }
.admin-flash .ok  { color: #9be29b; }
.admin-flash .bad { color: #ff9e9e; padding-left: 50px; }

.photo-grid{display:grid;grid-template-columns:repeat(8, 1fr);gap:12px}
.photo-card{background:#161616;border:1px solid #2a2a2a;border-radius:10px;padding:8px}
.photo-card img{opacity:1 !important; width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:6px}
.photo-card form{display:flex;flex-direction:column;gap:6px;margin-top:8px}
.photo-card button{font-size:.85rem}
/* 8 columns, items align to top */
#sec-forsale .photo-grid{
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: start;
}

/* let items shrink to the column width */
#sec-forsale .photo-card{
  min-width: 0;
}

/* prevent form/content from forcing the card wider */
#sec-forsale .photo-card form{
  min-width: 0;
  width: 100%;
  align-items: stretch; /* your forms are column; stretch elements full width */
}

/* file input & buttons don't overflow the column */
#sec-forsale .photo-card input[type="file"]{
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

#sec-forsale .photo-card button{
  width: 100%;
}

#team-sort-list { list-style:none; margin:8px 0 12px; padding:0; }
#team-sort-list .team-sort-item{
  background:#171717; border:1px solid #2a2a2a; border-radius:8px;
  padding:10px 12px; margin-bottom:8px; cursor:grab;
  display:flex; gap:6px; align-items:baseline;
  width: 50%;
}
#team-sort-list .team-sort-item.dragging { opacity:.6; }

.section-image {
  display: block;
  margin-top: 12px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-image span {
  display: block;
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 4px;
}

/* Two-column layout: bullets+button | file input */
/* Bullets + section image side-by-side in admin builds */
.spec-grid {
  display: flex;
  align-items: flex-start;
  gap: 60px;          /* ~50–100px gap between bullets and image */
  flex-wrap: wrap;    /* allows wrapping on narrower screens */
}

/* Left column = bullets + add button */
.spec-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Keep the + Add bullet button compact */
.spec-left .spec-add {
  align-self: flex-start;
  width: auto;
  display: inline-flex;
}

/* Section image label inline, no top border when side-by-side */
.section-image {
  display: block;
  max-width: 320px;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Stack vertically on small screens */
@media (max-width: 800px) {
  .spec-grid {
    flex-direction: column;
    gap: 16px;
  }
}
.additional-photos {
  max-width: 420px;
}

.saving-overlay{
  position: fixed;
  inset: 0;
  display: none;              /* hidden by default */
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
}

.saving-overlay.is-on{ display: flex; }

.saving-card{
  padding: 22px 26px;
  border-radius: 14px;
  /* background: rgba(15,15,15,0.75);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5); */
  text-align: center;
  min-width: 280px;
}

.saving-spinner{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 4px solid rgb(69 22 22);
  border-top-color: rgb(242 65 65 / 85%);
  margin: 0 auto 14px;
  animation: saving-spin 0.9s linear infinite;
}

@keyframes saving-spin { to { transform: rotate(360deg); } }

.saving-text{
  font-size: 20px;
  font-weight: 700;
}

.saving-subtext{
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.8;
}


/* end of dashboard.ejs */

/* ------ team.ejs --------- */
/* === TEAM PAGE === */
/* ========= TEAM PAGE (poster grid, fixed overlay position) ========= */

.page-team {
  background: radial-gradient(circle at 40% 30%, #161616 0%, #030303 80%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.page-team .builds-title-wrap {
  padding: 0 24px;
  box-sizing: border-box;
}

/* Grid: two across desktop, full width mobile */
.page-team .team-grid{
  width: 90vw;
  margin: 32px auto 96px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}


/* Card: image on top, bio band below; hard edges */
.page-team .team-card{
  border: 1px solid #262626;
  border-radius: 0;
  background: transparent;
  overflow: hidden; /* keeps overlay inside the photo edges */
  flex: 1 1 calc(50% - 18px);   /* 2 columns with the 36px gap */
  display: flex;
  max-width: calc(50% - 18px);
  flex-direction: column;
  overflow: hidden;
}

/* Media wrapper defines the overlay’s positioning context */
.page-team .team-media{
  position: relative;
}
.page-team .team-media::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px; /* tweak */
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,0.7) 70%,
    #000 100%);
  pointer-events: none;
  z-index: 1;
}


/* Photo: fixed aspect so overlay position is consistent */
.page-team .team-photo{
  width: 100%;
  aspect-ratio: 3 / 2;     /* tweak to 16/9 or 4/3 if you prefer */
  object-fit: cover;
  display: block;
    /* Fade the last ~20px into the background color (#0b0d10) */
  /* -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 50px), transparent 100%);
          mask-image: linear-gradient(to bottom, #000 calc(100% - 50px), transparent 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover; */
  background-color: #0b0d10; /* so the fade blends into bio block */
  overflow: hidden;
  z-index: 1;
}

/* Nameplate overlay — anchored to a percentage of photo height */
:root { --team-plate-top: 62%; }  /* adjust this to move it up/down */
.page-team .team-meta{
  position: absolute;
  left: 15px;
  min-width: 0;
  width: max-content;
  max-width: 80%;
  bottom: 0px;
  transform: translateY(45%);   /* centers the plate on that anchor line */
  padding: 12px 60px 12px 24px;
  background: #1d1d1d;
  border: 1px solid #2a2a2a;
  backdrop-filter: blur(20px);
  box-shadow: inset 0 0 20px 8px rgba(0, 0, 0, .55);
  z-index: 3;
}



/* Text */
.page-team .team-name{
  margin:0; color:#e8e8e8;
  font-size: 46px;
  font-weight:700; 
  letter-spacing:3px;
  font-family: 'Bebas Neue', sans-serif;
}
.page-team .team-role{
  margin:2px 0 0; 
  color:#b9b9b9; 
  font-size:18px;
  text-transform: capitalize;
}

/* Bio band — never affects overlay position */
.page-team .team-bio{
  margin:0;
  padding:60px 20px 20px;
  color:#cfcfcf; 
  line-height:1.65;
  font-size: 20px;
  background:#030303;
  z-index: 2;
}

/* .page-team .team-bio::after {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 61px;
    height: 99px;
    background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0) 0%,
    #000000 50%, 
    rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%, transparent 100%); 
    mask-image: linear-gradient(to bottom, transparent 0%, #000000 50%, transparent 100%);
} */


/* Optional: nudge overlay a bit lower on small screens */
@media (max-width: 820px){
  :root { --team-plate-top: 68%; }
}


/* -------- end of team.ejs ----------- */


/* ------- shop.ejs ---------- */
/* ---------------- Shop Page ---------------- */
main.page.shop {
  background: radial-gradient(circle at 40% 30%, #161616 0%, #030303 80%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #e8e8e8;
}

.shop-coming-soon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
}

.shop-message {
  max-width: 800px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.9), rgba(5, 5, 5, 0.95));
  /* border: 1px solid rgba(255, 255, 255, 0.08); */
  padding: 60px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  animation: shopFadeIn 0.4s ease-out both;
  background: #2a282875;
}

.shop-message h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #f0f0f0;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.shop-message h1 span {
  background: linear-gradient(90deg, #f1f1f1 0%, #d22 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2.5px;
}

.shop-message p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.7;
  letter-spacing: 0.3px;
  margin: 30px 60px 20px;
}

/* Fade animation */
@keyframes shopFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------- end of shop.ejs -------- */

/* ------ builds-index -------- */
.builds-index {
  background: radial-gradient(circle at 40% 30%, #161616 0%, #030303 80%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}
/* ------- end of builds-index ------- */

/* Only on pages that opt-in with .gate-hover */
body.gate-hover:not(.hover-ready)::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:2147483647;     /* above everything */
  pointer-events:auto;    /* blocks :hover underneath */
  background:transparent; /* invisible overlay */
}
body.gate-hover.hover-ready::before{ display:none; }

/* Optional: if anything still sneaks through, pause motion */
body.gate-hover:not(.hover-ready) :is(
  *:hover, *:hover *, *:hover::before, *:hover::after, *:hover *::before, *:hover *::after
){
  animation: none !important;
  animation-play-state: paused !important;
  transition: none !important;
}

/* build title FIXED testing */


/* end of build title FIXED */

  html.is-ready .btp img.is-loaded {
    /* beat the global rule */
    transition: none !important;
  } 

@media (min-width: 1439px) {
  .btp img {
    width: 35% !important;
  }
  .cta-box {
    width: 55%;
  }
}



/* full screen gallery viewer */
/* === Lightbox (fullscreen viewer) === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Solid, reliable background: */
  background-color: rgba(0,0,0,0.9);
  isolation: isolate;
  will-change: opacity, backdrop-filter;
  contain: paint;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* transition: opacity .5s ease,
  backdrop-filter .5s ease, 
  -webkit-backdrop-filter .5s ease; */
}



.lightbox.closing::before {
  opacity: 0;                            /* fade the backdrop on close */
}

.lightbox.closing {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  backdrop-filter: blur(0px) grayscale(0);
  -webkit-backdrop-filter: blur(0px) grayscale(0);
  transition: opacity .4s ease,
  backdrop-filter .4s ease .4s, 
  -webkit-backdrop-filter .4s ease .4s;
}

.lightbox.open { 
  opacity: 1;
  visibility: visible;
  pointer-events: auto; 
  backdrop-filter: blur(4px) grayscale(1);
  -webkit-backdrop-filter: blur(4px) grayscale(1);
  transition: opacity .5s ease,
  backdrop-filter .5s ease, 
  -webkit-backdrop-filter .5s ease;
}
.lightbox.open::before {
  opacity: 1;
}


.lightbox__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  place-items: center;
  padding: 2vh 4vw;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 1;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 60px rgba(0,0,0,.6);
  opacity: 1;
  filter: none !important;
  will-change: transform,;
  transition: transform .2s ease, opacity .25s ease;
  object-position: center;
  margin: auto;
  transform-origin: 50% 50%;
  /* transform-origin: 0 0 !important; */
}

.lightbox__spinner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: transparent;
}

.lightbox__spinner::after {
  content: "";
  width: 36px;
  height: 36px;
  border: 3px solid transparent;
  border-top-color: #f12c2c;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.lightbox__spinner[hidden] {
  display: none !important;
}

.lightbox__btn {
  position: absolute;
  top: 24px;
  padding: 12px 16px;
  background: rgba(25,25,25,.9);
  /* border: 1px solid rgba(255,255,255,.08); */
  border: none;
  color: #e8e8e8;
  text-transform: uppercase;
  letter-spacing: .06em;  
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  z-index: 2;
  background: radial-gradient(92px 130px at top, rgb(0, 0, 0) 0%, rgba(25, 25, 25, 0) 70%), rgba(25, 25, 25, 0%)
}

.lightbox__close { 
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 60px 10px;
}

.lightbox__prev,  
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  padding: 18px 20px;
  font-size: 44px;
  height: 100%;
  width: 140px;
}
.lightbox__prev { 
  left: 0; 
  background: linear-gradient(90deg, 
    rgba(0, 0, 0, 0.95) 0%, 
    rgb(0 0 0 / 85%) 20%, 
    rgba(0, 0, 0, 0.7) 40%, 
    rgba(0, 0, 0, 0.4) 70%, 
    rgba(0, 0, 0, 0.0) 100%);
  border: none;
}

.lightbox__next { 
  right: 0px;
  background: linear-gradient(270deg, 
    rgba(0, 0, 0, 0.95) 0%, 
    rgb(0 0 0 / 85%) 20%, 
    rgba(0, 0, 0, 0.7) 40%, 
    rgba(0, 0, 0, 0.4) 70%, 
    rgba(0, 0, 0, 0.0) 100%);
  border: none;
}

/* new stuff */

/* end of new stuff */

.lightbox__counter {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  color: #cfd8e3;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: .08em;
  background: rgba(20,20,20,.9);
  border: 1px solid rgba(255,255,255,.08);
  padding: 10px 80px 5px;
  z-index: 2;
  background: radial-gradient(120px 120px at bottom, rgb(0, 0, 0) 0%, rgba(25, 25, 25, 0) 70%), rgba(25, 25, 25, 0%);
  border: none;
}

/* Strong hinting for interactivity */
[data-lightbox] { cursor: zoom-in; }

/* Default while lightbox is open = can zoom IN */
.lightbox.open .lightbox__img {
  cursor: zoom-in;
}

/* When already at max zoom, show zoom-out icon (click will back out) */
.lightbox.is-maxzoom .lightbox__img {
  cursor: zoom-out;
}
.lightbox.is-maxzoom .lightbox__img:active {
  cursor: zoom-out; /* keep zoom-out while clicking */
}

/* Only AFTER the drag threshold is passed (JS adds .is-dragging)
   do we swap to the grab/grabbing hand */
.lightbox.is-dragging .lightbox__img,
.lightbox.is-maxzoom.is-dragging .lightbox__img {
  cursor: grabbing !important;
}


/* end of full screen gallery viewer */


/* IG token admin page */
#token {
  background: #030303;
  color: #ffffff;
}

.flash-success {
  background: #0f8a3a;        /* nice clean green */
  color: white;
  padding: 12px 18px;
  border-radius: 6px;
  margin: 20px 0;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.25);
  display: inline-block;
  animation: flashPulse 0.35s ease-out;
}

@keyframes flashPulse {
  0%   { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.admin-quick-links {
  margin: 40px auto;
  padding-left: -18px;
  width: 90%;
  display: flex;
  gap: 20px;
}

/* IG-style gradient button */
.btn-ig-token {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: linear-gradient(20deg,
      #feda75,
      #fa7e1e,
      #d62976,
      #962fbf,
      #4f5bd5);
  background-size: 300% 300%;
  transition: background-position 0.5s ease, transform 0.25s ease;
  box-shadow: 0 0 10px rgba(255, 0, 130, 0.25);
  opacity: 1;
}

.btn-ig-token.new-user {
  background-image: linear-gradient(351deg,
    #c1c0c0,
    #a2a2a2,
    #797979,
    #3c3c3c,
    #0d0d0d
  );
}

/* Glow + gradient shift on hover */
.btn-ig-token:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 2px 16px rgba(255, 0, 130, 0.45);
  opacity: 1;
}

.btn-red.back {
  text-decoration: none;
}

p.success {
  background: green;
  padding: 5px;
  width: 60%;
  text-align: center;
  border-radius: 5px;
  margin: 16px auto;
}

.password-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.password-wrap input[type="password"],
.password-wrap input[type="text"] {
  flex: 1;          /* ← this is the key */
  width: 100%;
}

.toggle-password {
  background: none;
  border: 1px solid var(--border);
  color: inherit;
  padding: 6px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  margin-bottom: 10px;
  width: 15%;
  transition: background 0.3s ease;
  text-transform: uppercase;
}
.login-page .toggle-password {
  margin-bottom: -6px;
}



/* End of IG token page */



.hero-glass-divider{
  height: 74px;
  position: relative;
  z-index: 10;
  pointer-events: none;

  background: rgba(18,18,18,0.40);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);

  /* IMPORTANT: fade the element itself out toward the bottom */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 35%,
    rgba(0,0,0,0.85) 55%,
    rgba(0,0,0,0.45) 75%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 35%,
    rgba(0,0,0,0.85) 55%,
    rgba(0,0,0,0.45) 75%,
    rgba(0,0,0,0) 100%
  );

  border-top: 1px solid rgba(255,255,255,0.10);

  box-shadow:
    0 16px 38px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.07);
  overflow: hidden;
  margin-bottom: -16px;
}


/* New Admin User Page */
.new-user .admin-section {
  width: 30%;
}
.admin-back-link {
  display: inline-block;  
  margin: 14px 0;
  font-size: 1rem;
  color: #c43b3b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.admin-back-link:hover {
  color:#ff4f4f;
}

/* End of New Admin User Page */



/* mobile media queries */

@media (max-width: 426px) {
  .nav-logo-img {
    height: 26px !important;
  }
  .nav-toggle {
    height: 18px;
    width: 24px;
  }
  .site-header {
    padding: 8px 16px;
  }
  .contact-form.slim input, .contact-form.slim textarea {
    font-size: 12px;
  }
  .btn-send {
    font-size: 16px;
  }
  .shop-message p {
    margin: 0px;
  }
  .builds-title-wrap {
    width: 90%;
    margin: 0 auto;
  }

  .wip-heading {
    font-size: 22px !important;
    padding: 4px 30px 4px 10px;
    box-shadow: inset 0px 0px 10px 0px #000000 !important;
  }
  .wip-heading::after {
    width: 20px;
  }
  .wip-paragraph {
    font-size: 12px !important;
    padding: 14px;
  }

  .page-team .builds-title-wrap {
    padding: 0;
  }
  .page-team .team-name {
    font-size: 19px !important;
  }
  .page-team .team-role {
    font-size: 12px;
  }
  .current-builds .builds-title-wrap {
    width: 100%;
    padding: 0;
  }
  .hero-logo {
    width: 60vw !important;
  }
  .lightbox__counter {
    padding: 10px 50px 5px;
  }

  .btp-block {
    height: 12px !important;
  }
  .adtlPhotos {
    font-size: 26px !important;
    padding: 0 24px;
  }
  .btp-block::before {
    height: 3px;
  }
  .cta-box {
    gap: 10px !important;
  }
  .cta-heading {
    font-size: 20px !important;
    padding: 0 0px;
    text-align: left;
  }
  .cta.reveal {
    padding: 60px 0;
  }
  .btn-cta {
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 3px;
  }
  .btn-cta > span {
    font-size: 12px !important;
  }
  .tick {
    font-size: 18px;
  }
  .footer-socials .fa-facebook-f, .footer-socials .fa-instagram {
    font-size: 16px;
  }
  .footer-socials {
    margin-bottom: 4px;
  }
  footer {
    font-size: 8px;
    padding: 0;
  }
  footer p {
    margin-top: 0;
  }
  .nav-links a {
    margin: 0 20px 0 0;
  }
  .band-text {
    font-size: 16px;
  }
  .btp img {
    width: 70% !important;
  }
  .for-sale-divider {
    /* width: 90% !important; */
    height: 6px;
    margin: 80px auto 0;
  }
  .page.forSale .wip-intro {
    margin: 40px auto 0;
  }
  .page.forSale .btn-send {
    margin: 0;
    font-size: 12px !important;
    padding: 2px 4px !important;
  }
  .forSaleContact h2 {
    font-size: 12px !important;
    padding: 0 26px! important;
    text-align: center;
  }
  .nav-links .nav-account {
    right: 20px;
  }
  .nav-overlay::before {
    background-image: none;
  }
  .build-title-sticky {
    font-size: 12vw !important;
  }


  .band--first .band-inner {
      height: 550px;
    }
    /* Band inner: full-width info over blurred media background */
  .band-inner {
    position: relative;
    display: block;        /* stack naturally */
    padding: 0;
    overflow: hidden;
    height: 450px;
  }

  .band-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .band--left, .band--right {
    padding: 20px;
  }

  .band-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) blur(2px);  /* darken + blur background */
    transform: scale(1.1);              /* slight zoom for depth */
  }

  .band--left .band-media img, .band--right .band-media img {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .band-info {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(3px);        /* soft glass effect */
    -webkit-backdrop-filter: blur(3px);
    color: #f1f1f1;
    text-align: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    gap: 16px;
  }

  .band--left .band-info, .band--right .band-info {
    background: rgba(0, 0, 0, 0.55);
  }



  body.show-completed .band--left .band-inner,
  body.show-completed .band--right .band-inner {
    flex-direction: column !important;
  }

  body.show-completed .band--left .band-media,
  body.show-completed .band--right .band-media {
    order: 0 !important;
    position: relative;
    inset: auto;
    height: auto;
  }

  body.show-completed .band--left .band-info,
  body.show-completed .band--right .band-info {
    order: 1 !important;
  }

  body.show-completed .band--left .band-media img,
  body.show-completed .band--right .band-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    -webkit-mask-image: none;
    mask-image: none;
  }



  .band-text {
    max-width: 100%;
    font-size: 16px !important;
    line-height: 1.6;
  }

  .band-title {
    font-size: 36px !important;
    margin-bottom: 14px;
  }

  .band-info .btn-send {
    font-size: 14px;
    padding: 10px 24px;
    margin-top: 20px;
  }
  .hero-top {
    height: 70vh;
  }
  .home-hero {
    height: auto;
    min-height: auto;
  }
  .build-tile {
    height: auto;
  }
    .builds-landing {
    margin: 56px auto 0 !important;
    width: 65vw;
    height: auto;
    flex-direction: column;

  }
  .overlay h2 {
    font-size: 35px !important;
  }

  .block .info-inner {
    min-height: 200px;

  }

    .block .info-inner h2 {
    height: 60px !important;
    font-size: 26px !important;
    padding: 6px 12px;
  }


  .info-inner ul {
    font-size: 13px;
  }
  .builds-completed .builds-title-wrap {
    width: auto;
  }
  body.is-home .btp-block {
    display: none !important;
  }
  .builds-index footer::before {
    display: none;
  }
  .builds-index .site-header::before {
    display: none;
  }
  .info-inner ul {
    padding: 20px 20px 20px 30px;
  }
  .lightbox__prev, .lightbox__next {
    width: 40px;
  }
  .lightbox_counter {
    padding: 5px 67px 2px;
  } 
  .lightbox_close {
    padding: 5px 60px 5px;
  }
  .cta-ticker .ticker__track {
    padding: 6px 0;
  }
  .ticker {
    gap: 9px;
  }
  .ticker__track {
    gap: 20px;
  }
  .ticker__track .tick {
    font-size: 12px !important;
  }
  .tick::before, .ticker__track::after {
    height: 12px;
    width: 4px;
    left: -13px;
  }
  .cta-ticker .ticker__track::after {
    height: 12px;
    width: 4px;
    margin-left: -13px;
  }

  .home-contact-box p {
    font-size: 11px;
    margin: 0 0 2px !important;
  }
  .contact-cta__label {
    font-size: 10px;
  }
  .contact-cta__arrow {
    display: none;
  }
  .social-head {
    margin: 0;
    gap: 20px;
  }
  .scroll-cue {
    display: none;
  }
  .home-hero-spacer {
    height: calc(70vh - 34.41px);
  }

  .show-completed .gallery-grid {
    padding: 0px 24px 20px;
  }
  .contact-header h1 {
    margin: 10px 0;
  }
  .builds-index .site-header::after {
    content: none;
  }
  .info-inner ul {
    font-size: 13px !important;
  }
  .block .media img {
    min-height: 300px;
  }
  .block .info {
    min-height: 300px;
  }

}


@media (min-width: 427px) {
  .btp-block {
    display: flex;
  }
  .btp {
    display: none;
  }
}






@media (max-width: 426px) {
  .btp {
    display: block;
    overflow: hidden;
    width: 100%;
    height: auto;
    padding: 4px 0;
    background: #030303;          /* your site black */
    position: relative;
    text-align: center;
    isolation: isolate;
    border: none;


  }
  .btp::before {
    
  }
  

  .btp-slider {
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 4px 0;
    background: #030303;          /* your site black */
    position: absolute;
    bottom: 0;
    isolation: isolate;
    opacity: .8;
    background: linear-gradient(to bottom, rgba(3,3,3,0) 30%, #f12c2c70 100%);
    isolation: isolate; /* keeps the gradient separate from children */
  }

  /* edge fades so the loop feels continuous */
  .btp-slider::before,
  .btp-slider::after {
    content: "";
    position: absolute; top: 0; bottom: 0; width: 30vw;
    pointer-events: none; z-index: 2;
  }
  .btp-slider::before { left: 0;  background: linear-gradient(to left, #0b0d1000, #030303); }
  .btp-slider::after  { right: 0; background: linear-gradient(to right, #0b0d1000, #030303); }

  .btp-track {
    --speed: 50s;       /* slower = bigger number */
    --gap: 0vw;
    display: flex;
    align-items: center;
    gap: var(--gap);
    width: max-content;                 /* allow >100% width */
    animation: btp-marquee var(--speed) linear infinite;
  }

  .btp-track img {
    height: 34px;                        /* tweak to taste */
    flex: 0 0 auto;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
  }

  @keyframes btp-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); } /* ensure track is >200% viewport via repeats */
  }
}

/* Hide slider above 426px (keep your existing desktop BTP) */
@media (min-width: 427px) {
  .btp-slider { display: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btp-track { animation: none !important; }
}


@media (max-width: 426px){
  .page-team .team-grid{
    width: 94vw;
    gap: 18px;
    margin: 22px auto 70px;
  }

  /* 1 column */
  .page-team .team-card{
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }

  /* tighten the overlay plate + bio padding */
  .page-team .team-meta{
    left: 12px;
    min-width: 0;
    max-width: calc(100% - 24px);
  }

  .page-team .team-bio{
    padding: 52px 16px 18px;
    font-size: 12px;
  }
}


@media (max-width: 769px){
  .page-team .team-grid{
    width: 92vw;
    gap: 24px;
    margin: 28px auto 80px;
  }

  /* keep 2 columns */
  .page-team .team-card{
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 12px);
  }

  /* prevent the name plate from forcing overflow */
  .page-team .team-meta{
    left: 12px;
    min-width: 0;
    max-width: calc(100% - 57px);
    padding: 12px 30px 12px 12px;
  }
  .page-team .team-name {
    font-size: 24px;
  }
}



@media (max-width: 769px) {
  .nav-logo-img {
    height: 36px !important;
  }
  .hero-logo {
    width: 50vw;
  }
  .meta-box {
    padding: 8px;
  }
  .meta-box h2 {
    font-size: 14px;
  }
  .meta-box .cta {
    font-size: 12px;
  }

  .btp img {
    width: 50%;
    opacity: .5;
    transform: opacity 200ms linear;
    will-change: opacity;
  }

  body.gate-hover::before,
  body.gate-hover:not(.hover-ready)::before {
    content: none !important;
    display: none !important;
    pointer-events: none !important;
  }

  body.gate-hover:not(.hover-ready) :is(*, *::before, *::after) {
    animation: unset !important;
    animation-play-state: running !important;
    transition: unset !important;
  }
  .builds-landing {
    margin: 72px auto 0;
    /* min-height: 100dvh;
    height: auto; */
  }
  .adtlPhotos {
    font-size: 30px;
    margin: 0;
  }
  .block .info-inner {
    min-height: 400px;
    max-height: 500px;
  }
  .info-inner ul {
    font-size: 20px;
  }
  .block .info-inner h2 {
    height: 90px;
    font-size: 40px;
  }
  .band-text {
    font-size: 20px;
  }
  .band-title {
    font-size: 5vw;
  }
  .btn-send {
    padding: 10px 24px;
  }
  .btp-block {
    font-size: 22px;
    height: 14px;
  }
  .home-contact {
    margin: 0 0 20px;
    height: 200px;
  }
  .home-contact-box h2 {
    font-size: 32px;
  }
  .contact-cta {
    padding: 6px 12px;
  }
  .scroll-cue__text {
    font-size: 11px;
  }
  .scroll-cue__icon {
    height: 20px;
    width: 16px;
  }
  .forSaleContact h2 {
    padding: 0 140px;
    font-size: 20px;
  }
  .page.forSale .btn-send {
    font-size: 20px;
    margin: 2px 0;
    padding: 4px 4px;
  }
  .page.forSale .wip-heading {
    font-size: 40px;
  }
  .cta-heading {
    font-size: 30px;
  }
  .btn-cta > span {
    font-size: 14px;
  }
    .cta-ticker .ticker__track {
    padding: 6px 0;
  }
  .ticker {
    gap: 9px;
  }
  .ticker__track {
    gap: 20px;
  }
  .ticker__track .tick {
    font-size: 12px !important;
  }
  .tick::before, .ticker__track::after {
    height: 12px;
    width: 4px;
    left: -13px;
  }
  .cta-ticker .ticker__track::after {
    height: 12px;
    width: 4px;
    margin-left: -13px;
  }
  .more-info {
    font-size: 13px;
  }

}


/* end of mobile media queries */