/*
Theme Name:  Ajani Griffith
Theme URI:   https://ajanigriffith.com
Author:      Ajani Griffith
Author URI:  https://ajanigriffith.com
Description: Official theme for Ajani Griffith -- Speaker, Director, Music Supervisor, and Founder of Ajani's Blue Room. Built at the intersection of music and film.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ajani-griffith
Tags:        music, entertainment, portfolio, events, podcast
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --ag-baby:        #47BFED;
  --ag-baby-dark:   #1A95C8;
  --ag-baby-deep:   #0D6E9A;
  --ag-crimson:     #E8185A;
  --ag-crimson-b:   #C8134A;
  --ag-black:       #0D0D0D;
  --ag-off:         #F8F7F5;
  --ag-gray-light:  #F0EEEB;
  --ag-gray-mid:    #9A9890;
  --ag-border:      rgba(0,0,0,0.09);
  --ag-font-head:   'Montserrat', system-ui, sans-serif;
  --ag-font-body:   'Open Sans', system-ui, sans-serif;
  --ag-radius:      10px;
  --ag-transition:  0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: var(--ag-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ag-black);
  background: var(--ag-off);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6 { font-family: var(--ag-font-head); font-weight: 900; text-transform: uppercase; line-height: 1.1; margin: 0 0 0.5em; }

/* ============================================================
   CONTAINER
   ============================================================ */
.ag-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media(max-width:600px){ .ag-container { padding: 0 20px; } }

/* ============================================================
   UTILITY BUTTONS
   ============================================================ */
.ag-btn {
  display: inline-block;
  font-family: var(--ag-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity var(--ag-transition);
  white-space: nowrap;
}
.ag-btn:hover { opacity: 0.82; }
.ag-btn--primary { background: var(--ag-crimson); color: #fff; }
.ag-btn--dark    { background: var(--ag-black); color: #fff; }
.ag-btn--blue    { background: var(--ag-baby); color: var(--ag-black); }
.ag-btn--white   { background: #fff; color: var(--ag-crimson); }
.ag-btn--ghost   { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.25); }

/* ============================================================
   SECTION LABEL
   ============================================================ */
.ag-section-label {
  font-family: var(--ag-font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ag-gray-mid);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ag-section-label::after { content:''; flex:1; height:.5px; background:var(--ag-border); }
.ag-section-label--dark { color: rgba(255,255,255,.25); }
.ag-section-label--dark::after { background: rgba(255,255,255,.08); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.ag-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ag-black);
  border-bottom: .5px solid rgba(255,255,255,.06);
}
.ag-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  gap: 16px;
}
.ag-nav__logo {
  font-family: var(--ag-font-head);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.ag-nav__logo span { color: var(--ag-baby); }
.ag-nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}
.ag-nav__links a {
  font-family: var(--ag-font-head);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color var(--ag-transition);
}
.ag-nav__links a:hover,
.ag-nav__links a.current-menu-item { color: #fff; }
.ag-nav__platforms { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.ag-nav__pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--ag-font-head);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  transition: opacity var(--ag-transition);
  cursor: pointer;
}
.ag-nav__pill:hover { opacity: .82; }
.ag-nav__pill--yt { background: #FF0000; color: #fff; }
.ag-nav__pill--pt { background: #FF424D; color: #fff; }
.ag-nav__pill--ig { background: #C13584; color: #fff; }
.ag-nav__pill--li { background: #0A66C2; color: #fff; }
.ag-nav__cta {
  font-family: var(--ag-font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--ag-baby);
  color: var(--ag-black) !important;
  padding: 8px 16px;
  border-radius: 2px;
  white-space: nowrap;
  transition: opacity var(--ag-transition);
}
.ag-nav__cta:hover { opacity: .82; }
.ag-nav__toggle { display: none; background: none; border: none; cursor: pointer; color: #fff; font-size: 22px; padding: 4px; }

@media(max-width:960px) {
  .ag-nav__links,
  .ag-nav__platforms { display: none; }
  .ag-nav__toggle { display: block; }
  .ag-nav__cta { display: none; }
  .ag-nav__links.open,
  .ag-nav__platforms.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 58px; left: 0; right: 0;
    background: var(--ag-black);
    border-bottom: .5px solid rgba(255,255,255,.1);
    padding: 20px 28px;
    gap: 14px;
    z-index: 199;
    align-items: flex-start;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.ag-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
  border-bottom: 3px solid var(--ag-crimson);
  background: var(--ag-black);
}
.ag-hero__text {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: .5px solid rgba(255,255,255,.07);
}
.ag-hero__eyebrow {
  font-family: var(--ag-font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ag-baby);
  margin-bottom: 16px;
}
.ag-hero__headline {
  font-family: var(--ag-font-head);
  font-size: clamp(26px,3.5vw,44px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
}
.ag-hero__headline .acc   { color: var(--ag-baby); }
.ag-hero__headline .acc-r { color: var(--ag-crimson-b); }
.ag-hero__sub {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
  max-width: 420px;
}
.ag-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ag-hero__media {
  background: #0D1B2A;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ag-hero__video {
  flex: 1;
  position: relative;
  min-height: 240px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ag-hero__video iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.ag-hero__play {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px;
  transition: background var(--ag-transition);
}
.ag-hero__video:hover .ag-hero__play { background: rgba(255,255,255,.25); }
.ag-hero__identity {
  background: #0D1B2A;
  padding: 16px 20px;
  border-top: .5px solid rgba(255,255,255,.08);
}
.ag-hero__name {
  font-family: var(--ag-font-head);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.ag-hero__roles {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.ag-hero__role {
  font-family: var(--ag-font-head);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ag-baby);
  padding: 0 8px;
}
.ag-hero__role:first-child { padding-left: 0; }
.ag-hero__sep { font-size: 12px; color: rgba(255,255,255,.2); }

@media(max-width:768px) {
  .ag-hero { grid-template-columns: 1fr; }
  .ag-hero__text { padding: 36px 24px; border-right: none; border-bottom: .5px solid rgba(255,255,255,.07); }
  .ag-hero__media { min-height: 280px; }
}

/* ============================================================
   CREDENTIAL TICKER
   ============================================================ */
.ag-ticker { background: var(--ag-crimson); padding: 8px 0; overflow: hidden; }
.ag-ticker__track {
  display: flex; gap: 40px;
  animation: ag-scroll 22s linear infinite;
  width: max-content;
}
.ag-ticker__item {
  font-family: var(--ag-font-head);
  font-size: 8px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  display: flex; align-items: center; gap: 14px;
}
.ag-ticker__item::after { content:'\25C6'; font-size:5px; opacity:.55; }
@keyframes ag-scroll { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ============================================================
   INTERSECT BAR
   ============================================================ */
.ag-intersect {
  background: var(--ag-baby-deep);
  padding: 28px;
  text-align: center;
  border-bottom: 3px solid var(--ag-baby);
}
.ag-intersect__headline {
  font-family: var(--ag-font-head);
  font-size: 15px; font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.ag-intersect__sub {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   WHAT AJANI DOES
   ============================================================ */
.ag-does {
  background: var(--ag-black);
  padding: 48px 0;
  border-bottom: .5px solid rgba(255,255,255,.06);
}
.ag-does__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}
.ag-does__card {
  background: #111;
  border-radius: var(--ag-radius);
  overflow: hidden;
  border: .5px solid rgba(255,255,255,.08);
  transition: border-color var(--ag-transition);
}
.ag-does__card:hover { border-color: var(--ag-baby); }
.ag-does__photo {
  height: 160px;
  background: #1a2030;
  position: relative;
  overflow: hidden;
}
.ag-does__photo img { width:100%; height:100%; object-fit:cover; object-position:top; }
.ag-does__photo-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%); }
.ag-does__ph {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:6px;
}
.ag-does__ph-label {
  font-family: var(--ag-font-head);
  font-size: 7px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.2); text-align:center; padding:0 10px;
}
.ag-does__body { padding: 14px 16px; }
.ag-does__cat {
  font-family: var(--ag-font-head);
  font-size: 8px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ag-baby); margin-bottom: 4px;
}
.ag-does__title {
  font-family: var(--ag-font-head);
  font-size: 12px; font-weight: 900;
  text-transform: uppercase; color: #fff;
  margin-bottom: 3px; line-height: 1.2;
}
.ag-does__sub { font-size: 10px; line-height: 1.5; color: rgba(255,255,255,.4); font-style: italic; }

@media(max-width:640px){ .ag-does__grid { grid-template-columns:1fr; } }

/* ============================================================
   STATS STRIP
   ============================================================ */
.ag-stats {
  background: var(--ag-baby-deep);
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-bottom: 3px solid var(--ag-crimson);
}
.ag-stat {
  padding: 24px 16px;
  border-right: .5px solid rgba(255,255,255,.15);
  text-align: center;
}
.ag-stat:last-child { border-right: none; }
.ag-stat__num {
  font-family: var(--ag-font-head);
  font-size: 30px; font-weight: 900;
  color: #fff; line-height: 1; margin-bottom: 4px;
}
.ag-stat__label {
  font-size: 9px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
@media(max-width:500px){ .ag-stats { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   CONTENT HUB
   ============================================================ */
.ag-hub { padding: 48px 0; border-bottom: .5px solid var(--ag-border); }
.ag-hub__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.ag-hub__card {
  background: #fff;
  border-radius: var(--ag-radius);
  overflow: hidden;
  border: .5px solid var(--ag-border);
  transition: transform var(--ag-transition), box-shadow var(--ag-transition);
}
.ag-hub__card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.ag-hub__photo {
  height: 80px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ag-hub__photo img { width:100%; height:100%; object-fit:cover; }
.ag-hub__ph {
  font-family: var(--ag-font-head);
  font-size: 7px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.25); text-align:center; padding:0 8px;
}
.ag-hub__body { padding: 10px 12px; }
.ag-hub__cat {
  font-family: var(--ag-font-head);
  font-size: 7px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 3px;
}
.ag-hub__cat--pod { color: var(--ag-baby-dark); }
.ag-hub__cat--yt  { color: #FF0000; }
.ag-hub__cat--ev  { color: var(--ag-crimson); }
.ag-hub__cat--bl  { color: var(--ag-baby-dark); }
.ag-hub__title {
  font-family: var(--ag-font-head);
  font-size: 10px; font-weight: 700;
  color: var(--ag-black); line-height: 1.3; margin-bottom: 6px;
}
.ag-hub__link { font-size: 9px; font-weight: 600; color: var(--ag-gray-mid); }
@media(max-width:640px){ .ag-hub__grid { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   PATREON BLOCK
   ============================================================ */
.ag-patreon { background: var(--ag-black); border-top: 3px solid var(--ag-baby); padding: 40px 0; }
.ag-patreon__inner {
  background: #FF424D;
  border-radius: var(--ag-radius);
  padding: 28px 32px;
  position: relative; overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px; align-items: center;
}
.ag-patreon__eyebrow {
  font-family: var(--ag-font-head);
  font-size: 8px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 8px;
}
.ag-patreon__headline {
  font-family: var(--ag-font-head);
  font-size: 22px; font-weight: 900;
  text-transform: uppercase; color: #fff;
  line-height: 1.1; margin-bottom: 12px;
}
.ag-patreon__perks { display:flex; flex-direction:column; gap:6px; }
.ag-patreon__perk {
  font-size: 12px; color: rgba(255,255,255,.8);
  display: flex; align-items: center; gap: 8px;
}
.ag-patreon__perk::before { content:'&#8594;'; color:rgba(255,255,255,.4); font-size:10px; flex-shrink:0; }
.ag-patreon__right { display:flex; flex-direction:column; align-items:center; gap:14px; text-align:center; flex-shrink:0; }
.ag-patreon__wm {
  position:absolute; right:-10px; bottom:-20px;
  font-size:120px; opacity:.05; color:#fff;
  font-weight:900; line-height:1; pointer-events:none;
}
@media(max-width:600px){ .ag-patreon__inner { grid-template-columns:1fr; } }

/* ============================================================
   SOCIAL ROW
   ============================================================ */
.ag-social {
  background: var(--ag-black);
  padding: 16px 0;
  display: flex; align-items: center; justify-content: space-between;
  border-top: .5px solid rgba(255,255,255,.06);
}
.ag-social__label {
  font-family: var(--ag-font-head);
  font-size: 8px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
.ag-social__links { display:flex; gap:6px; flex-wrap:wrap; }
.ag-social__link {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--ag-font-head);
  font-size: 8px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
  border: .5px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5); cursor: pointer;
  transition: border-color var(--ag-transition), color var(--ag-transition);
}
.ag-social__link:hover { color:#fff; border-color:rgba(255,255,255,.3); }
.ag-social__link--ig { border-color:rgba(193,53,132,.4); color:rgba(230,100,180,.85); }
.ag-social__link--li { border-color:rgba(10,102,194,.4); color:rgba(80,160,240,.85); }
.ag-social__link--yt { border-color:rgba(255,0,0,.35); color:rgba(255,80,80,.85); }
.ag-social__link--pt { border-color:rgba(255,66,77,.35); color:rgba(255,110,120,.85); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.ag-newsletter {
  background: var(--ag-baby-deep);
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.ag-newsletter__headline {
  font-family: var(--ag-font-head);
  font-size: 15px; font-weight: 900;
  text-transform: uppercase; color: #fff; margin-bottom: 4px;
}
.ag-newsletter__sub { font-size: 12px; color: rgba(255,255,255,.55); }
.ag-newsletter__form { display:flex; gap:8px; }
.ag-newsletter__input {
  font-family: var(--ag-font-body);
  font-size: 13px; padding: 10px 16px;
  border-radius: 2px; border: none;
  background: rgba(255,255,255,.15);
  color: #fff; outline: none; width: 220px;
}
.ag-newsletter__input::placeholder { color:rgba(255,255,255,.35); }

/* ============================================================
   FOOTER
   ============================================================ */
.ag-footer { background: #080808; padding: 40px 0 20px; }
.ag-footer__top {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap;
  gap: 28px; padding-bottom: 28px;
  border-bottom: .5px solid rgba(255,255,255,.07); margin-bottom: 20px;
}
.ag-footer__logo {
  font-family: var(--ag-font-head);
  font-size: 14px; font-weight: 900;
  letter-spacing: .12em; text-transform: uppercase; color: #fff;
}
.ag-footer__logo span { color: var(--ag-baby); }
.ag-footer__tagline { font-size: 10px; color: rgba(255,255,255,.25); margin-top: 4px; }
.ag-footer__group-label {
  font-family: var(--ag-font-head);
  font-size: 8px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 10px;
}
.ag-footer__link {
  display: block; font-size: 12px;
  color: rgba(255,255,255,.55); margin-bottom: 6px;
  transition: color var(--ag-transition);
}
.ag-footer__link:hover { color:#fff; }
.ag-footer__pill {
  display: inline-flex; align-items: center; gap:5px;
  font-family: var(--ag-font-head);
  font-size: 8px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  border: .5px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);
  margin-bottom: 6px; display:block;
  width: fit-content;
  transition: border-color var(--ag-transition), color var(--ag-transition);
}
.ag-footer__pill:hover { color:#fff; border-color:rgba(255,255,255,.3); }
.ag-footer__pill--yt { border-color:rgba(255,0,0,.3); color:rgba(255,80,80,.85); }
.ag-footer__pill--pt { border-color:rgba(255,66,77,.3); color:rgba(255,110,120,.85); }
.ag-footer__pill--ig { border-color:rgba(193,53,132,.3); color:rgba(230,100,180,.85); }
.ag-footer__pill--li { border-color:rgba(10,102,194,.3); color:rgba(80,160,240,.85); }
.ag-footer__copy { font-size: 10px; color: rgba(255,255,255,.18); text-align:center; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.ag-page-hero {
  background: var(--ag-black);
  padding: 60px 0;
  border-bottom: 3px solid var(--ag-crimson);
}
.ag-page-hero__eyebrow {
  font-family: var(--ag-font-head);
  font-size: 9px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--ag-baby); margin-bottom: 14px;
}
.ag-page-hero__h1 {
  font-family: var(--ag-font-head);
  font-size: clamp(26px,4vw,42px); font-weight: 900;
  text-transform: uppercase; color: #fff;
  line-height: 1.05; margin-bottom: 14px;
}
.ag-page-hero__h1 .acc   { color: var(--ag-baby); }
.ag-page-hero__h1 .acc-r { color: var(--ag-crimson-b); }
.ag-page-hero__sub {
  font-size: 14px; line-height: 1.75;
  color: rgba(255,255,255,.5); max-width: 560px;
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.ag-event-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: .5px solid var(--ag-border);
}
.ag-event-row:last-child { border-bottom: none; }
.ag-event-date {
  border-radius: 6px; padding: 10px 14px;
  text-align: center; min-width: 56px; flex-shrink: 0;
}
.ag-event-date--br     { background: var(--ag-crimson); }
.ag-event-date--speak  { background: var(--ag-baby-deep); }
.ag-event-date--other  { background: #555; }
.ag-event-date__month  { font-size: 8px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.7); }
.ag-event-date__day    { font-family: var(--ag-font-head); font-size: 26px; font-weight: 900; line-height: 1; color: #fff; }
.ag-event-type {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--ag-font-head);
  font-size: 7px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 100px; margin-bottom: 4px;
}
.ag-event-type--br     { background: rgba(155,27,48,.12); color: var(--ag-crimson); }
.ag-event-type--speak  { background: rgba(26,111,160,.12); color: var(--ag-baby-deep); }
.ag-event-type--other  { background: rgba(0,0,0,.06); color: var(--ag-gray-mid); }
.ag-event-title   { font-family: var(--ag-font-head); font-size: 14px; font-weight: 700; color: var(--ag-black); margin-bottom: 3px; }
.ag-event-meta    { font-size: 12px; color: var(--ag-gray-mid); }

/* ============================================================
   PODCAST PAGE
   ============================================================ */
.ag-episode {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: .5px solid var(--ag-border);
}
.ag-episode:last-child { border-bottom: none; }
.ag-episode__num   { font-size: 12px; color: var(--ag-gray-mid); width: 24px; font-variant-numeric: tabular-nums; flex-shrink: 0; }
.ag-episode__thumb { width: 52px; height: 52px; border-radius: 8px; background: var(--ag-baby-deep); flex-shrink: 0; overflow: hidden; }
.ag-episode__thumb img { width:100%; height:100%; object-fit:cover; }
.ag-episode__info  { flex: 1; min-width: 0; }
.ag-episode__title { font-family: var(--ag-font-head); font-size: 13px; font-weight: 700; color: var(--ag-black); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ag-episode__guest { font-size: 12px; color: var(--ag-gray-mid); }
.ag-episode__play  { width: 36px; height: 36px; border-radius: 50%; background: var(--ag-gray-light); border: .5px solid var(--ag-border); display: flex; align-items: center; justify-content: center; color: var(--ag-gray-mid); font-size: 14px; flex-shrink: 0; cursor: pointer; transition: background var(--ag-transition); }
.ag-episode__play:hover { background: #dff0fb; color: var(--ag-baby-deep); }

/* ============================================================
   CARDS (generic)
   ============================================================ */
.ag-card { background: #fff; border-radius: var(--ag-radius); border: .5px solid var(--ag-border); overflow: hidden; transition: transform var(--ag-transition), box-shadow var(--ag-transition); }
.ag-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.07); }
.ag-card__photo { height: 120px; background: #1a2030; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ag-card__photo img { width:100%; height:100%; object-fit:cover; }
.ag-card__ph { font-family: var(--ag-font-head); font-size: 7px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.25); }
.ag-card__body { padding: 14px 16px; }
.ag-card__cat  { font-family: var(--ag-font-head); font-size: 7px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ag-baby-dark); margin-bottom: 4px; }
.ag-card__cat--ev { color: var(--ag-crimson); }
.ag-card__title { font-family: var(--ag-font-head); font-size: 12px; font-weight: 700; color: var(--ag-black); line-height: 1.3; margin-bottom: 4px; }
.ag-card__meta  { font-size: 11px; color: var(--ag-gray-mid); }
.ag-card__link  { font-family: var(--ag-font-head); font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ag-crimson); margin-top: 8px; display: block; }

/* ============================================================
   SHOP
   ============================================================ */
.ag-product { background: #fff; border-radius: var(--ag-radius); border: .5px solid var(--ag-border); overflow: hidden; }
.ag-product__photo { height: 160px; background: var(--ag-baby-deep); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ag-product__photo img { width:100%; height:100%; object-fit:cover; }
.ag-product__ph { font-family: var(--ag-font-head); font-size: 7px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.ag-product__body { padding: 12px 14px; }
.ag-product__name  { font-family: var(--ag-font-head); font-size: 12px; font-weight: 700; color: var(--ag-black); margin-bottom: 4px; }
.ag-product__price { font-family: var(--ag-font-head); font-size: 16px; font-weight: 900; color: var(--ag-crimson); margin-bottom: 10px; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.ag-form__field   { margin-bottom: 14px; }
.ag-form__label   { font-family: var(--ag-font-head); font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ag-gray-mid); margin-bottom: 5px; display: block; }
.ag-form__input,
.ag-form__select,
.ag-form__textarea {
  width: 100%; padding: 10px 14px;
  border-radius: 4px; border: .5px solid var(--ag-border);
  font-family: var(--ag-font-body); font-size: 13px;
  background: #fff; color: var(--ag-black); outline: none;
  transition: border-color var(--ag-transition);
}
.ag-form__input:focus,
.ag-form__select:focus,
.ag-form__textarea:focus { border-color: var(--ag-baby-dark); }
.ag-form__textarea { resize: vertical; min-height: 100px; }

/* ============================================================
   GRIDS
   ============================================================ */
.ag-grid-2  { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.ag-grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.ag-grid-4  { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
@media(max-width:768px) {
  .ag-grid-3, .ag-grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:480px) {
  .ag-grid-2, .ag-grid-3, .ag-grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.ag-about-split { display:grid; grid-template-columns: 0.9fr 1.1fr; gap:32px; align-items:start; }
.ag-about__photo { border-radius: var(--ag-radius); overflow:hidden; height:320px; background:#1a2030; }
.ag-about__photo img { width:100%; height:100%; object-fit:cover; object-position:top; }
.ag-timeline { position:relative; padding-left:24px; }
.ag-timeline::before { content:''; position:absolute; left:0; top:0; bottom:0; width:1.5px; background:var(--ag-border); }
.ag-timeline__item { position:relative; margin-bottom:24px; padding-left:18px; }
.ag-timeline__item::before { content:''; position:absolute; left:-28px; top:4px; width:9px; height:9px; border-radius:50%; background:var(--ag-baby); border:2px solid #fff; box-shadow:0 0 0 1.5px var(--ag-baby-dark); }
.ag-timeline__year  { font-family:var(--ag-font-head); font-size:8px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--ag-baby-dark); margin-bottom:3px; }
.ag-timeline__title { font-family:var(--ag-font-head); font-size:13px; font-weight:700; color:var(--ag-black); margin-bottom:3px; }
.ag-timeline__desc  { font-size:12px; color:var(--ag-gray-mid); line-height:1.55; }
@media(max-width:640px){ .ag-about-split { grid-template-columns:1fr; } }

/* ============================================================
   BLUE ROOM BANNER
   ============================================================ */
.ag-blueroom-banner {
  background: var(--ag-baby-deep);
  padding: 32px;
  border-bottom: 3px solid var(--ag-baby);
  text-align: center;
}
.ag-blueroom-banner__title { font-family:var(--ag-font-head); font-size:22px; font-weight:900; text-transform:uppercase; color:#fff; margin-bottom:8px; }
.ag-blueroom-banner__sub   { font-size:13px; color:rgba(255,255,255,.65); line-height:1.65; max-width:540px; margin:0 auto; }

/* ============================================================
   EVENT LEGEND
   ============================================================ */
.ag-legend { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:20px; }
.ag-legend__item { display:flex; align-items:center; gap:6px; font-family:var(--ag-font-head); font-size:8px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--ag-gray-mid); }
.ag-legend__dot  { width:10px; height:10px; border-radius:50%; flex-shrink:0; }
.ag-legend__dot--br    { background:var(--ag-crimson); }
.ag-legend__dot--speak { background:var(--ag-baby-deep); }
.ag-legend__dot--other { background:#888; }

/* ============================================================
   SECTIONS (padding utility)
   ============================================================ */
.ag-section        { padding: 48px 0; }
.ag-section--dark  { background: var(--ag-black); }
.ag-section--blue  { background: var(--ag-baby-deep); }

/* ============================================================
   HERO VIDEO THUMBNAIL + OVERLAY
   ============================================================ */
.ag-hero__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
  transition: background 0.2s ease;
}
.ag-hero__video:hover .ag-hero__video-overlay {
  background: rgba(0,0,0,0.2);
}
.ag-hero__play {
  position: relative;
  z-index: 2;
}

/* ============================================================
   ABOUT PAGE - EDITOR CONTENT STYLES
   ============================================================ */
.ag-about-content p {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}
.ag-about-content p:last-child { margin-bottom: 0; }
.ag-about-content h2,
.ag-about-content h3 {
  font-family: var(--ag-font-head);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ag-black);
  margin-bottom: 8px;
  margin-top: 20px;
}
.ag-about-content h2 { font-size: 16px; }
.ag-about-content h3 { font-size: 13px; }
.ag-about-content ul {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 14px;
}
.ag-about-content ul li {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 4px;
}
.ag-about-content a {
  color: var(--ag-blue-deep);
  text-decoration: underline;
}

/* ============================================================
   WOOCOMMERCE - THEME INTEGRATION
   ============================================================ */

/* Shop page title */
.woocommerce h1.page-title {
    font-family: var(--ag-font-head);
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ag-black);
    margin-bottom: 24px;
}

/* Product grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: #fff;
    border-radius: var(--ag-radius);
    border: 1px solid var(--ag-border);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 0;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
}

.woocommerce ul.products li.product a img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--ag-font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--ag-black);
    text-transform: uppercase;
    padding: 12px 14px 4px;
    margin: 0;
}

.woocommerce ul.products li.product .price {
    font-family: var(--ag-font-head);
    font-size: 15px;
    font-weight: 900;
    color: var(--ag-pink);
    padding: 0 14px 8px;
    display: block;
}

.woocommerce ul.products li.product .button {
    display: block;
    margin: 0 14px 14px;
    font-family: var(--ag-font-head);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--ag-black);
    color: #fff;
    padding: 8px 14px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: opacity 0.2s;
}
.woocommerce ul.products li.product .button:hover { opacity: 0.8; }

/* Single product */
.woocommerce div.product .product_title {
    font-family: var(--ag-font-head);
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ag-black);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-family: var(--ag-font-head);
    font-size: 24px;
    font-weight: 900;
    color: var(--ag-pink);
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 14px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 20px;
}

.woocommerce .single_add_to_cart_button {
    font-family: var(--ag-font-head) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    background: var(--ag-pink) !important;
    color: #fff !important;
    padding: 12px 28px !important;
    border-radius: 2px !important;
    border: none !important;
    cursor: pointer !important;
}
.woocommerce .single_add_to_cart_button:hover { opacity: 0.85 !important; }

/* Cart and checkout */
.woocommerce .cart-collaterals h2,
.woocommerce .woocommerce-checkout h3 {
    font-family: var(--ag-font-head);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--ag-black);
}

.woocommerce #place_order {
    font-family: var(--ag-font-head) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    background: var(--ag-pink) !important;
    color: #fff !important;
    border-radius: 2px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .woocommerce ul.products { grid-template-columns: 1fr; }
}
