/* ============================================
   EventLab — stylesheet
   Fonts are self-hosted from ./fonts/
   Images referenced from ../images/
   ============================================ */

@font-face{
  font-family:'Big Shoulders Display';
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url('fonts/big-shoulders-display-latin-500-normal.woff2') format('woff2');
}
@font-face{
  font-family:'Big Shoulders Display';
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url('fonts/big-shoulders-display-latin-700-normal.woff2') format('woff2');
}
@font-face{
  font-family:'Big Shoulders Display';
  font-style:normal;
  font-weight:900;
  font-display:swap;
  src:url('fonts/big-shoulders-display-latin-900-normal.woff2') format('woff2');
}
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url('fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:500;
  font-display:swap;
  src:url('fonts/inter-latin-500-normal.woff2') format('woff2');
}
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:600;
  font-display:swap;
  src:url('fonts/inter-latin-600-normal.woff2') format('woff2');
}
@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:700;
  font-display:swap;
  src:url('fonts/inter-latin-700-normal.woff2') format('woff2');
}

:root{
  --ink:#15171A;
  --paper:#F3F1EA;
  --orange:#FF5719;
  --teal:#0D3B39;
  --sand:#EAE4D6;
  --white:#FFFFFF;
  --display: 'Big Shoulders Display', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
}

body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
}

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

a{ color:inherit; }

h1,h2,h3,h4{
  font-family:var(--display);
  font-weight:700;
  line-height:0.95;
  margin:0;
  letter-spacing:0.2px;
}

.skip-link{
  position:absolute; left:-999px; top:0;
  background:var(--orange); color:var(--white);
  padding:12px 18px; z-index:200; font-weight:600;
}
.skip-link:focus{ left:12px; top:12px; }

:focus-visible{
  outline:3px solid var(--orange);
  outline-offset:3px;
}

.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 28px;
}

/* ---------- NAV ---------- */
header.site-nav{
  position:sticky; top:0; z-index:100;
  background:var(--ink);
  border-bottom:3px solid var(--orange);
}
.nav-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 28px;
  max-width:1180px; margin:0 auto;
}
.logo{
  font-family:var(--display);
  font-size:1.7rem;
  color:var(--white);
  text-decoration:none;
  letter-spacing:0.5px;
}
.logo span{ color:var(--orange); }

.nav-toggle{
  display:none;
  background:none; border:2px solid var(--white); color:var(--white);
  font-family:var(--body); font-weight:600; font-size:0.9rem;
  padding:8px 14px; border-radius:2px; cursor:pointer;
}

nav.menu ul{
  display:flex; gap:28px; list-style:none; margin:0; padding:0;
  flex-wrap:wrap;
}
nav.menu a{
  color:var(--white); text-decoration:none; font-weight:500; font-size:0.96rem;
  padding:6px 2px; border-bottom:2px solid transparent;
  transition:border-color 0.15s ease, color 0.15s ease;
}
nav.menu a:hover, nav.menu a:focus-visible{
  border-color:var(--orange);
  color:var(--orange);
}
.menu-divider{ opacity:0.35; padding:0 2px; }

@media (max-width:900px){
  .nav-toggle{ display:inline-block; }
  nav.menu{
    display:none;
    width:100%;
    background:var(--ink);
    padding:6px 28px 20px;
  }
  nav.menu.open{ display:block; }
  nav.menu ul{ flex-direction:column; gap:14px; }
  .menu-divider{ display:none; }
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  background:var(--ink);
  color:var(--white);
  padding:110px 0 130px;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    repeating-linear-gradient(115deg,
      var(--orange) 0px, var(--orange) 10px,
      transparent 10px, transparent 22px);
  opacity:0.09;
}
.hero-inner{ position:relative; }
.hero-eyebrow{
  display:inline-block;
  font-family:var(--body); font-weight:600; font-size:0.95rem;
  color:var(--orange);
  margin-bottom:18px;
}
.hero h1{
  font-size:clamp(3rem, 9vw, 6.4rem);
  color:var(--white);
  max-width:14ch;
  opacity:0; transform:translateY(24px);
  animation:riseIn 0.7s ease-out 0.1s forwards;
}
.hero .tagline{
  font-family:var(--display);
  font-size:clamp(1.4rem, 3vw, 2rem);
  color:var(--orange);
  margin-top:10px;
  opacity:0; transform:translateY(18px);
  animation:riseIn 0.7s ease-out 0.3s forwards;
}
@keyframes riseIn{ to{ opacity:1; transform:translateY(0); } }

.hero-actions{
  margin-top:44px;
  display:flex; gap:16px; flex-wrap:wrap;
}
.btn{
  display:inline-block;
  font-family:var(--body); font-weight:600; font-size:0.98rem;
  padding:14px 26px;
  text-decoration:none;
  border:2px solid var(--white);
  color:var(--white);
  border-radius:2px;
  transition:background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover, .btn:focus-visible{
  background:var(--orange); border-color:var(--orange); color:var(--ink);
}
.btn.solid{
  background:var(--orange); border-color:var(--orange); color:var(--ink);
}
.btn.solid:hover, .btn.solid:focus-visible{
  background:transparent; color:var(--white); border-color:var(--white);
}

/* ---------- SECTION HEADINGS ---------- */
section{ padding:96px 0; }
.kicker{
  font-family:var(--body); font-weight:600; color:var(--orange);
  font-size:0.95rem; margin-bottom:10px;
}
.section-title{
  font-size:clamp(2rem, 4.5vw, 3.1rem);
  max-width:16ch;
}
.section-lede{
  font-size:1.1rem; max-width:56ch; margin-top:18px; color:#3c3f43;
}

/* ---------- ABOUT ---------- */
.about{ background:var(--sand); }
.about-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:56px;
  margin-top:56px;
}
.about-card{
  background:var(--white);
  padding:34px 32px;
  border-left:5px solid var(--orange);
}
.about-card + .about-card{ margin-top:28px; }
.about-card h3{
  font-size:1.5rem;
  margin-bottom:14px;
  color:var(--ink);
}
.about-card p{ margin:0; color:#43464a; }

@media (max-width:820px){
  .about-grid{ grid-template-columns:1fr; gap:32px; }
}

/* ---------- TEAM (badges) ---------- */
.team{ background:var(--paper); }
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px, 260px));
  gap:44px;
  margin-top:56px;
  justify-content:start;
}
.badge{
  background:var(--white);
  padding:22px 22px 26px;
  box-shadow:8px 8px 0 var(--ink);
  position:relative;
}
.badge:nth-child(2){ transform:rotate(1.4deg); }
.badge:nth-child(1){ transform:rotate(-1.4deg); }
.badge-hole{
  width:22px; height:22px;
  background:var(--paper);
  border:3px solid var(--ink);
  border-radius:50%;
  margin:0 auto 16px;
}
.badge img{
  width:100%; aspect-ratio:1/1; object-fit:cover;
  border:3px solid var(--ink);
  margin-bottom:16px;
}
.badge .badge-label{
  font-family:var(--body); font-weight:600; font-size:0.72rem;
  color:var(--orange); margin-bottom:4px;
}
.badge h3{
  font-size:1.35rem; color:var(--ink); margin-bottom:6px;
}
.badge .role{
  font-size:0.92rem; color:#55585c; margin-bottom:10px;
}
.badge a.email{
  font-size:0.88rem; text-decoration:none; color:var(--ink);
  border-bottom:2px solid var(--orange);
}

/* ---------- STORY + VIDEO ---------- */
.story{ background:var(--white); }
.story-lede{ max-width:70ch; font-size:1.1rem; color:#3c3f43; margin-top:18px; }
.video-frame{
  margin-top:48px;
  background:var(--ink);
  padding:18px;
}
.video-frame .screen{
  position:relative; width:100%; padding-top:56.25%;
  background:#000;
}
.video-frame iframe{
  position:absolute; inset:0; width:100%; height:100%; border:0;
}
.video-caption{
  font-family:var(--body); color:var(--white); opacity:0.7;
  font-size:0.85rem; margin-top:12px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials{ background:var(--teal); color:var(--white); }
.testimonials .section-title{ color:var(--white); }
.quote-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  margin-top:56px;
}
.quote{
  background:rgba(255,255,255,0.06);
  padding:30px 26px;
  border-top:4px solid var(--orange);
}
.quote .mark{
  font-family:var(--display); font-size:3rem; color:var(--orange);
  line-height:0.5; display:block; margin-bottom:14px;
}
.quote p{ font-size:0.98rem; color:#e7e5df; margin:0 0 18px; }
.quote cite{
  font-style:normal; font-weight:600; font-size:0.9rem; color:var(--white);
}
@media (max-width:900px){
  .quote-grid{ grid-template-columns:1fr; }
}

/* ---------- STATS ---------- */
.stats{ background:var(--paper); }
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin-top:56px;
  border-top:2px solid var(--ink);
  border-bottom:2px solid var(--ink);
}
.stat{
  padding:34px 20px;
  text-align:center;
  border-left:2px solid var(--ink);
}
.stat:first-child{ border-left:none; }
.stat .num{
  font-family:var(--display); font-size:clamp(2.6rem,6vw,4rem);
  color:var(--orange); line-height:1;
}
.stat .label{
  margin-top:8px; font-size:0.95rem; color:#3c3f43; font-weight:500;
}
@media (max-width:760px){
  .stats-grid{ grid-template-columns:1fr 1fr; }
  .stat{ border-left:none; border-top:2px solid var(--ink); }
  .stat:nth-child(1), .stat:nth-child(2){ border-top:none; }
}

/* ---------- CLIENTS / LINEUP ---------- */
.clients{ background:var(--ink); color:var(--white); }
.clients .section-title{ color:var(--white); }
.clients .section-lede{ color:#cfd0cd; }
.client-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:2px;
  margin-top:56px;
  background:#2a2c30;
}
.client-grid figure{
  margin:0; background:var(--white);
  display:flex; align-items:center; justify-content:center;
  padding:26px 20px; min-height:110px;
}
.client-grid img{ max-height:52px; width:auto; margin:0 auto; }
@media (max-width:900px){
  .client-grid{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:560px){
  .client-grid{ grid-template-columns:repeat(2,1fr); }
}

/* ---------- SOCIALS ---------- */
.socials{ background:var(--sand); text-align:left; }
.social-links{
  display:flex; gap:16px; flex-wrap:wrap; margin-top:36px;
}
.social-links a{
  text-decoration:none;
  font-family:var(--display); font-size:1.3rem;
  padding:14px 26px;
  background:var(--white);
  border:2px solid var(--ink);
  transition:background 0.15s ease, color 0.15s ease;
}
.social-links a:hover, .social-links a:focus-visible{
  background:var(--orange); color:var(--ink); border-color:var(--orange);
}

/* ---------- CONTACT / FOOTER ---------- */
footer.contact{
  background:var(--ink); color:var(--white);
  padding:96px 0 40px;
}
.contact .section-title{ color:var(--white); max-width:20ch; }
.contact-lede{ max-width:56ch; color:#cfd0cd; margin-top:18px; font-size:1.05rem; }
.contact-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:32px; margin-top:56px;
}
.contact-item .k{
  font-family:var(--body); font-weight:600; color:var(--orange);
  font-size:0.85rem; margin-bottom:8px;
}
.contact-item a, .contact-item p{
  color:var(--white); text-decoration:none; font-size:1.05rem; margin:0;
}
.contact-item a{ border-bottom:2px solid transparent; }
.contact-item a:hover, .contact-item a:focus-visible{ border-color:var(--orange); }
@media (max-width:820px){
  .contact-grid{ grid-template-columns:1fr; }
}
.footer-base{
  margin-top:80px; padding-top:28px;
  border-top:1px solid rgba(255,255,255,0.15);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:0.85rem; color:#9a9d99;
}
.footer-base a{ color:#9a9d99; text-decoration:underline; }
.footer-base a:hover, .footer-base a:focus-visible{ color:var(--orange); }
