@charset "UTF-8";
/* CSS Document */
*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  width: 100%;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}


.container {
  padding-top: 0;
}

.line-bleed,
#logo {
  display: block;
  margin: 0 auto;
}

/* Header line: full on home, shorter on other sections */
.fixed-header .line-bleed {
  transform-origin: top center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.section-experiences .fixed-header .line-bleed,
body.section-branding .fixed-header .line-bleed,
body.section-services .fixed-header .line-bleed {
  transform: scaleY(0.5);
}

.home {
  padding-top: 0;
  padding-bottom: 1.6rem; /* match other sections */
}

/* home 4 images */
/* Home page image row */
.image-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 1rem auto;
  max-width: 100%;
}

.image-row img {
  width: 190px;
  height: auto;
  border-radius: 15px;
}






/* home animation */
.index-hero {
  opacity: 0;
  transform: translateY(30px);
  padding-bottom: 1.6rem; /* might be different than other sections */
}


/* INTRO FADE ONLY */
/* Intro should only fade in */
.intro {
  opacity: 0;
  transform: none !important;
  transition: opacity 1.2s ease  !important; 
}

.index-hero {
  opacity: 0;
  transform: none;
  transition: opacity 1.4s ease;
}

.index-hero.loaded .intro {
  opacity: 1 !important;
}




.centered {
  text-align: center;
}

.centered > * {
  margin-left: auto;
  margin-right: auto;
}

/* Scroll polish */
.index-hero.scroll {
  opacity: 0.9;
  transform: translateY(-40px);
}

/* default link style */
a {
  color: #000;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: color 0.25s ease;
}

/* visited */
a:visited {
  color: #444;
}

/* hover */
a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* focus */
a:focus-visible {
  outline: 2px solid red;
}

/* =========================
   NAVIGATION - CLEAN STYLES
   ========================= */

/* Container */

/* NAV LINK STYLING FOR DESKTOP */
nav.nav-container .nav,
nav.nav-container .nav.inactive {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #000; /* default black */
  text-decoration: none;
  transition: color 0.25s ease;
  cursor: pointer;
}

/* Hover */
nav.nav-container .nav:hover {
  color: #ed1e4e;
}

/* Active (selected) */
nav.nav-container .nav.active,
nav.nav-container .nav.inactive.active {
  color: #ed1e4e;
}

/* Dots styling remains */
nav.nav-container .nav-dot {
  color: #616161;
}

/* Dot next to active link becomes pink */
nav.nav-container .nav.active + .nav-dot,
nav.nav-container .nav-dot + .nav.active {
  color: #ed1e4e;
}

/* Nav-off: clickable like a normal link, ignored by JS */
.nav-off {
  cursor: pointer;         /* pointer cursor on hover */
  color: #000;             /* default color, adjust to match other nav links */
  text-decoration: none;   /* no underline by default */
  transition: color 0.25s ease;
}

.nav-off:hover {
  color: #ed1e4e;          /* hover color to match other nav links */
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Remove background highlight on click for mobile */
.nav-off:active {
  background: none;
}



/* Inactive (non-clickable) */
nav.nav-container .nav.inactive {
  color: #ed1e4e;
  cursor: default;
}

/* Dot styling */
nav.nav-container .nav-dot {
  color: #616161;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Dot becomes pink when next to active */
nav.nav-container .nav.active + .nav-dot,
nav.nav-container .nav-dot + .nav.active {
  color: #ed1e4e;
}


.logo a {
  pointer-events: auto;
}

.logo {
  position: relative; /* fine */
  z-index: 1; /* keep it low so it doesn’t sit above other nav links */
}

.logo img {
  transition: filter 0.3s ease;
}

.logo:hover img {
  filter: brightness(1.3);
}

.index-hero {
  background-image: url('img/your-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-bottom: 0;
  background: #fff;
}

/* SECTION VISIBILITY + TRANSITIONS — SAFE VERSION */
main {
  position: relative;
  padding-top: 180px; /* space for fixed header (line + logo) */
}

main section {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.45s ease;
}

main section.active {
  display: block;
  opacity: 1;
}






/* default: no underline */
.card__title a {
  text-decoration: none;
}

/* when image (or card) is hovered → underline link */
.card:hover .card__title a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.unbutton {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}

.unbutton:focus {
  outline: none;
}


.section-content,
.content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
	  place-items: center;
  align-content: center;
}


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

.content--flex {
  display: flex;
  justify-content: center;
}

.content--more {
  margin-top: 0vh;
  margin-bottom: 1vh;
	  align-content: safe center;
	 justify-content: center;
}

.content--text {
  place-items: initial;
  align-content: safe center;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.content > h2 {
  font-color: #f3ec78;
  font-family: "Helvetica Neue", sans-serif;
  align-content: center;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 2vh;
}

.content > h4 {
  font-color: #f3ec78;
  font-family: "Helvetica Neue", sans-serif;
  align-content: center;
  font-size: .8rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 2vh;
}

.content > h3 {
  font-color: #f3ec78;
  font-family: "Helvetica Neue", sans-serif;
  align-content: center;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.5;
  margin-top: 0vh;
  margin-bottom: 0.3rem;
}

.content > h5 {
  font-color: #f3ec78;
  font-family: "Helvetica Neue", sans-serif;
  align-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 0vh;
}

.content > p {
  font-size: 1rem;
  line-height: 1rem;
  font-synthesis: none;
  align-content: center;
  max-width: 100%;
  width: 100%;
}




.content__title {
  font-size: 1.1rem;
  line-height: 1;
  font-family: "Helvetica Neue", sans-serif;
  margin-top: 0vh;
  margin-bottom: 1vh;
}

p.intro {
  max-width: 900px;
  font-family: "Times New Roman";
  font-color: #f3ec78;
  font-style: italic;
  font-weight: 200;
  text-align: center;
  align-content: center;
  font-size: 2rem;
  line-height: 2.3rem;
  margin-top: 3.5vh;
  margin-bottom: 1vh;
}

.card-grid {
  display: grid;
  row-gap: 2rem;
  justify-content: center; /* centers all card-wraps horizontally */
}



.card-wrap {

  margin-top: 0vh;
  margin-bottom: 0vh;
  display: grid;
  grid-gap: 1.8rem;
  grid-auto-flow: row;
  grid-template-columns: 400px;
  font-weight: 600;
  font-size: .5rem;
  justify-content: center; /* optional, ensures cards stay centered in wrap */
}

/* ===== CARD BASE STATE (HIDDEN) ===== */
/* ===== RESET SECTION VISIBILITY ===== */

/* SECTION TRANSITIONS */
/* ===== SECTION TRANSITIONS (SAFE) ===== */
.header-wrapper {
  position: relative; /* container for logo, line, and contact */
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-header .line-bleed {
  margin-right: auto; /* keep line on left */
  margin-left: auto; /* center if needed */
}

.contact-link {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 600;
  color: #000; /* match other nav links */
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.25s ease;
  pointer-events: auto; /* make sure it’s clickable */
}

.contact-link:hover {
  color: #ed1e4e; /* same hover color as nav links */
  text-decoration: underline;
}




.nav-container {
  display: flex;
  flex-wrap: wrap;        /* allows wrapping on mobile */
  justify-content: center;
  align-items: center;
  gap: 0.8rem;            /* space between links/dots */
  margin-bottom: 2rem;    /* ← space below the whole nav */
}



/* SECTION TRANSITIONS - SMOOTHED */
/* Smooth editorial section transitions */
main section {
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 0.5s ease;
}

/* Exiting: fade out current section */
main section.exiting {
  opacity: 0 !important;
  visibility: hidden;
}

/* Entering: hold opacity 0 briefly, then fade in */
main section.entering {
  opacity: 0;
}
main section.entering.ready {
  opacity: 1;
}

/* Staggered editorial card cascade on section load */
section.active .card-wrap:nth-of-type(1) .card { transition-delay: 0.08s; }
section.active .card-wrap:nth-of-type(2) .card { transition-delay: 0.16s; }
section.active .card-wrap:nth-of-type(3) .card { transition-delay: 0.24s; }
section.active .card-wrap:nth-of-type(4) .card { transition-delay: 0.32s; }
section.active .card-wrap:nth-of-type(5) .card { transition-delay: 0.4s; }

section.active .card-wrap:nth-of-type(1) .card__sub,
section.active .card-wrap:nth-of-type(1) .card__title { transition-delay: 0.12s; }
section.active .card-wrap:nth-of-type(2) .card__sub,
section.active .card-wrap:nth-of-type(2) .card__title { transition-delay: 0.2s; }
section.active .card-wrap:nth-of-type(3) .card__sub,
section.active .card-wrap:nth-of-type(3) .card__title { transition-delay: 0.28s; }
section.active .card-wrap:nth-of-type(4) .card__sub,
section.active .card-wrap:nth-of-type(4) .card__title { transition-delay: 0.36s; }
section.active .card-wrap:nth-of-type(5) .card__sub,
section.active .card-wrap:nth-of-type(5) .card__title { transition-delay: 0.44s; }


/* Make all intro paragraphs the same height */
/* INTRO – CONSISTENT HEIGHT, NO JUMP */
section .intro {
  max-width: 900px;
  font-family: "Times New Roman";
  font-style: italic;
  font-weight: 200;
  text-align: center;

  font-size: 2rem;
  line-height: 2.3rem;

  min-height: calc(2.3rem * 4); /* space for 4 lines */
  margin: 3.5vh auto 1vh auto;

  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Fade in only when section is active */
section.active .intro {
  opacity: 1;
}



section {
  position: relative;    /* keep normal flow */
  width: 100%;
  opacity: 0;            /* hidden by default */
  visibility: hidden;    /* prevents interaction */
  transition: opacity 0.6s ease; /* fade effect */
}

section.active {
  opacity: 1;
  visibility: visible;
}


/* INTRO FADE – editorial ease */
section .intro {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.active .intro {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}


/* ===== SMOOTH CARD LOAD (EDITORIAL EASE) ===== */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.active .card {
  opacity: 1;
  transform: translateY(0);
}
/* ===== CARD SUBTITLES & TITLES ===== */
.card__sub,
.card__title {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

section.active .card__sub,
section.active .card__title {
  opacity: 1;
  transform: translateY(0);
}

/* When scroll happens, show */
.index-scrolled .card__sub,
.index-scrolled .card__title {
  opacity: 1;
  transform: translateY(0);
}

.index-scrolled .card__sub {
  transition-delay: 0.2s;
}

.index-scrolled .card__title {
  transition-delay: 0.4s;
}

.card__sub {
  text-align: center;
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  line-height: 1rem;
	  margin-bottom: 0rem;


}

.card__title {
  font-weight: 200;
  font-size: 1.3rem;
  text-align: center;
  font-family: "Times New Roman";
  font-style: italic;
  line-height: 1.4rem;
  margin-top: 0.5rem;
  padding: 0;
}

.card__footer-copy {
  font-weight: normal;
  font-size: 1.1rem;
  text-align: center;
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.6rem;
  align-content: center;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0vh;
}

.card__footer-copy a {
  color: #2467E9;
  font-size: 1rem;
  font-weight: 600;
}

.card__footer-copy a:hover {
  color: #173D88;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
}



/* ===== SMOOTH ZOOM ON HOVER (GPU-accelerated) ===== */
.card__image-wrap {
  overflow: hidden;
  border-radius: 15px;
  width: 100%;
}

.card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card__image {
  transform: scale(1.08);
  filter: brightness(1.15) contrast(1.05);
}



@media screen and (min-width: 53em) {
  .frame {
    grid-template-columns: auto auto auto;
    grid-template-areas: 'logo prev back sponsor' 'title title title title';
  }

  .frame #cdawrap {
    justify-self: end;
  }

  .card-wrap {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  grid-auto-rows: 1fr; /* force all rows to equal height */
  gap: 1.8rem;
}

  .w-25 {
    width: 25vw;
  }
}



/* DESKTOP GRID */
@media screen and (min-width: 53em) {
  .card-wrap {
    display: grid;
    grid-template-columns: repeat(3, 280px); /* fixed card width */
    gap: 1.8rem;
    justify-content: center; /* center the whole grid horizontally */
  }

  .card {
    width: 280px; /* matches column width */
  }
}
	
/* MOBILE GRID */
@media screen and (max-width: 52.99em) {
	

card-wrap {
    grid-template-columns: repeat(1, 95%);
    grid-auto-rows: 1fr;
	justify-content: center; /* centers the grid */
  }

  .card {
    width: 95%;
    max-width: 280px;
    margin: 0 auto;
  }
		
/* Desktop */
.contact-link {
  color: #000;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-link:hover {
  color: #ed1e4e;
  text-decoration: underline;
}

/* Mobile: make it inline with nav links */
@media screen and (max-width: 52.99em) {
  .contact-link {
    position: static; /* flows in nav row */
    display: inline-block;
    margin-left: 0;
    margin-right: 0;
  }
}


/* Base nav styling (all screens) */
.nav-container {
  display: flex;
  flex-wrap: wrap;         /* allow multiple lines if needed */
  justify-content: center; 
  gap: 0.8rem;
  align-items: center;
  margin: 0 auto;          /* center nav */
  max-width: 100%;         /* default full width, overridden in media queries */
}

/* Desktop: wider nav */
@media screen and (min-width: 53em) {
  .nav-container {
    max-width: 600px;      /* desktop max width */
  }
}

/* Mobile: narrower nav */
@media screen and (max-width: 52.99em) {
  .nav-container {
    max-width: 360px;      /* adjust to fit links in two lines nicely */
  }
}

/* SERVICES + CONTACT group */
.nav-group {
  display: flex;
  gap: 0.5rem;        /* space between items */
  flex: 0 0 auto;     /* don't shrink, stay together */
}

/* style for all nav links */
.nav, .contact-link {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.25s ease;
}

.nav:hover, .contact-link:hover {
  color: #ed1e4e;
  text-decoration: underline;
}


nav.nav-container a.contact-link,
nav.nav-container .nav-dot:last-of-type {
  flex: 0 0 auto;  /* prevent shrinking */
  order: 99;       /* make sure they are always at the end */
}

	
	
	/* MOBILE NAV */
/* MOBILE NAV WRAP */	
  /* === MOBILE TAP FIX FOR NAV === */
/* MOBILE: tighten spacing around nav dots */
/* MOBILE: normalize dot spacing */
/* NAV CONTAINER BASE */
/* MOBILE NAV WIDTH CONTROL */
@media screen and (max-width: 52.99em) {
  nav.nav-container {
    padding-left: 1rem;   /* adjust left padding */
    padding-right: 1rem;  /* adjust right padding */
    max-width: 100%;      /* stay within screen width */
    box-sizing: border-box;
  }

  /* Optional: keep nav items evenly spaced and wrapping nicely */
  nav.nav-container .nav,
  nav.nav-container .nav-dot,
  nav.nav-container .contact-link {
    white-space: nowrap;   /* prevent breaking text inside links */
  }
}


/* DOT WIDTH FIXED */
nav.nav-container .nav-dot {
  width: 0.5rem;         /* same width for all dots */
  text-align: center;
  flex-shrink: 0;        /* prevent shrinking */
}

/* HOVER / ACTIVE */
nav.nav-container .nav:hover,
nav.nav-container .nav.active {
  color: #ed1e4e;
}

/* MOBILE ADJUSTMENTS */
@media screen and (max-width: 52.99em) {
  nav.nav-container {
    gap: 0.4rem;         /* slightly smaller spacing for mobile */
  }
}

	
	
  p.intro {
    font-size: 1.2rem;
    line-height: 1.8rem;
    margin-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }



  .content h4 {
    line-height: 1.4;
    padding-left: 1rem;
    padding-right: 1rem;
	  align-content: center;
	  text-align: center;
  }
	
	

/* MOBILE: Remove tap highlight for all clickable elements */
/* Remove mobile tap highlight safely */
@media screen and (max-width: 840px) {
  a,
  button,
  .logo a,
  nav a,
  .thumb-nav a {
    -webkit-tap-highlight-color: transparent; /* remove the aqua overlay */
    outline: none;                            /* remove focus outline if needed */
  }
}
	
}
