/* ============================================================
   CSS CUSTOM PROPERTIES (edit brand colours here)
============================================================ */
:root {
  --colour-black:       #000000;
  --colour-white:       #ffffff;
  --colour-pink:        #FF0C62;
  --colour-purple:      #D24AEA;
  --colour-grey-dark:   #111111;
  --colour-grey-mid:    #333333;

  --font-display:       "gotham", 'Gill Sans', 'Trebuchet MS', sans-serif;
  --font-roc:           "roc-grotesk", 'Helvetica Neue', Arial, sans-serif;
  --font-body:          'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;

  --partner-bg-image:   url('/assets/images/gradient-bg.png');

  --section-padding:    80px;
  --slide-gap:          16px;
  --slide-peek:         48px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--colour-black);
  color: var(--colour-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ============================================================
   SITE WRAPPER
============================================================ */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  height: auto;
}


/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: relative;
  z-index: 100;
  padding: 60px 60px;
  background: #000;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

.site-header__logo {
  height: 20px;
  width: auto;
}


/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  flex: 1;
  min-height: 480px;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 35vw, 500px);
  height: auto;
  z-index: 9001;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__logo.is-visible {
  opacity: 1;
}


/* ============================================================
   STRAPLINE
============================================================ */
.strapline {
  font-family: var(--font-display);
  text-align: center;
  padding: var(--section-padding) 24px 0;
}

.strapline__img {
  height: clamp(1.4rem, 3vw, 1.8rem);
  width: auto;
  margin: 0 auto;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px var(--section-padding);
}

.about__text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: var(--colour-white);
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.7;
}


/* ============================================================
   SECTION HEADING
============================================================ */
.section-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--colour-white);
  margin-bottom: 40px;
}

/* ============================================================
   OUR SERVICES CAROUSEL
============================================================ */
.services {
  background-color: var(--colour-white);
  padding: calc(var(--section-padding) - 20px) 0 var(--section-padding);
}

.services .section-heading {
  color: var(--colour-black);
}

.services-carousel-outer {
  padding: 0 24px;
  overflow: hidden;
}

.services-carousel {
  position: relative;
  overflow: hidden;
}

.services-carousel__track {
  display: flex;
  list-style: none;
  gap: var(--slide-gap);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.services-carousel__slide {
  flex: 0 0 clamp(280px, 35vw, 480px);
  min-width: 0;
  position: relative;
}

.services-carousel__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.services-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  list-style: none;
}

.services-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--colour-pink);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.services-carousel__dot.is-active {
  background: var(--colour-purple);
}

.services-carousel__btn {
  position: absolute;
  top: 0;
  height: calc(100% - 66px); /* full height minus dots area */
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  border: none;
  color: var(--colour-pink);
  font-size: 4rem;
  padding: 0 18px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.services-carousel__btn:hover {
  background: rgba(255, 61, 160, 0);
}

.services-carousel__btn--prev { left: 8px; }
.services-carousel__btn--next { right: 8px; }


@media (max-width: 600px) {
  .services-carousel__slide {
    flex: 0 0 calc(100vw - var(--slide-peek) - 48px);
  }
}

/* ============================================================
   PARTNERS
============================================================ */
.partners {
  background-color: var(--colour-white);
}

.partners-marquee-strip {
  background-image: var(--partner-bg-image);
  background-size: cover;
  background-position: center;
  padding: var(--section-padding) 0;
}

.partners-marquee-strip .section-heading {
  color: var(--colour-white);
  text-align: center;
  margin-bottom: 48px;
}

.partners-marquee {
  overflow: hidden;
  position: relative;
}

.partners-marquee__track {
  display: flex;
  gap: 64px;
  align-items: center;
  animation: marquee-scroll 60s linear infinite;
  width: max-content;
}

.partners-marquee__logo {
  height: auto;
  width: 100px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.partners-marquee__logo--colour {
  filter: none;
}

.partners-marquee__logo:hover {
  opacity: 1;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   PAGE INTRO
============================================================ */
.page-intro {
  position: fixed;
  inset: 0;
  background: var(--colour-black);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 1.2s ease;
}

.page-intro__logo {
  width: clamp(160px, 25vw, 320px);
  height: auto;
  opacity: 0;
  transition: opacity 1s ease;
}

.page-intro.logo-visible .page-intro__logo {
  opacity: 1;
}

.page-intro.is-done {
  opacity: 0;
}


/* ============================================================
   FOOTER
============================================================ */
.footer {
  padding: var(--section-padding) 60px 0;
  background-color: var(--colour-black);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__contact p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
}

.footer__contact a {
  color: var(--colour-pink);
  transition: opacity 0.2s;
}

.footer__contact a:hover {
  opacity: 0.75;
}

.footer__legal a {
  font-size: 0.75rem;
  color: var(--colour-white);
  opacity: 0.6;
  text-decoration: underline;
}

.footer__linkedin {
  display: flex;
  align-items: flex-start;
}


.footer__linkedin-link {
  display: flex;
  align-items: center;
  color: var(--colour-white);
  transition: color 0.2s;
}

.footer__linkedin-link:hover {
  color: #0a66c2;
}

.footer__linkedin-icon {
  width: 24px;
  height: 24px;
}

.footer__logo {
  height: 20px;
  width: auto;
  align-self: flex-end;
  margin-top: 16px;
}

.footer__gradient-strip {
  width: 100vw;
  line-height: 0;
}

.footer__gradient-strip img {
  display: block;
  width: 100%;
  height: 20px;
  object-fit: fill;
}

@media (max-width: 600px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

 .footer__logo {
    width: auto;
    height: auto;
    max-height: 16px;
    margin-top: 16px;
  }
}


/* ============================================================
   COOKIE BANNER
============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: var(--colour-grey-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.cookie-banner a {
  color: var(--colour-pink);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner__btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-banner__btn:hover { opacity: 0.85; }

.cookie-banner__btn--accept {
  background: var(--colour-pink);
  color: var(--colour-white);
}

.cookie-banner__btn--decline {
  background: rgba(255,255,255,0.1);
  color: var(--colour-white);
}


/* ============================================================
   RESPONSIVE TWEAKS
============================================================ */
@media (max-width: 600px) {
  .site-header__logo {
    width: auto;
    height: auto;
    max-height: 16px;
  }
}

