/* ---- About Widget.html line 6 ---- */
/* Preview-only page styles. Squarespace will provide its own. */
  body { margin: 0; background: #000; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }

/* ---- About Widget.html line 17 ---- */
/* ============================================================
   DUMB INDUSTRIES — ABOUT PAGE WIDGET
   All styles scoped under .di-about to avoid Squarespace conflicts
   ============================================================ */

/* Poppins 800 only -- Squarespace site-wide load covers 400/500/600/700;
   only weight 800 needs to be requested for this widget's headline use. */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@800&display=swap');

.di-about {
  --di-orange: #F75E1C;
  --di-bg: transparent;
  --di-card: #1a1a1a;
  --di-card-hover: #242424;
  --di-text: #ffffff;
  --di-muted: rgba(255,255,255,0.65);
  --di-border: rgba(255,255,255,0.08);
  --di-pad-x: 4vw;

  /* Full-bleed: break out of Squarespace's centered container */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;

  color: var(--di-text);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  box-sizing: border-box;
  overflow-x: hidden;
}

.di-about,
.di-about h1,
.di-about h2,
.di-about h3,
.di-about p,
.di-about span,
.di-about a,
.di-about div {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.di-about *, .di-about *::before, .di-about *::after { box-sizing: border-box; }

/* ---------- HERO ---------- */
.di-hero {
  position: relative;
  margin: 0 0 80px;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}
.di-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.di-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.45) 7%, rgba(0,0,0,0) 15%),
    linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 7%, rgba(0,0,0,0.4) 16%, rgba(0,0,0,0) 24%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px var(--di-pad-x);
}
.di-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--di-orange);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.di-hero h1 {
  font-size: clamp(28px, 6.5vw, 90px);
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  width: 100%;
}
.di-hero p.di-hero-tag {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255,255,255,0.9);
  max-width: 720px;
  margin: 0 0 12px;
  line-height: 1.5;
}
.di-hero-credit {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-top: 0;
}

/* ---------- SECTION ---------- */
.di-section {
  margin: 0 0 90px;
  padding: 0 var(--di-pad-x);
}
.di-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 20px;
  flex-wrap: wrap;
}
.di-section-head-left { min-width: 0; }
.di-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--di-orange);
  text-transform: uppercase;
  margin: 0 0 8px;
  display: block;
}
.di-section-head h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.di-view-all {
  color: var(--di-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color 0.2s;
}
.di-view-all:hover { color: var(--di-orange); }

/* ---------- STORY ---------- */
.di-section:has(> .di-story) .di-section-head {
  justify-content: center;
  text-align: center;
}
.di-about .di-section-head .di-story-logo {
  display: block !important;
  width: 100% !important;
  max-width: 280px !important;
  height: auto !important;
  margin: 0 auto !important;
}
.di-story {
  max-width: 400px;
  margin: 0 auto;
}
.di-story p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0 0 18px;
  text-align: justify;
}
.di-story strong {
  color: var(--di-text);
  font-weight: 700;
}
.di-story em {
  color: var(--di-orange);
  font-style: italic;
}

/* ---------- TEAM CAROUSEL ---------- */
.di-swipe-hint {
  font-size: 11px;
  color: var(--di-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 14px;
  display: none;
}
.di-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.di-team-card {
  background: var(--di-card);
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid var(--di-border);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.di-team-card:hover {
  transform: translateY(-4px);
  background: var(--di-card-hover);
  border-color: rgba(247,94,28,0.4);
}
.di-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.di-avatar-cg { background: linear-gradient(135deg, #F75E1C 0%, #c93f00 100%); }
.di-avatar-mr { background: linear-gradient(135deg, #6b46c1 0%, #3b1d7a 100%); }
.di-avatar-em { background: linear-gradient(135deg, #0ea5e9 0%, #0c5d83 100%); }
.di-avatar-jh { background: linear-gradient(135deg, #ec4899 0%, #9d174d 100%); }
.di-team-name {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.di-team-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--di-orange);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.di-team-bio {
  font-size: 14px;
  color: var(--di-muted);
  line-height: 1.55;
  margin: 0 0 18px;
  flex: 1;
}
.di-team-email {
  display: inline-block;
  color: var(--di-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  word-break: break-all;
}
.di-team-email:hover { color: var(--di-orange); border-color: var(--di-orange); }

/* ---------- ABOUT SOCIAL ROW ---------- */
.di-about-social {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.di-about-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s;
}
.di-about-social a:hover {
  transform: translateY(-2px);
}
.di-about-social svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
  transition: fill 0.2s;
}
.di-about-social a:hover svg {
  fill: var(--di-orange);
}
.di-programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.di-hosts {
  /* Base .di-programs is repeat(3, 1fr); with four hosts that strands the last
     card alone on its own row. auto-fit keeps them balanced at any width and
     collapses to one column on mobile without needing its own media query. */
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.di-program {
  background: var(--di-card);
  border-radius: 14px;
  padding: 22px 22px;
  border: 1px solid var(--di-border);
  text-decoration: none;
  color: var(--di-text);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  display: block;
}
.di-program:hover {
  background: var(--di-card-hover);
  border-color: rgba(247,94,28,0.4);
  transform: translateY(-2px);
}
.di-program-name {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.di-program-desc {
  font-size: 13px;
  color: var(--di-muted);
  margin: 0;
  line-height: 1.5;
}

/* ---------- ARTISTS ---------- */
.di-artists-promise {
  background: linear-gradient(135deg, rgba(247,94,28,0.12) 0%, rgba(247,94,28,0.02) 100%);
  border: 1px solid rgba(247,94,28,0.3);
  border-radius: 18px;
  padding: 48px 48px;
  text-align: center;
}
.di-artists-promise p {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.6;
  margin: 0 0 28px;
}
.di-artists-promise p strong {
  color: var(--di-orange);
  font-weight: 700;
}
.di-artists-names {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  margin: 0;
  font-weight: 500;
}
.di-artists-promise .di-artists-names strong {
  color: #ffffff;
  font-weight: 800;
}

/* ---------- FINAL CTA ---------- */
.di-cta {
  margin: 0 var(--di-pad-x) 60px;
  padding: 60px 40px;
  text-align: center;
}
.di-cta h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.di-cta p {
  font-size: 17px;
  color: var(--di-muted);
  max-width: 560px;
  margin: 0 auto 28px;
}
.di-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- BUTTON (Chris's standard style) ---------- */
.di-btn {
  display: inline-block;
  background: #F75E1C;
  color: #ffffff !important;
  padding: 18px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.8);
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s, box-shadow 0.2s;
}
.di-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247,94,28,0.4);
}
.di-btn-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.3);
}
.di-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ---------- TABLET ---------- */
@media (max-width: 980px) {
  .di-carousel { grid-template-columns: repeat(2, 1fr); }
  .di-programs { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- MOBILE ---------- */
@media (max-width: 640px) {
  .di-about { --di-pad-x: 4vw; }

  /* Hero: photo at top (natural aspect, no cropping), text below in solid black */
  .di-hero {
    height: auto;
    min-height: 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    background: #000;
  }
  /* Top gradient pseudo-element for nav visibility (since overlay no longer covers photo) */
  .di-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0) 100%);
    z-index: 2;
    pointer-events: none;
  }
  .di-hero img {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    display: block;
  }
  .di-hero-overlay {
    position: relative;
    inset: auto;
    margin-top: -130px;
    padding: 30px 4vw 32px;
    background: linear-gradient(to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.55) 28%,
      rgba(0,0,0,0.95) 52%,
      #000 70%);
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 1;
  }
  .di-hero-eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  }
  .di-hero h1 {
    font-size: clamp(38px, 11vw, 60px);
    margin-bottom: 18px;
    line-height: 1.04;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  }
  .di-hero p.di-hero-tag {
    font-size: 17px;
    margin-bottom: 16px;
    max-width: none;
    line-height: 1.5;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  }
  .di-hero-credit {
    font-size: 11px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  }

  .di-section { margin-bottom: 60px; }
  .di-section-head { margin-bottom: 18px; }

  .di-swipe-hint { display: none; }

  /* Team layout becomes single column on mobile */
  .di-carousel-wrap {
    margin: 0;
  }
  .di-carousel {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 0;
    gap: 14px;
  }
  .di-team-card {
    flex: initial;
    min-width: 0;
  }

  .di-programs { grid-template-columns: 1fr; }

  .di-artists-promise { padding: 24px 22px; }

  .di-cta {
    padding: 44px 24px;
    margin: 0 4vw 40px;
  }
  .di-cta-buttons { flex-direction: column; }
  .di-btn { width: 100%; }
}
