/* =========================================================
   SKOOP MEDIA AGENCY — Design tokens
   Red   : #E5222A  (logo red)
   Red-d : #A6151B  (deep red, gradient/shadow end)
   Ink   : #0E0D0F  (near-black, off-pure so red pops)
   Paper : #F7F6F4  (light section bg)
   White : #FFFFFF
   Slate : #6B6A70  (muted body text on light)
   Mist  : #C9C7C4  (muted text on dark)
   ========================================================= */

:root{
  --red: #E5222A;
  --red-deep: #A6151B;
  --ink: #0E0D0F;
  --paper: #F7F6F4;
  --white: #FFFFFF;
  --slate: #6B6A70;
  --mist: #C9C7C4;

  --font-display: "Archivo", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; line-height:1.1; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior:auto !important; }
}

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

.eyebrow{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
}
.eyebrow-dark{ color: var(--red-deep); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 3px;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary{
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover{ background: var(--red-deep); transform: translateY(-2px); }
.btn-ghost{
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-ghost:hover{ border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  padding: 16px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(14,13,15,0.08);
  transition: padding .25s ease, box-shadow .25s ease;
}
.nav.scrolled{
  padding: 11px 0;
  box-shadow: 0 8px 24px rgba(14,13,15,0.08);
}
.nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display:flex;
  align-items:center;
  gap: 32px;
}
.nav-logo img{
  height: 34px; width:auto;
}
.nav-links{
  display:flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a{
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.72;
  transition: opacity .15s ease, color .15s ease;
}
.nav-links a:hover{ opacity: 1; color: var(--red); }
.nav-cta{ padding: 11px 22px; font-size: 0.88rem; }
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding: 6px;
}
.nav-toggle span{
  width: 22px; height: 2px; background: var(--ink); display:block;
}

/* =========================================================
   HERO — pure image banner, no copy
   ========================================================= */
.hero{
  position: relative;
  margin-top: 66px; /* clears fixed white nav */
}
.hero-banner{
  width: 100%;
  aspect-ratio: 16 / 6.5;
  overflow: hidden;
  background: var(--ink);
}
.hero-banner img{
  width:100%; height:100%;
  object-fit: cover;
}

.hero-marquee{
  position: relative;
  z-index: 2;
  background: var(--ink);
  overflow:hidden;
  padding: 20px 0;
}
.marquee-track{
  display:flex;
  gap: 18px;
  width: max-content;
  animation: scroll-marquee 32s linear infinite;
}
.marquee-track span{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--mist);
  white-space:nowrap;
}
.marquee-track span:nth-child(2n){ color: var(--red); }
@keyframes scroll-marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =========================================================
   STATS
   ========================================================= */
.stats{
  background: var(--ink);
  padding: 56px 0 64px;
}
.stats-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat{
  display:flex;
  flex-direction:column;
  gap: 6px;
  border-left: 2px solid var(--red);
  padding-left: 18px;
}
.stat-num{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  color: var(--white);
  letter-spacing: -0.01em;
}
.stat-num em{ color: var(--red); font-style:normal; }
.stat-label{
  font-size: 0.85rem;
  color: var(--mist);
}

/* =========================================================
   SECTION HEAD
   ========================================================= */
.section-head{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.section-head h2, .why-inner h2, .contact-main h2{
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  max-width: 680px;
  letter-spacing: -0.01em;
}
.section-head--light .eyebrow{ color: var(--red); }
.section-head--light h2{ color: var(--white); }

/* =========================================================
   SERVICES
   ========================================================= */
.services{
  background: var(--white);
  padding: 120px 0;
}
.service-grid{
  max-width: var(--container);
  margin: 56px auto 0;
  padding: 0 32px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ECEAE7;
  border-left: 1px solid #ECEAE7;
}
.service-card{
  background: var(--white);
  padding: 44px 34px;
  display:flex;
  flex-direction:column;
  gap: 14px;
  border-right: 1px solid #ECEAE7;
  border-bottom: 1px solid #ECEAE7;
  transition: background .2s ease;
}
.service-card:hover{ background: var(--ink); }
.service-card:hover h3, .service-card:hover p{ color: var(--white); }
.service-card:hover .service-num{ color: var(--red); }
.service-card--lg{ grid-column: span 1; }
.service-num{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--red);
}
.service-card h3{
  font-size: 1.28rem;
  font-weight: 700;
  transition: color .2s ease;
}
.service-card p{
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--slate);
  transition: color .2s ease;
}

/* =========================================================
   WORK
   ========================================================= */
.work{
  background: var(--ink);
  padding: 120px 0;
}
.work-feature{
  max-width: var(--container);
  margin: 56px auto 0;
  padding: 0 32px;
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items:center;
}
.work-feature-image{
  border-radius: 4px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.work-tag{
  display:inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.work-feature-text h3{
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.work-feature-text p{
  color: var(--mist);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 24px;
}
.work-taglist{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.work-taglist li{
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 14px;
  border-radius: 3px;
}

.work-grid{
  max-width: var(--container);
  margin: 80px auto 0;
  padding: 0 32px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card{
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 30px 28px;
  transition: border-color .2s ease, background .2s ease;
}
.work-card:hover{ border-color: var(--red); background: rgba(229,34,42,0.06); }
.work-card h3{
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.work-card p{
  color: var(--mist);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why{
  background: var(--paper);
  padding: 120px 0;
}
.why-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.why-inner h2{
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  max-width: 680px;
  letter-spacing: -0.01em;
}
.why-grid{
  margin-top: 56px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card{
  background: var(--white);
  padding: 36px 28px;
  border-radius: 4px;
  display:flex;
  flex-direction:column;
  gap: 16px;
}
.why-icon{
  width: 44px; height: 44px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 50%;
  background: rgba(229,34,42,0.08);
  color: var(--red);
}
.why-icon svg{ width: 22px; height: 22px; }
.why-card h4{
  font-size: 1.02rem;
  font-weight: 700;
}
.why-card p{
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--slate);
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews{
  background: var(--white);
  padding: 120px 0;
}
.reviews-grid{
  max-width: var(--container);
  margin: 56px auto 0;
  padding: 0 32px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card{
  background: var(--paper);
  border-radius: 4px;
  padding: 34px 30px;
  display:flex;
  flex-direction:column;
  gap: 18px;
}
.review-stars{
  color: var(--red);
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.review-quote{
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
}
.review-person{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px;
}
.review-avatar{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  display:flex; align-items:center; justify-content:center;
  flex-shrink: 0;
}
.review-person div{ display:flex; flex-direction:column; }
.review-name{ font-size: 0.9rem; font-weight: 700; }
.review-role{ font-size: 0.78rem; color: var(--slate); }

/* =========================================================
   CONTACT / FOOTER
   ========================================================= */
.contact{
  background: var(--ink);
  padding: 110px 0 0;
}
.contact-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  padding-bottom: 90px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-main h2{ color: var(--white); margin-bottom: 34px; }
.contact-details{
  display:grid;
  gap: 28px;
  align-content:start;
}
.contact-label{
  display:block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.contact-block p{
  color: var(--mist);
  font-size: 0.98rem;
  line-height: 1.6;
}
.contact-bottom{
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.footer-logo{ height: 26px; width:auto; filter: brightness(0) invert(1); opacity:0.85; }
.contact-bottom p{
  color: var(--mist);
  font-size: 0.82rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px){
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
  .work-grid{ grid-template-columns: 1fr; }
  .work-feature{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .reviews-grid{ grid-template-columns: 1fr; }
  .stats-inner{ grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .contact-inner{ grid-template-columns: 1fr; }
}

@media (max-width: 700px){
  .nav-links, .nav-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .nav.open .nav-links{
    display:flex;
    position:absolute;
    top: 100%; left:0; right:0;
    background: var(--white);
    border-bottom: 1px solid rgba(14,13,15,0.08);
    flex-direction:column;
    gap:0;
    padding: 10px 22px 20px;
  }
  .nav.open .nav-links a{
    padding: 14px 0;
    border-bottom: 1px solid rgba(14,13,15,0.08);
    opacity: 1;
  }
  .hero{ margin-top: 60px; }
  .hero-banner{ aspect-ratio: 4 / 5; }
  .services, .work, .why, .reviews{ padding: 80px 0; }
  .service-grid{ grid-template-columns: 1fr; margin-top: 40px; }
  .why-grid{ grid-template-columns: 1fr; margin-top: 40px; }
  .reviews-grid{ margin-top: 40px; }
  .stats{ padding: 48px 0; }
  .section-head, .why-inner, .work-feature, .work-grid, .reviews-grid, .contact-inner{ padding-left: 22px; padding-right: 22px; }
  .stats-inner{ padding-left: 22px; padding-right: 22px; grid-template-columns: 1fr 1fr; }
  .contact-bottom{ flex-direction:column; text-align:center; padding-left:22px; padding-right:22px; }
}