:root {
  --gold: #e8b86a;
  --gold-dark: #d9a54a;
  --black: #111111;
  --white: #ffffff;
  --grey: #6b6b6b;
  --grey-light: #f4f2ee;
  --radius: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

/* Header */
.site-header {
  border-bottom: 4px solid var(--black);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand a { display: flex; align-items: center; }
.brand-logo { height: 40px; width: auto; object-fit: contain; }
.brand-name { font-weight: 900; letter-spacing: 0.02em; font-size: 15px; }
.brand-tagline { font-size: 12px; color: var(--grey); }
.site-nav a {
  margin-left: 22px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-nav a:hover { color: var(--gold-dark); }
.site-nav a.active { background: var(--gold); color: var(--black); }
.site-nav a.nav-cta {
  background: var(--black);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
}
.site-nav a.nav-cta:hover { background: var(--gold-dark); color: var(--black); }
.site-nav a.nav-cta.active { background: var(--gold-dark); color: var(--black); }

/* Keep the sticky header from covering section titles when jumping via nav links */
section[id] { scroll-margin-top: 90px; }

/* Hero */
.hero {
  background: var(--gold);
  padding: 56px 0;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  text-align: left;
}
.hero-text { flex: 1 1 480px; min-width: 0; }
.hero h1 { font-size: 32px; margin: 0 0 16px; }
.hero p { max-width: 560px; margin: 0 0 24px; font-size: 16px; }
.hero-photo-wrap { flex: 0 0 300px; }
.hero-photo-wrap img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  border: 3px solid var(--black);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
.btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero-updated {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
}
@media (max-width: 760px) {
  .hero-inner { flex-direction: column-reverse; text-align: center; }
  .hero-text { text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-photo-wrap { flex: 0 0 auto; width: 220px; }
}

/* Featured project (27-0) — portfolio case study, not an ad */
.feature-project { padding: 24px 0; }
.feature-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: left;
}
.feature-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.feature-logo { height: 36px; width: auto; object-fit: contain; flex-shrink: 0; }
.feature-heading { text-align: left; }
.feature-badge {
  display: inline-block;
  background: var(--grey-light);
  border: 1px solid var(--black);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.feature-tagline { font-size: 13px; font-weight: 700; margin: 0; color: var(--grey); text-transform: none; letter-spacing: normal; }
.feature-description { max-width: 720px; margin: 0 0 14px; font-size: 14px; color: var(--black); text-align: left; }
.feature-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  margin: 0 0 14px;
}
.feature-stat { text-align: left; }
.feature-stat-value { font-size: 20px; font-weight: 900; }
.feature-stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--grey); }
.feature-stat-link { color: var(--gold-dark); text-decoration: none; }
.feature-stat-link:hover { text-decoration: underline; }
.feature-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  background: var(--gold);
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
}
.feature-link:hover { background: var(--gold-dark); }

.feature-columns { display: flex; gap: 32px; align-items: flex-start; }
.feature-body { flex: 1 1 auto; min-width: 0; }
.feature-media { flex: 0 0 140px; display: flex; justify-content: center; }
.phone-frame {
  position: relative;
  width: 140px;
  border: 7px solid var(--black);
  border-radius: 26px;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42%;
  height: 14px;
  background: var(--black);
  border-radius: 0 0 9px 9px;
  z-index: 2;
}
.phone-frame img { display: block; width: 100%; height: auto; }
@media (max-width: 700px) {
  .feature-columns { flex-direction: column; align-items: center; text-align: center; }
  .feature-media { flex: 0 0 auto; margin-top: 6px; }
  .feature-top, .feature-stats { justify-content: center; }
  .feature-heading, .feature-body { text-align: center; }
}

/* Sections */
.section { padding: 36px 0; }
.section.alt { background: var(--grey-light); }
.section h2 { font-size: 24px; margin-bottom: 6px; }
.section-note { color: var(--grey); font-size: 14px; margin-top: 0; margin-bottom: 24px; }

/* Metrics */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.metric-card {
  border: 2px solid var(--black);
  border-top: 4px solid var(--black);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.metric-card:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(17,17,17,0.1); }
.metric-card .value { font-size: 30px; font-weight: 900; }
.metric-card .platform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  margin-top: 4px;
}
.metric-card .platform svg { flex-shrink: 0; }
/* Somewhat brand-colour-coded per platform, via top border + icon/text tint */
.mc-youtube { border-top-color: #ff0000; }
.mc-youtube .platform { color: #cc0000; }
.mc-instagram { border-top-color: #d62976; }
.mc-instagram .platform { color: #b3225f; }
.mc-tiktok { border-top-color: #010101; }
.mc-tiktok .platform { color: #ee1d52; }
.mc-x { border-top-color: #000000; }
.mc-x .platform { color: #000000; }
.mc-facebook { border-top-color: #1877f2; }
.mc-facebook .platform { color: #1877f2; }
.metric-card .subnote { font-size: 11px; color: var(--grey); margin-top: 6px; }
.skeleton { background: linear-gradient(90deg,#eee,#f7f7f7,#eee); min-height: 100px; border-color: #eee; }

/* Audience */
.audience-grid { display: flex; flex-direction: column; gap: 20px; }
.audience-top-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.audience-reach-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) {
  .audience-top-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .audience-top-row { grid-template-columns: 1fr; }
  .audience-reach-row { grid-template-columns: 1fr; }
  /* Reach cards collapse to just their header on mobile to cut down scrolling;
     tap to expand. Always fully open on desktop (see min-width rule below). */
  .reach-chevron { display: inline-block; }
  .reach-card.collapsed .reach-body { display: none; }
  .reach-card:not(.collapsed) .reach-chevron { transform: rotate(180deg); }
}
.audience-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid #e9e4da;
  box-shadow: 0 2px 8px rgba(17,17,17,0.04);
}
.audience-card h4 { margin: 0 0 12px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.audience-card .card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.audience-card .card-header h4 { margin: 0; }
.audience-card .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grey-light);
  color: var(--gold-dark);
  flex-shrink: 0;
}
.bar-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 13px; margin-bottom: 6px; font-weight: 600; }
.bar-track { flex: none; width: 100%; background: #e5e0d8; border-radius: 6px; height: 8px; overflow: hidden; margin-bottom: 12px; }
.bar-fill { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); height: 100%; border-radius: 6px; }

/* Reach cards (Instagram / TikTok / Facebook) — colour-coded, number-forward */
.reach-card {
  color: var(--white);
  border: none;
  box-shadow: 0 6px 16px rgba(17,17,17,0.12);
}
.reach-instagram { background: linear-gradient(135deg, #4f5bd5, #962fbf 35%, #d62976 60%, #fa7e1e 85%, #feda75); }
.reach-tiktok { background: linear-gradient(120deg, #010101, #1f1f1f 60%, #ee1d52); }
.reach-facebook { background: linear-gradient(135deg, #1877f2, #0b3d91); }
.reach-youtube { background: linear-gradient(135deg, #ff0000, #7a0000); }
.reach-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 4px;
  padding: 0;
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.reach-header svg { flex-shrink: 0; }
.reach-header h4 { margin: 0; font-size: 14px; color: var(--white); }
.reach-chevron { margin-left: auto; transition: transform 0.15s ease; display: none; }
.reach-period { font-size: 11px; opacity: 0.85; margin-bottom: 14px; }
.reach-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 14px;
}
.reach-value { font-size: 22px; font-weight: 900; }
.reach-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.03em; opacity: 0.85; margin-top: 2px; }

/* Video / top content */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.video-card, .episode-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e5e0d8;
  text-decoration: none;
  display: block;
  background: var(--white);
}
.video-card img, .episode-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #ddd;
}
.video-card .body, .episode-card .body { padding: 14px; }
.video-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--gold);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.video-card .title, .episode-card .title { font-weight: 700; font-size: 14px; margin: 0 0 6px; }
.video-card .metric, .episode-card .date { font-size: 12px; color: var(--grey); }

/* Episodes */
.acast-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 8px;
}
.acast-embed-wrap.acast-embed-tight { margin-bottom: 0; }
.acast-embed-wrap iframe { display: block; border: none; }
.sponsors-subhead-tight { margin-top: 16px; }
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.subscribe-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Icon buttons — used for subscribe links and footer socials */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.icon-btn:hover { background: var(--black); color: var(--white); }

/* Guest / episode "see more" style CTA */
.section-cta { margin-top: 24px; }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 10px 22px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* Shorts — skinny sliding carousel, 3-4 visible, one-at-a-time toggle */
.shorts-carousel {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shorts-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  flex: 1 1 auto;
  scrollbar-width: none;
}
.shorts-track::-webkit-scrollbar { display: none; }
.carousel-btn {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: var(--black); color: var(--white); }
.short-card {
  flex: 0 0 calc((100% - 3 * 16px) / 4);
  max-width: 200px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e5e0d8;
  text-decoration: none;
  display: block;
  background: var(--white);
}
@media (max-width: 900px) {
  .short-card { flex-basis: calc((100% - 16px) / 2); }
}
@media (max-width: 520px) {
  .short-card { flex-basis: 78%; }
}
.short-card img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  background: #ddd;
}
.short-card .body { padding: 10px; }
.short-card .title { font-weight: 700; font-size: 12.5px; margin: 0; }

/* Sponsors */
.sponsors-group { margin: 0; }
.sponsors-group + .sponsors-group { margin-top: 8px; }
.sponsors-subhead {
  font-size: 15px;
  text-transform: uppercase;
  margin: 32px 0 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sponsors-subhead::-webkit-details-marker { display: none; }
.sponsors-subhead::after {
  content: "▾";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 2px solid var(--black);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.sponsors-subhead:hover::after { background: var(--black); color: var(--white); }
.sponsors-group[open] > .sponsors-subhead::after { transform: rotate(180deg); }
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}
.sponsor-card {
  border: 1px solid #e5e0d8;
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-self: start;
}
.sponsor-card img { max-height: 48px; max-width: 100%; object-fit: contain; margin-bottom: 10px; }
.sponsor-card .name { font-weight: 700; font-size: 13px; }
.sponsor-card .sponsor-blurb {
  font-size: 12px;
  color: var(--black);
  margin: 6px 0;
  min-height: 96px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
a.example-link { font-size: 12px; display: inline-block; margin-top: 4px; color: var(--gold-dark); font-weight: 700; text-decoration: none; }
.sponsor-card .card-bottom { margin-top: auto; }

/* Sponsor "View Examples" accordion */
.see-work-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 2px solid var(--black);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  padding: 8px 16px;
  margin-top: 8px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.see-work-toggle:hover, .see-work-toggle.open { background: var(--black); color: var(--white); }
.see-work-toggle .chevron { display: inline-block; transition: transform 0.15s ease; }
.see-work-toggle.open .chevron { transform: rotate(180deg); }
.work-details {
  display: none;
  text-align: left;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.work-details.open { display: block; }
.work-item { margin-bottom: 10px; }
.work-item:last-child { margin-bottom: 0; }
.work-title { font-weight: 700; font-size: 12.5px; }
.work-desc { font-size: 12px; color: var(--grey); margin: 2px 0 4px; }

/* Gnocchi the Bulldog spotlight — a piece of media flanks the text on each side */
.gnocchi-layout { display: flex; gap: 36px; align-items: flex-start; }
.gnocchi-media { flex: 0 0 160px; display: flex; justify-content: center; }
.gnocchi-media img {
  width: 100%;
  height: 300px;
  display: block;
  border-radius: var(--radius);
  border: 2px solid var(--black);
  object-fit: cover;
}
.gnocchi-media .gnocchi-clip img {
  border: none;
  border-radius: 0;
}
.gnocchi-body { flex: 1 1 auto; min-width: 0; }
.gnocchi-body p { font-size: 14px; margin: 0 0 20px; }
.gnocchi-stats { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 24px; }
.gnocchi-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff0000;
  color: var(--white);
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.gnocchi-video-btn svg { flex-shrink: 0; width: 22px; height: 22px; }
.gnocchi-video-btn:hover { background: #cc0000; }
@media (max-width: 760px) {
  .gnocchi-layout { flex-direction: column; }
  .gnocchi-media { flex: 0 0 auto; width: 100%; max-width: 220px; margin: 0 auto; }
}

/* Contact CTA */
.contact-section { text-align: center; background: var(--gold); }
.contact-section h2 { margin-bottom: 10px; }
.contact-section .section-note {
  max-width: 480px;
  margin: 0 auto 24px;
  color: var(--black);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 32px 0;
  margin-top: 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.footer-inner a { color: var(--gold); text-decoration: none; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials .icon-btn { border-color: var(--gold); color: var(--gold); }
.footer-socials .icon-btn:hover { background: var(--gold); color: var(--black); }

@media (max-width: 640px) {
  .site-nav { display: none; }
  .hero h1 { font-size: 24px; }
}
