@charset "utf-8";
/* CSS Document */



html {
  scroll-behavior: smooth;
}


/* ----------------------------- */
/* Base                         */
/* ----------------------------- */

/* Global box-sizing (helps layout + forms) */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Base text + page defaults */
html, body {
  margin: 0;
  padding: 0;
  padding-bottom: 32px; /* space for sticky footer */
font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
  text-align: left;
  line-height: 1.5;
  font-size: 16px;
}

/* Headings scale */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.6em;
  font-weight: 600;
  color: #111;
}

h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* Body copy */
p {
  margin: 0 0 1em;
  font-size: 15px;
  line-height: 1.6;
}

/* Section label */
.section-kicker {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

/* Showreel headline */
.showreel-headline {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-top: 18px;
  margin-bottom: 10px;
}

/* Showreel body text */
.showreel-body {
  font-size: 15px;
  line-height: 1.7;
  max-width: 38rem;
}


/* Wrap container to align the two links side-by-side */
.header-links {
  display: flex;
  align-items: center; /* ensures vertical alignment */
}

/* Vertical separator */
.header-links a:first-child::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;        /* adjust to match your font height */
  background: rgba(0,0,0,0.35);
  margin: 0 8px;      /* equal spacing on both sides for seperator dividing the two menu options */
  position: relative;
  top: 1px;            /* optical centering tweak */
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: #e5e5e5;  /* subtle light grey */
  margin: 0px 0 20px;  /* spacing above and below */
}



/* Match .load-more base style */
.header-contact {
  position: relative;
  top: 2px;
  line-height: 1;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  cursor: pointer;

  text-transform: uppercase;
  letter-spacing: 0;     
  
  opacity: 1;
  transition: color 0.3s ease;
}


/* Hover color to match load-more */
.header-contact:hover {
  color: #4a90e2;
}


/* Grid overlay titles – TEXT ONLY */
.video-thumb .overlay {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;          /* 4K / big desktop size */
  font-weight: 600;
  letter-spacing: 0.015em;  /* tighter, premium spacing */
  text-transform: uppercase;
  text-align: center;
}




/* Form labels */
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

/* Inputs & textarea */
.contact-form input,
.contact-form textarea {
font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

/* Placeholder styling */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
}


/* Submit button */
.contact-submit {
font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Footer text */
.site-footer p {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}



/* Shared horizontal padding wrapper */
.shell {
  width: 100%;
  box-sizing: border-box;
  padding-left: clamp(12px, 3vw, 40px);
  padding-right: clamp(12px, 3vw, 40px);
}

/* ----------------------------- */
/* Header                       */
/* ----------------------------- */

.site-header {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 10;
}

/* Make header act as a horizontal bar: logo left, button right */
.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;   /* bottom-align logo + button */
  padding-top: 16px;
  padding-bottom: 8px;
}


.site-logo {
  max-height: 40px;
  width: auto;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .site-logo {
    max-height: 32px;   /* adjust to taste — 32–40px looks great on phones */
  }
}



/* Load More button in header */
.load-more {
  position: relative;
  top: 2px;           /* small downward nudge from the bottom baseline */
  line-height: 1;     /* tighten vertical text box */
  margin-top: 0;

  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  text-decoration: none;

  opacity: 0;         /* JS will fade in/out */
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, color 0.3s ease;
}

.load-more:hover {
  color: #4a90e2;
}



.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  z-index: 500;
}

.footer-inner {
  padding: 6px 0;
  text-align: center;   /* <— put this back */
}

.site-footer p {
  color: #000;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  opacity: 1;
}





/* ----------------------------- */
/* Preloader                    */
/* ----------------------------- */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.2);
  border-top: 5px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ----------------------------- */
/* Main wrapper                 */
/* ----------------------------- */

.site-main {
  width: 100%;
}

/* ----------------------------- */
/* Grid Layout                  */
/* ----------------------------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  width: 100%;
}

.video-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  display: block;
  opacity: 0;
  transform: translateY(20px);  /* start slightly down */
 transition: opacity 0.4s ease-out,
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


.video-thumb img.loaded {
  opacity: 1;
  transform: translateY(0);     /* slide up into place */
}


.video-thumb:hover img {
  transform: scale(1.01) translateY(-5px);
}

/* Overlay LAYOUT + ANIMATION (no font settings here) */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  height: 36px;               /* adjust to your chosen strip height */
  background: #3399ff;        /* solid blue strip */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  /* Motion */
  transform: translateY(100%);          /* start hidden below */
  color: rgba(255, 255, 255, 0);        /* text hidden */
  transition:
    transform 0.28s cubic-bezier(0.25, 0.6, 0.3, 1),
    color 0.18s ease 0.14s;
}


/* Triangle play icon – fade in with text */
.overlay::after {
  content: "";
  display: inline-flex;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  align-items: center;
  justify-content: center;
  transition: border-left-color 0.18s ease 0.14s;
}

/* Desktop hover */
.video-thumb:hover .overlay {
  transform: translateY(0);
  color: #ffffff;
}

.video-thumb:hover .overlay::after {
  border-left-color: #ffffff;
}

/* Mobile/Tablet active */
@media (max-width: 767px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-thumb.active .overlay {
    transform: translateY(0) !important;
    color: #ffffff !important;
  }

  .video-thumb.active .overlay::after {
    border-left-color: #ffffff !important;
  }
}



/* Desktop under 4K */
@media (max-width: 2559px) {
  .video-thumb .overlay {
    font-size: 10px;
    letter-spacing: 0.015em;
  }
}

/* Tablet / mobile */
@media (max-width: 1024px) {
  .video-thumb .overlay {
    font-size: 9px;
  }
}

/* Small mobile */
@media (max-width: 767px) {
  .video-thumb .overlay {
    font-size: 8px;
  }
}


/* Desktop smaller than 4K — strip sizing */
@media (max-width: 2559px) {
  .overlay {
    height: 24px;
    padding: 0 10px;
    gap: 4px;
  }
}

/* Tablet + Mobile */
@media (max-width: 1024px) {
  .overlay {
    height: 20px;
    padding: 0 8px;
    gap: 4px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .overlay {
    height: 18px;
    padding: 0 6px;
    gap: 3px;
  }

  .overlay::after {
    border-left-width: 3px;
    border-top-width: 2px;
    border-bottom-width: 2px;
  }
}







/* Fade-in animation for newly revealed items */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* ----------------------------- */
/* Lightbox                     */
/* ----------------------------- */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 1001;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox iframe {
  width: 90%;
  height: 60%;
  max-width: 1200px;
  max-height: 675px; /* roughly 16:9 */
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.lightbox.active iframe {
  opacity: 1;
  transform: scale(1);
}

.close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}





/* Base hero kicker – tuned for big desktop / 4K */
.hero-kicker {
  margin: 10px 0 1px; /* padding adjustments */
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(32px, 4vw, 72px);  /* BIG by default */
  line-height: 1.1;
  white-space: nowrap; /* keep WE MAKE VISUAL + word on one line */
}

.hero-kicker-static {
  color: #000;
}

.hero-kicker-dynamic {
  color: #3399ff;
  display: inline-block;
}

/* Large desktop / half-screen on 4K (~1280–2000px wide) */
@media (max-width: 2000px) {
  .hero-kicker {
    font-size: clamp(28px, 3.4vw, 56px);
  }
}

/* Standard desktop / laptop widths (~1024–1440px) */
@media (max-width: 1440px) {
  .hero-kicker {
    font-size: clamp(24px, 3vw, 44px);
  }
}

/* Tablet / small laptop */
@media (max-width: 1024px) {
  .hero-kicker {
    font-size: clamp(20px, 3.2vw, 34px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-kicker {
    margin: 10px 0 8px;   /* previously 22px / 14px — now much tighter */
  }
}




/* About / Grid intro band */
/* Keep full width of the grid (no max-width) */
.grid-intro {
  margin: 14px 0 18px;      /* tighter vertical envelope */
}

/* Big blue intro line */
.grid-intro-headline {
  font-weight: 700;
  color: #3399ff;

  /* Slightly smaller + tighter */
  font-size: clamp(22px, 3.1vw, 36px);
  line-height: 1.15;        /* MUCH tighter leading */
  
  margin: 0 0 10px;
  width: 100%;              /* ensure full grid width */
}

/* Body copy — compact, editorial, tight leading */
.grid-intro-subhead {
  font-weight: 400;
  color: #333;

  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.45;        /* significantly tighter */
  
  margin: 0;
  width: 100%;              /* full grid width */
}

/* On smaller screens, tighten spacing a bit */
@media (max-width: 900px) {
  .grid-intro {
    margin: 20px 0 20px;
  }

  .grid-intro-headline {
    font-size: clamp(24px, 6vw, 34px);
  }

  .grid-intro-subhead {
    max-width: 100%;
  }
}




/* ----------------------------- */
/* LOWER CONTENT SPLIT (50/50)  */
/* ----------------------------- */

.lower-content {
  padding: 0;
  background: #fff;
}

.lower-inner {
  width: 100%;
   margin: 20px 0 10px;  /* was 40px 0 60px */
  box-sizing: border-box;

  /* Desktop: match 4-column grid above */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(24px, 4vw, 60px);
  row-gap: 0;
}

/* Left column (2 of 4) */
.showreel-column {
  grid-column: 1 / span 2;
  min-width: 0;
}

/* Right column (2 of 4) */
.contact-column {
  grid-column: 3 / span 2;
  min-width: 0;
}

/* Exactly match left column spacing rhythm */
.contact-column .section-kicker {
  margin-top: 0;
  margin-bottom: 12px;
}



.contact-form {
  margin-top: 0;
}

.contact-column {
  margin-top: 0;
}


/* Ultra-wide (4K full screen): 1/3 + 2/3 split */
@media (min-width: 2000px) {
  .lower-inner {
    grid-template-columns: 1fr 2fr;  /* 1/3 left, 2/3 right */
    column-gap: clamp(32px, 4vw, 96px); /* slightly more breathing room */
  }

  .showreel-column {
    grid-column: 1 / span 1;  /* first column */
  }

  .contact-column {
    grid-column: 2 / span 1;  /* second (wider) column */
  }
}






/* Shared small title in upper-left with top rule */
.section-kicker {
  font-size: 13px;                     /* bigger, more presence */
  font-weight: 700;                    /* bold */
  letter-spacing: 0.18em;              /* tighter, more premium */
  text-transform: uppercase;
  color: #3399ff;                      /* your brand color */
  font-family: 'Roboto', Arial, sans-serif;

  border-top: 2px solid #3399ff;       /* matching stronger line */
  width: fit-content;

  padding-top: 2px;                    /* gives breathing room */
  margin-bottom: 16px;                 /* slightly larger for emphasis */

  line-height: 1.2;                    /* more headline-like */
}


/* Responsive embed for showreel */
.embed-responsive {
  position: relative;
  width: 100%;
  padding-top: 56.25%;      /* 16:9 */
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}

.embed-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Showreel text */
.showreel-headline {
  font-size: 22px;
  line-height: 1.3;
  margin: 10px 0 10px;
  font-weight: 700;
  text-align: left;
}

.showreel-body {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin: 0;
  text-align: left;
}

.about-headline {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin: 6px 0 8px;
  color: #111;
  letter-spacing: -0.01em;
}

.about-body {
  font-size: 15px;              /* slightly larger than body */
  font-weight: 500;             /* semi-bold = subhead feel */
  line-height: 1.2;             /* tighter = more punch */
  margin: 0 0 18px;
  color: #222;                  /* darker, more presence */
  letter-spacing: 0.02em;       /* subtle tracking for polish */
  text-transform: none;         /* keep sentence case */
}




/* Contact form */
.contact-form {
  text-align: left;
}

.form-row {
  margin-bottom: 16px;
}

.form-row-inline {
  display: flex;
  gap: 16px;
}

.form-field-half {
  flex: 1 1 0;
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 1px rgba(74, 144, 226, 0.15);
}

.contact-submit {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 24px;
  border-radius: 3px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.contact-submit:hover {
  background: #4a90e2;
}

.contact-submit:active {
  transform: translateY(1px);
}

.contact-footnote {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}


/* Make all contact form fields use the brand blue border */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  border: 2px solid #3399FF;
  border-radius: 4px;
}

/* Preserve the clean look on focus but make it stronger */
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1A7FFF;   /* slightly darker blue on focus */
  box-shadow: 0 0 0 2px rgba(51,153,255,0.15);
}


/* Inline row for Timeline + CAPTCHA */
.timeline-captcha-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(12px, 3vw, 32px);
  align-items: flex-start;
}

/* Ensure captcha doesn’t shrink weirdly */
.captcha-wrapper {
  min-height: 78px; /* height of reCAPTCHA box */
  display: flex;
  align-items: center;
}

/* Honeypot field: hidden from users but visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --------------------------------------------- */
/* Base form-status styles (default footnote look) */
/* --------------------------------------------- */
/* Inline status messaging — FADE + NO LAYOUT JUMP */
.contact-form .form-status {
  font-size: 12px;
  color: #666;
  margin-top: 15px;
  margin-bottom: 0;
  text-align: left;

  min-height: 18px;         /* keeps layout steady */
  opacity: 0;               /* hidden by default */
  transition: opacity 0.25s ease-in-out, color 0.25s ease-in-out;
}

/* Make visible on update */
.contact-form .form-status.is-visible {
  opacity: 1;
}

/* Do NOT remove from layout */
.contact-form .form-status:empty {
  display: block;
}

/* Success / Error colors */
.contact-form .form-status.form-status--success {
  color: #3399ff !important;
}

.contact-form .form-status.form-status--error {
  color: #c0392b !important;
}







/* On mobile, stack them */
@media (max-width: 600px) {
  .timeline-captcha-row {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

/* ----------------------------- */
/* Fade-in for lower columns    */
/* ----------------------------- */

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out,
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------- */
/* Responsive                   */
/* ----------------------------- */

@media (min-width: 1600px) {
  .grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .lower-inner {
    display: block;  /* stack columns on smaller screens */
    margin: 32px 0 48px;
  }

  .showreel-column,
  .contact-column {
    width: 100%;
    margin-bottom: 24px;
  }

  .form-row-inline {
    flex-direction: column;
  }
}

/* Mobile: footer is NOT sticky */
@media (max-width: 767px) {

  /* Remove the space reserved for sticky footer */
  html, body {
    padding-bottom: 0 !important;
  }

  /* Restore original footer look on mobile */
  .site-footer {
    position: static;
    background: #fff;           /* white background */
    border-top: 1px solid #eee; /* thin divider line */
  }

  .footer-inner {
    padding: 6px 0;             /* small, clean spacing */
  }

  .site-footer p {
    color: #000;                /* black text */
    opacity: 1;                 /* no subtle fade */
  }
}

/* Show the break by default (desktop/tablet) */
.desktop-break {
  display: inline;
}

/* Hide the break on mobile */
@media (max-width: 900px) {
  .desktop-break {
    display: none;
  }
}
