
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100..700;1,100..700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");

/* ------------------------------
   Design tokens
------------------------------ */
:root {
  /* fonts */
  --ff-sans: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --ff-mono: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* colors */
  --c-white: #ffffff;
  --c-orange: #ff5511;
  --c-orange-dark: #d53000;

  /* type scale (clamped for laptop -> 4K) */
  --fs-nav: clamp(1rem, 0.85rem + 0.5vw, 1.25rem);
  --fs-hero: clamp(1.2rem, 0.85rem + 1vw, 1.6rem);
  --fs-subhero: clamp(1.05rem, 0.8rem + 0.85vw, 1.5rem);

  --fs-h2: clamp(1.4rem, 1.05rem + 1vw, 2rem);     /* section headings */
  --fs-body: clamp(0.95rem, 0.85rem + 0.35vw, 1.05rem);

  --fs-body2: clamp(1.4rem, 1.05rem + 1vw, 2rem);   

  /* small type (you use lots of 0.55–0.65rem; this keeps it readable on 4K) */
  --fs-sm: clamp(0.8rem, 0.72rem + 0.2vw, 0.95rem);
  --fs-xs: clamp(0.75rem, 0.68rem + 0.18vw, 0.9rem);

  /* spacing */
  --pad-x: clamp(1.25rem, 0.9rem + 1vw, 2rem);
  --pad-section: clamp(1.5rem, 1rem + 1.25vw, 2.5rem);

  /* underline */
  --u-offset: 0.5em;

  /* footer alignment */
  --footer-right-offset: 50vw;
}

/* ------------------------------
   Resets / base
------------------------------ */

/* GLOBAL TYPE RULES */
html, body {
  font-family: "IBM Plex Mono", monospace !important;  /* make mono the default everywhere */
  font-style: italic !important;                      /* everything italic */
  font-weight: 100 !important;                        /* everything ultra light */
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-sans);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-white);
  text-decoration: underline;
  text-underline-offset: var(--u-offset);
}

a:hover {
  color: var(--c-orange) !important;
}

/* =========================================================
   NAVBAR
========================================================= */
.navbar {
  background: transparent;
  padding: 1.5rem var(--pad-x);
}

.navbar-nav .nav-link {
  color: var(--c-white);
  font-family: var(--ff-mono);
  font-weight: 100;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  margin: 0 0.8rem;
  transition: color 0.3s ease, opacity 0.3s ease, text-underline-offset 0.3s ease;
  font-size: var(--fs-nav);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.nav-link.active {
  color: var(--c-orange) !important;
  text-decoration: underline;
  text-underline-offset: calc(var(--u-offset) + 0.15em);
}

.navbar-brand img {
  height: 200px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}

.navbar-toggler {
  color: var(--c-white);
  border: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  border: none;
  background: var(--c-white);
  box-shadow: 0 7px 0 var(--c-white), 0 14px 0 var(--c-white);
}

.navbar-toggler:focus,
.navbar-toggler:focus-visible {
  outline: none;
  box-shadow: none;
}

.navbar-standalone {
  position: absolute;
  top: 0;
  width: 100%;
  border: none;
  z-index: 1000;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;          /* required to crop the overscan */
  display: grid;
  grid-template-rows: auto 1fr;
  background: url("img/bg.png") center/cover no-repeat; /* fallback */
}

.hero-bg-video{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
   pointer-events: none;
   overflow: hidden;
}

/* FULL COVER + OVERSCAN (ignores aspect ratio, guarantees no gaps) */
.hero-bg-video iframe{
   width: 100vw;
   height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
   min-height: 100vh;
   min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

/* optional contrast layer */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}


/* hero content above background */
.hero > nav,
.hero > .play-btn,
.hero > .scroll-down-btn {
  /* position: relative; */
  z-index: 2;
}

.hero-bg-video { z-index: 0; }



.hero-content {
  display: grid;
  place-items: center;
  padding: 0 var(--pad-x);
  max-width: 80%;
  margin: 0 auto;
}

.hero-text {
  font-family: var(--ff-mono);
  color: var(--c-white);
  font-size: var(--fs-hero);
  font-weight: 100;
  font-style: italic;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem;
  padding-top: 0;
}

.play-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.play-btn img {
  height: 100px;
}

.scroll-down-btn {
  width: 100px;
  position: absolute;
  bottom: 1.5rem;
  left: calc(50vw - 50px);
  text-align: center;
  max-height: 100px;
  animation: scrollFloat 2.5s ease-in-out infinite;
}

.scroll-down-btn img {
  max-height: 50px;
}

@keyframes scrollFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(12px); }
  100% { transform: translateY(0); }
}

/* =========================================================
   VIDEO OVERLAY
========================================================= */
.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.video-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.video-wrapper {
  width: 90vw;
  height: 90vh;
  max-width: 1600px;
  position: relative;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}

.video-overlay.is-active .video-wrapper {
  transform: scale(1);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.video-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--c-white);
  font-size: 40px;
  font-weight: 100;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
}

.video-close:hover {
  opacity: 0.7;
}

/* =========================================================
   SECTION BASE
========================================================= */
section {
  min-height: 100svh;
  background: url("../img/gradientBG.png") center/cover no-repeat;
  font-family: var(--ff-mono);
  padding: var(--pad-section);
}

.half-section {
  min-height: unset;
  background: url("../img/gradientBG.png") center/cover no-repeat;
  font-family: var(--ff-mono);
  padding: var(--pad-section);
  border-bottom: 2px solid var(--c-orange);
}

.bg-orange {
  background: linear-gradient(var(--c-orange-dark), var(--c-orange));
}

#services_section .section-heading {
  font-weight: 100 !important;
}

.half-section-hero-content {
  display: grid;
  place-items: center;
  padding: 0 var(--pad-x);
  max-width: 95%;
  margin: 0 auto;
}

.sub-hero-text {
  font-family: var(--ff-mono);
  color: var(--c-white);
  font-size: var(--fs-subhero);
  font-weight: 100;
  font-style: italic;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem;
  padding-top: 0;
}

.section-heading-home {
  font-family: var(--ff-mono);
  color: var(--c-white);
  font-size: clamp(1.2rem, 0.85rem + 1vw, 1.6rem);
  font-weight: 100;
  font-style: italic;
  width: 90%;
  margin: 0 auto;
  line-height: 1.4;
}

/* =========================================================
   WORK CARDS (HOME / PORTFOLIO)
========================================================= */
.work-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 4px;
  text-decoration: none;
  color: var(--c-white);
  position: relative;
  overflow: hidden;
  min-height: 210px;
  width: 100%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.2s ease;
}

.work-card:hover {
  transform: translateY(-2px);
}

.work-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 1.5rem 2rem;
  text-align: left;
  min-height: 320px;
}

.work-copy h3,
.work-copy p {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem 0;
  color: var(--c-white);
}

.work-copy h3 {
  font-size: clamp(0.95rem, 0.85rem + 0.25vw, 1.05rem);
}

.work-copy p {
  font-size: var(--fs-sm);
  width: 100%;
}

.work-cta {
  color: var(--c-white);
  font-family: var(--ff-mono);
  letter-spacing: 0.08em;
  font-style: italic;
  font-weight: 100;
  text-transform: lowercase;
  width: fit-content;
  font-size: var(--fs-xs);
  text-decoration: underline;
  text-underline-offset: 0.6em;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.work-cta:hover {
  color: var(--c-orange);
}

/* alternate layout */
.work-right { grid-template-areas: "copy media"; }
.work-right .work-copy { grid-area: copy; text-align: left; }
.work-right .work-media { grid-area: media; }

.work-left { grid-template-areas: "media copy"; }
.work-left .work-media { grid-area: media; }
.work-left .work-copy { grid-area: copy; }

/* view all */
.view-all,
.view-all-services {
  color: var(--c-white);
  font-family: var(--ff-mono);
  font-style: italic;
  text-transform: lowercase;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 0.8em;
  font-size: var(--fs-xs);
}

.view-all:hover {
  color: var(--c-orange);
}

.view-all-services:hover {
  color: #F6B974 !important
}

/* =========================================================
   SERVICES LIST
========================================================= */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  margin: 0.1rem 0;
}

.services-list a {
  display: inline-block;
  text-decoration: none;
  color: var(--c-white);
  font-style: italic;
  font-weight: 100;
  letter-spacing: 0.06em;
  transition: opacity 0.3s ease, color 0.3s ease;
  font-size: clamp(1.35rem, 1rem + 1vw, 1.8rem);
}

.services-list a:hover {
  color: #F6B974 !important
}

/* =========================================================
   MOBILE FULLSCREEN NAV OVERLAY
========================================================= */
@media (max-width: 991.98px) {
  .mobile-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100svh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-nav.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(3px);
    z-index: -1;
  }

  .mobile-nav .navbar-nav {
    flex-direction: column;
    text-align: center;
  }

  .mobile-nav .nav-link {
    margin: 0.75rem 0;
    font-size: var(--fs-nav);
  }

  .navbar-toggler {
    position: relative;
    z-index: 1000;
  }

  .navbar-brand img {
    height: 160px;
  }

  .hero-content {
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-text {
    font-size: var(--fs-hero);
    margin: 0;
    padding: 0;
  }

  .play-btn { bottom: 2rem; }
  .play-btn img { height: 120px; }

  /* portfolio */
  #portfolio p { font-size: var(--fs-body); }

  .work-grid {
    margin: 0;
    padding: 0;
  }

  .work-card {
    grid-template-columns: 1fr;
    /* padding: 1.75rem 1.5rem; */
  }

  .work-media {
    order: 2;
    margin-top: 1.25rem;
    min-height: 210px;
  }

  .work-copy {
    order: 1;
    padding: 0;
    text-align: left;
    justify-content: flex-start;
  }


  .half-section {
    width: 100% !important;
    padding: 1rem;
  }

  .half-section-hero-content {
    max-width: 100% !important;
    margin: 0;
    padding: 1rem;
  }

  .sub-hero-text {
    font-size: var(--fs-subhero) !important;
  }
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  /*background: linear-gradient(180deg, #B88C64 0%, #F6B974 100%);*/
background: url("../img/footer_bk.svg") center/cover no-repeat; /* fallback */
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  position: relative;
}

.footer-inner {
  padding: 46px 10px 26px;
}

.footer-logo {
  position: absolute;
  width: 78px;
  bottom: 2rem;
  left: 2rem;
}

.site-footer a,
.site-footer span {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 1);
  text-decoration: none;
}

.site-footer a:hover { opacity: 0.7; }

.footer-cities-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 34px;
}

.footer-cities-row .city {
  font-size: 13px;
}

.footer-cities-row .city-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.50);
}

.footer-nav-row {
  margin-left: var(--footer-right-offset);
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 14px 64px;
  margin-bottom: 26px;
}

.footer-nav-row a { font-size: 14px; }

.footer-bottom-row {
  margin-left: 55vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 1);
}

.footer-legal a { color: inherit; }

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  font-weight: 400;
  font-size: 18px;
}

@media (max-width: 991px) {
  :root { --footer-right-offset: 0px; }

  .footer-nav-row {
    justify-content: center;
    grid-template-columns: repeat(2, max-content);
    gap: 12px 34px;
    margin-left: 0;
  }

  .footer-bottom-row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-left: 0;
  }

  .footer-logo { display: none; }
}

/* =========================================================
   SERVICES PAGE (accordion)
========================================================= */
.services-page {
  padding: 60px;
  background: radial-gradient(ellipse at center, #4a4a4a 0%, #1d1d1d 70%, #141414 100%);
  min-height: 100svh;
}

.services-page .section-heading { padding-left: 2rem; }

.services-accordion {
  max-width: 780px;
  margin: 2rem auto;
}

.svc-item { padding: 18px 0; }

.svc-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.svc-title {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
}

.svc-item.is-open .svc-title { color: var(--c-orange); }

.svc-chevron {
  font-family: var(--ff-mono);
  font-style: italic;
  font-size: 22px;
  color: var(--c-orange);
  transform: rotate(0deg);
  transition: transform 0.25s ease;
  line-height: 1;
}

.svc-item.is-open .svc-chevron { transform: rotate(180deg); }

.svc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.svc-panel-inner {
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  font-size: var(--fs-sm);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.svc-panel-inner p { margin: 0 0 14px 0; }
.svc-panel-inner p:last-child { margin-bottom: 0; }

.svc-item.is-open .svc-panel { max-height: var(--panel-height, 500px); }

@media (max-width: 991px) {
  .services-page { padding: 30px 15px; }
  .services-accordion { width: 100%; margin: 1rem auto; }
  .services-page .section-heading { margin-top: 100px; padding-left: 0; margin-left: 0; }
}

/* =========================================================
   AARON PAGE
========================================================= */
.aaron-page {
  background: radial-gradient(ellipse at center, #4a4a4a 0%, #1d1d1d 70%, #141414 100%);
  color: rgba(255, 255, 255, 0.78);
}

.aaron-container {
  width: 80%;
  margin: 0 auto;
  max-width: 980px;
}

.aaron-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.aaron-hero-img {
  width: 100%;
  max-width: 980px;
  height: auto;
  display: block;
}

.aaron-top { align-items: center;  }

.aaron-title {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  letter-spacing: 0.06em;
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.6rem);
  margin: 0 0 10px 0;
  color: rgba(255, 255, 255, 0.85);
}

.aaron-intro,
.aaron-body p {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 16px 0;
  max-width: 420px;
}

.aaron-link,
.work-link,
.press-link,
.cta-link,
.contact-email {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 0.6em;
  text-decoration-thickness: 1px;
}

.aaron-link:hover,
.work-link:hover,
.press-link:hover,
.cta-link:hover,
.contact-email:hover {
  color: var(--c-orange) !important;
  text-underline-offset: 0.75em;
}

.aaron-top-right {
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
}

.aaron-note {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 900;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.aaron-quote,
.work-quote { --shift: 0; --spread: 7; }

.aaron-quote {
    text-align: center;
}

.quote-text {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  letter-spacing: 0.03em;
  font-size: clamp(1.05rem, 0.9rem + 0.7vw, 1.35rem);
  line-height: 1.35;
  margin: 0 0 18px 0;
  text-align: center;
}

.quote-author {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 24px 0;
  text-align: center;
}

.quote-em { color: inherit !important; }
.quote-rest { color: rgba(255, 255, 255, 0.75); }

.quote-word {
  display: inline-block;
  white-space: pre;
  --t: clamp(0, (var(--shift) * var(--n) - var(--i)) / var(--spread), 1);
  color: rgb(
    calc(255 - (255 - 255) * var(--t)),
    calc(255 - (255 - 85) * var(--t)),
    calc(255 - (255 - 17) * var(--t))
  );
}

@media (max-width: 991px) {
  .aaron-top-right { justify-content: flex-start; padding-top: 12px; }
}

/* =========================================================
   ABOUT PAGE
========================================================= */
.about-page {
  background: radial-gradient(ellipse at center, #4a4a4a 0%, #1d1d1d 70%, #141414 100%);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
}

.about-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.22) 25%, transparent 25%, transparent 100%),
    linear-gradient(315deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.18) 22%, transparent 22%, transparent 100%);
  pointer-events: none;
  opacity: 0.6;
}

.about-container {
  width: 80%;
  margin: 0 auto;
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.section-heading {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 28px 0;
  font-size: var(--fs-h2);
}

.about-blurb,
.contact-blurb,
.talent-blurb {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  font-size: var(--fs-body);
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0;
}



.about-section-title {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  letter-spacing: 0.08em;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 4px 0;
  text-transform: lowercase;
}

.about-section-title.center { text-align: center; }

.about-section-sub {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.about-press-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.press-arrow {
  background: transparent;
  border: 0;
  color: var(--c-orange);
  font-size: 22px;
  font-family: var(--ff-mono);
  font-style: italic;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
}

.press-arrow:hover { opacity: 0.75; }

.about-press-grid {
  overflow: hidden;
  margin-top: 18px;
  position: relative;
}

.about-press-track {
  display: flex;
  gap: 32px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.about-press-track .press-col {
  flex: 0 0 50%;
  max-width: 50%;
}

.press-card { max-width: 420px; margin: 0 auto; }
.press-meta { font-size: var(--fs-xs); color: rgba(255,255,255,0.65); margin: 0 0 6px 0; }

.about-trusted { padding-top: 6px; padding-bottom: 20px; }

.trusted-logos {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 37px;
}

.trusted-logos img {
  height: 65px;
  /* opacity: 0.9; */
}

.about-cta { padding: 10px 0 30px; text-align: center; }

.cta-text {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  letter-spacing: 0.04em;
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin: 0 auto 10px auto;
}

@media (max-width: 991px) {
  .about-container { width: 90%; }
  .about-press-controls { justify-content: flex-start; margin-top: 14px; }
  .founder-card, .press-card { max-width: 520px; }
  .about-press-track .press-col { flex: 0 0 100%; max-width: 100%; }
}

/* =========================================================
   CONTACT PAGE
========================================================= */
.contact-page {
  background: radial-gradient(ellipse at center, #4a4a4a 0%, #1d1d1d 70%, #141414 100%);
  color: rgba(255, 255, 255, 0.78);
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}

.contact-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.22) 25%, transparent 25%, transparent 100%),
    linear-gradient(315deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.18) 22%, transparent 22%, transparent 100%);
  pointer-events: none;
  opacity: 0.6;
}

.contact-container {
  width: 80%;
  margin: 0 auto;
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.contact-cities-row {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 2vw;
  margin: 22px 0 44px;
}

.contact-cities-row .city {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: rgba(255, 85, 17, 0.95);
  text-decoration: none;
}

.contact-cities-row .city-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 85, 17, 0.55);
}

.contact-prompt {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  font-size: var(--fs-body);
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--c-white);
  max-width: 520px;
  margin: 0 0 18px 0;
}

.contact-image { width: 100%; }

@media (max-width: 991px) {
  .contact-container { width: 90%; }
  .contact-cities-row { margin: 18px 0 28px; }
  .contact-image { margin-top: 24px; max-width: 520px; }
}

/* =========================================================
   WORK PAGE
========================================================= */
.work-page {
  background: radial-gradient(ellipse at center, #4a4a4a 0%, #1d1d1d 70%, #141414 100%);
  color: var(--c-white);
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}

.work-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.22) 25%, transparent 25%, transparent 100%),
    linear-gradient(315deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.18) 22%, transparent 22%, transparent 100%);
  pointer-events: none;
  opacity: 0.6;
}

.work-container {
  width: 80%;
  margin: 0 auto;
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.work-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.work-hero-video {
  position: relative;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.work-hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.work-title {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  letter-spacing: 0.06em;
  font-size: clamp(1.2rem, 1rem + 0.7vw, 1.6rem);
  margin: 0 0 6px 0;
  color: var(--c-white);
}

.work-meta {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  margin: 0 0 12px 0;
  color: rgba(255, 85, 17, 0.95);
}

.work-body {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--c-white);
  margin: 0 0 24px 0;
}

.work-gallery { margin-top: 8px; margin-bottom: 22px; }

.work-shot {
  width: 100%;
max-width: 460px;
  margin: 0 auto 18px auto;
}

.work-quote { text-align: center; margin-top: 26px; }
.work-quote .quote-rest { color: var(--c-white); }


.work-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.work-card-title {
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  margin: 0 0 2px 0;
  color: var(--c-white);
}

.work-card-link {
  display: inline-block;
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  color: var(--c-white);
  text-decoration: underline;
  text-underline-offset: 0.6em;
  text-decoration-thickness: 1px;
  margin-bottom: 10px;
}

.work-card:hover .work-card-link {
  color: var(--c-orange);
  text-underline-offset: 0.75em;
}

@media (max-width: 991px) {
  .work-container { width: 90%; }
  .work-related-grid { grid-template-columns: 1fr; }
  .work-shot { max-width: 520px; }
}



/* FULL-BLEED DIVIDER (no overflow) */
.section-divider,
.work-divider {
  height: 1px;
  background: rgba(255, 85, 17, 0.55);
  margin: 26px 0;
  width: 100vw;              /* full bleed */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

html, body {
  overflow-x: hidden;
}


/* Founders */

/* FLOATING FOUNDER IMAGE */
/*.founder-float {*/
/*  width: 38%;*/
/*  max-width: 260px;*/
/*  margin-bottom: 0.5rem;*/
/*}*/

/*.founder-float img {*/
/*  width: 100%;*/
/*  height: auto;*/
/*  display: block;*/
/*}*/

/* LEFT founder (MC) */
/*.founder-float-left {*/
/*  float: left;*/
/*  margin-right: 2rem;*/
/*  shape-outside: inset(0);*/
/*}*/

/* RIGHT founder (V) */
/*.founder-float-right {*/
/*  float: right;*/
/*  margin-left: 2rem;*/
/*  shape-outside: inset(0);*/
/*}*/

/* Ensure text clears properly after */
/*.founder-meta::after {*/
/*  content: "";*/
/*  display: block;*/
/*  clear: both;*/
/*}*/

/*.founder-copy {*/
/*    text-align: justify;*/
/*}*/



/*@media (max-width: 991px) {*/
/*  .founder-float {*/
/*    float: none;*/
/*    width: 100%;*/
/*    max-width: 220px;*/
/*    margin: 0 auto 1.25rem;*/
/*    shape-outside: none;*/
/*  }*/

/*  .founder-meta {*/
/*    text-align: left !important;*/
/*  }*/
/*}*/

/* =======================================
   FOUNDERS — 2 COLUMN (NO WRAP) CSS ONLY
   ======================================= */

.founder-meta{
  position: relative;
  --founder-img: 260px;
  --founder-gap: 2.5rem;
  min-height: 1px;
}

/* Kill floats/shape-outside */
.founder-float,
.founder-float-left,
.founder-float-right{
  float: none !important;
  shape-outside: none !important;
  margin: 0 !important;
}

/* LEFT layout: image pinned left, text padded */
.founder-meta:has(.founder-float-left){
  padding-left: calc(var(--founder-img) + var(--founder-gap));
}

.founder-meta:has(.founder-float-left) .founder-float{
  position: absolute;
  left: 0;
  top: 0;
  width: var(--founder-img);
  max-width: var(--founder-img);
}

/* RIGHT layout: image pinned right, text padded */
.founder-meta:has(.founder-float-right){
  padding-right: calc(var(--founder-img) + var(--founder-gap));
}

.founder-meta:has(.founder-float-right) .founder-float{
  position: absolute;
  right: 0;
  top: 0;
  width: var(--founder-img);
  max-width: var(--founder-img);
}

/* Keep images responsive within the fixed column */
.founder-float img{
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile: stack (no absolute positioning) */
@media (max-width: 991px){
  .founder-meta{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .founder-meta .founder-float{
    position: static !important;
    width: 100% !important;
    max-width: 220px !important;
    margin: 0 auto 1.25rem !important;
  }
}







.talent-page {
  padding: 60px;
  background: radial-gradient(ellipse at center, #4a4a4a 0%, #1d1d1d 70%, #141414 100%);
  min-height: 100svh;
  padding-top: 10%;
}

.talent-page .section-heading { padding-left: 2rem; }


.talent-container{
  width: 80%;
  margin: 0 auto;
  max-width: 980px;
  position: relative;
  z-index: 1;
}




.talent-ticker{
  overflow: hidden;
  white-space: nowrap;
  margin: 24px 0 40px;
  width: 200%;
  margin-left: -50%;
}


.ticker-track{
  display: inline-flex;
  gap: 48px;
  animation: tickerScroll 60s linear infinite;
}

.float-left{
    float: left;
}

.float-right{
    float: right;
}

.ticker-group span{
  
  font-family: var(--ff-mono);
  font-style: italic;
  font-weight: 100;
  font-size: var(--fs-body2);
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 2rem;
}

@keyframes tickerScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}


.talent-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.talent-card{
  position: relative;
  cursor: pointer;
}

.talent-card img{
  width: 100%;
  display: block;
}

.talent-play{
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-style: italic;
  font-size: 0.6rem;
  color: #ff5511;
}

.talent-quote{
  text-align: center;
  margin-top: 32px;
}

.talent-item {
    cursor: pointer;
}


.aaron-community-h3, .aaron-community-h4, .aaron-community-p {
    color: #fff;
}

.aaron-community-h3{
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.aaron-community-h4{
    font-size: 1rem;
}

.aaron-community-p{
    font-size: 0.875rem;
    line-height: 1.6;
}

.aaron-community{
    max-width: 70%;
    margin: 0 auto 40px auto;
}




@media (max-width: 991px) {
  
.talent-container {
    width: 120%;
    margin: 100px -10%;
  }

  .talent-page .section-heading {
    padding-left: 0;
  }

  .aaron-community{
    max-width: 100%;
    margin: 0 auto 40px auto;
  }

  .aaron-container{
    width: 100%;
    margin: 120px auto !important;
  }

  .aaron-note{

    text-align: left;
    margin-top: 0;
    margin-bottom: 2rem;
  }

  

  .aaron-quote{
    margin-top: 2rem;
  }

  .founder-name.text-end {
    text-align: left !important;
  }
  
  .work-listing.container.talent-top{
    margin-top: 0;
  }

  .work-listing.container.talent-top.text-center{
    text-align: left !important;
  }
    
    
    .work_listing_content .section-heading-home{
    width:100%;
  }
}

.work_listing .section-heading {
    text-align: center;
}


/* ============================
   PAGE LOADER
============================ */
#pageLoader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000; /* above everything */
  display: grid;
  place-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#pageLoader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  width: 120px;
  opacity: 0.85;
  animation: loaderPulse 1.6s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%   { opacity: 0.4; transform: scale(0.98); }
  50%  { opacity: 1;   transform: scale(1); }
  100% { opacity: 0.4; transform: scale(0.98); }
}



