/* ============================================
   AI Strategy Lab — Ghost Theme Stylesheet
   Design: Contemporary dark/light alternating
   Fonts: Cormorant Garamond + Space Grotesk
   ============================================ */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #0C0F14;
  --dark-card: #141820;
  --light: #F5F0EB;
  --text-muted: #5C5A56;
  --text-light-muted: rgba(245, 240, 235, 0.55);
  --blue: #3B82F6;
  --blue-dark: #1A56DB;
  --magenta: #E91E7A;
  --green-dark: #14532D;
  --red-dark: #7F1D1D;
  --border-light: rgba(12, 15, 20, 0.12);
  --border-dark: rgba(255, 255, 255, 0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--light);
  background: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-serif { font-family: 'Cormorant Garamond', serif; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(12, 15, 20, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-dark);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.topbar__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--light);
}
.topbar__logos {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 768px) { .topbar__logos { display: flex; } }
.topbar__logos img {
  height: 20px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.topbar__logos img:hover { opacity: 1; }
.topbar__logos .sep {
  color: rgba(245, 240, 235, 0.25);
  font-size: 0.75rem;
}
.topbar__right { display: flex; align-items: center; gap: 1.5rem; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}
.btn--outline {
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(245, 240, 235, 0.25);
  color: var(--light);
  border-radius: 2px;
}
.btn--outline:hover {
  background: var(--light);
  color: var(--dark);
}
.btn--primary {
  padding: 1rem 2.5rem;
  background: var(--light);
  color: var(--dark);
  border-radius: 2px;
}
.btn--primary:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}
.btn--dark {
  padding: 1.25rem 3rem;
  background: var(--dark);
  color: var(--light);
  font-size: 13px;
  border-radius: 2px;
}
.btn--dark:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 86, 219, 0.35);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 15, 20, 0.7), rgba(12, 15, 20, 0.95));
}
.hero__content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 6rem;
}
.hero__logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero__logos img {
  height: 24px;
  object-fit: contain;
  opacity: 0.8;
}
.hero__logos .sep {
  color: rgba(245, 240, 235, 0.3);
  font-size: 0.75rem;
}
.hero__badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 240, 235, 0.2);
  padding: 0.375rem 1rem;
  color: rgba(245, 240, 235, 0.5);
  border-radius: 9999px;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  max-width: 800px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.hero__sub {
  font-size: 1.125rem;
  color: var(--text-light-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ============================================
   STAT STRIP
   ============================================ */
.stat-strip {
  background: var(--dark-card);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 3.5rem 0;
}
.stat-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .stat-strip__inner {
    grid-template-columns: auto 1px 1fr;
    gap: 3rem;
  }
}
.stat-strip__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 88px);
  font-weight: 700;
  line-height: 1;
  color: var(--magenta);
}
.stat-strip__divider {
  display: none;
  background: var(--border-dark);
  height: 5rem;
}
@media (min-width: 768px) { .stat-strip__divider { display: block; } }
.stat-strip__text {
  font-size: 15px;
  color: var(--text-light-muted);
  line-height: 1.7;
}
.stat-strip__source {
  display: block;
  margin-top: 0.5rem;
  font-size: 11px;
  opacity: 0.5;
  letter-spacing: 0.04em;
}

/* ============================================
   SECTIONS — SHARED
   ============================================ */
.section { padding: 6rem 0; }
.section--dark { background: var(--dark); color: var(--light); }
.section--dark-nopad { background: var(--dark); color: var(--light); padding-bottom: 6rem; }
.section--light { background: var(--light); color: var(--dark); }

.section__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}
.section__label span:first-child {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section--dark .section__label span:first-child { color: var(--text-light-muted); }
.section--light .section__label span:first-child { color: var(--text-muted); }
.section__label-line {
  width: 2.25rem;
  height: 1px;
}
.section--dark .section__label-line { background: var(--text-light-muted); }
.section--light .section__label-line { background: var(--text-muted); }

.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.section__title--lg {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2.5rem;
}

/* ============================================
   COS'È (LIGHT)
   ============================================ */
.cose__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .cose__grid { grid-template-columns: 1fr 1fr; } }
.cose__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}
.cose__text + .cose__text { margin-top: 1rem; }
.cose__item {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
}
.cose__item + .cose__item { border-top: 1px solid var(--border-light); }
.cose__item-num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: 0.04em;
  min-width: 26px;
  padding-top: 2px;
}
.cose__item-title { font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; }
.cose__item-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   IMAGE BREAK
   ============================================ */
.image-break {
  position: relative;
  height: 20rem;
  overflow: hidden;
}
.image-break--sm { height: 15rem; }
.image-break img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.image-break__overlay {
  position: absolute;
  inset: 0;
}
.image-break__overlay--light-to-dark {
  background: linear-gradient(to bottom, var(--light), transparent, var(--dark));
}
.image-break__overlay--dark-to-dark {
  background: linear-gradient(to bottom, var(--dark), transparent, var(--dark));
}

/* ============================================
   ZANIN CASE STUDY
   ============================================ */
.zanin__grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 3rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}
@media (min-width: 768px) { .zanin__grid { grid-template-columns: 1fr 1.5fr; } }
.zanin__img { width: 100%; height: 100%; object-fit: cover; }
.zanin__content {
  padding: 2rem;
  background: var(--dark-card);
}
@media (min-width: 768px) { .zanin__content { padding: 3rem; } }
.zanin__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border-dark);
  padding: 0.25rem 0.75rem;
  color: rgba(245, 240, 235, 0.5);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.zanin__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.zanin__meta {
  font-size: 13px;
  color: rgba(245, 240, 235, 0.5);
  margin-bottom: 1.5rem;
}
.zanin__body {
  font-size: 15px;
  color: var(--text-light-muted);
  line-height: 1.75;
}
.zanin__body p + p { margin-top: 1rem; }
.zanin__quote {
  border-left: 2px solid var(--magenta);
  padding-left: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 2rem;
  background: rgba(233, 30, 122, 0.05);
  border-radius: 0 0.25rem 0.25rem 0;
}
.zanin__quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.zanin__quote cite {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.5);
  font-style: normal;
}

/* ============================================
   PROGRAMMA
   ============================================ */
.programma__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .programma__grid { grid-template-columns: 1fr 1fr; } }
.day-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 0.5rem;
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.day-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--blue), var(--magenta));
}
.day-card__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.day-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.schedule-item {
  display: flex;
  gap: 1.5rem;
  padding: 0.875rem 0;
  border-top: 1px solid var(--border-dark);
}
.schedule-item__time {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.5);
  white-space: nowrap;
  min-width: 40px;
  font-family: 'Space Grotesk', sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.schedule-item__text { font-size: 0.875rem; line-height: 1.4; }
.schedule-item__who {
  font-size: 11px;
  color: rgba(245, 240, 235, 0.4);
  margin-top: 0.25rem;
}

/* ============================================
   FORMATORI
   ============================================ */
.formatori__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .formatori__grid { grid-template-columns: repeat(3, 1fr); } }
.trainer-card {
  background: var(--light);
  color: var(--dark);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s;
}
.trainer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.trainer-card__avatar {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 1.25rem;
}
.trainer-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.trainer-card__role {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}
.trainer-card__claim {
  border-left: 2px solid #E0DAD0;
  padding-left: 0.875rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.trainer-card__bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.trainer-card__tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.trainer-card__tag {
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #EDE8E1;
  border: 1px solid rgba(12, 15, 20, 0.1);
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
  color: var(--text-muted);
}

/* ============================================
   CLIENTI
   ============================================ */
.clienti__text {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.clienti__note {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.4);
  font-style: italic;
  margin-bottom: 1.75rem;
}
.clienti__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.client-tag {
  font-size: 0.75rem;
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  color: rgba(245, 240, 235, 0.5);
  transition: all 0.3s;
}
.client-tag:hover {
  border-color: var(--blue);
  color: var(--light);
}
.client-tag--highlight {
  border-color: rgba(245, 240, 235, 0.2);
  color: var(--light);
  font-weight: 500;
}

/* ============================================
   PER CHI È
   ============================================ */
.perchi__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .perchi__grid { grid-template-columns: 1fr 1fr; } }
.perchi__card {
  border-radius: 0.5rem;
  padding: 2rem 2.5rem;
  border: 1px solid var(--border-light);
}
.perchi__card--yes {
  border-top: 3px solid var(--green-dark);
  background: rgba(20, 83, 45, 0.05);
}
.perchi__card--no {
  border-top: 3px solid var(--red-dark);
  background: rgba(127, 29, 29, 0.05);
}
.perchi__card-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.perchi__card--yes .perchi__card-label { color: var(--green-dark); }
.perchi__card--no .perchi__card-label { color: var(--red-dark); }
.perchi__item {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.875rem 0;
  line-height: 1.6;
}
.perchi__item + .perchi__item { border-top: 1px solid rgba(12, 15, 20, 0.1); }

/* ============================================
   COSA PORTI A CASA
   ============================================ */
.deliverable {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
}
.deliverable + .deliverable { border-top: 1px solid var(--border-dark); }
.deliverable__num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--magenta);
  letter-spacing: 0.04em;
  min-width: 26px;
  padding-top: 2px;
}
.deliverable__title { font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; }
.deliverable__desc { font-size: 0.875rem; color: var(--text-light-muted); line-height: 1.6; }

/* ============================================
   INFO EVENTO / LOGISTICA
   ============================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (min-width: 768px) { .info-grid { grid-template-columns: repeat(4, 1fr); } }
.info-cell {
  background: var(--dark-card);
  padding: 1.5rem 2rem;
}
.info-cell__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.5);
  margin-bottom: 0.5rem;
}
.info-cell__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
}
.info-cell__sub {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.5);
  margin-top: 0.25rem;
}
.info-cell__sub strong { color: var(--blue); }

/* ============================================
   CTA
   ============================================ */
.cta { text-align: center; }
.cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--dark);
}
.cta__sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
.cta__prices {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.cta__price { text-align: center; }
.cta__price-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}
.cta__price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
}
.cta__price-value--highlight { color: var(--blue-dark); }
.cta__divider {
  width: 1px;
  background: var(--border-light);
  align-self: stretch;
}
.cta__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2rem;
  opacity: 0.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
  padding: 2.5rem 0;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.4);
}
@media (min-width: 768px) {
  .site-footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   ANIMATIONS (CSS-only scroll reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0, 0, 0.2, 1), transform 0.7s cubic-bezier(0, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   GHOST KOENIG EDITOR — Required Classes
   ============================================ */

/* Width modifiers (required by Ghost validator) */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin-left: calc(50% - 42.5vw);
  margin-right: calc(50% - 42.5vw);
}
.kg-width-full {
  position: relative;
  width: 100vw;
  min-width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Image cards */
.kg-image-card,
.kg-gallery-card {
  margin: 2rem 0;
}
.kg-image-card img,
.kg-gallery-card img {
  width: 100%;
  height: auto;
  border-radius: 0.25rem;
}
.kg-image-card figcaption,
.kg-gallery-card figcaption {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Gallery */
.kg-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.kg-gallery-row {
  display: flex;
  gap: 0.75rem;
}
.kg-gallery-row img {
  flex: 1;
  height: auto;
  object-fit: cover;
}

/* Bookmark card */
.kg-bookmark-card {
  margin: 2rem 0;
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  overflow: hidden;
}
.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
}
.kg-bookmark-content {
  flex: 1;
  padding: 1.25rem;
}
.kg-bookmark-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.kg-bookmark-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kg-bookmark-metadata {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.kg-bookmark-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.kg-bookmark-author,
.kg-bookmark-publisher {
  font-size: 0.75rem;
}
.kg-bookmark-thumbnail {
  width: 200px;
  min-height: 100%;
}
.kg-bookmark-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Embed / video cards */
.kg-embed-card {
  margin: 2rem 0;
}
.kg-embed-card iframe {
  width: 100%;
  border-radius: 0.25rem;
}
.kg-video-card {
  margin: 2rem 0;
}

/* Callout card */
.kg-callout-card {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.kg-callout-card-grey { background: rgba(128, 128, 128, 0.1); }
.kg-callout-card-white { background: #fff; border: 1px solid var(--border-light); }
.kg-callout-card-blue { background: rgba(59, 130, 246, 0.1); }
.kg-callout-card-green { background: rgba(20, 83, 45, 0.1); }
.kg-callout-card-yellow { background: rgba(234, 179, 8, 0.1); }
.kg-callout-card-red { background: rgba(239, 68, 68, 0.1); }
.kg-callout-card-pink { background: rgba(233, 30, 122, 0.1); }
.kg-callout-card-purple { background: rgba(147, 51, 234, 0.1); }
.kg-callout-card-accent { background: rgba(59, 130, 246, 0.1); }
.kg-callout-emoji {
  font-size: 1.25rem;
  line-height: 1.4;
}
.kg-callout-text {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Toggle card */
.kg-toggle-card {
  margin: 2rem 0;
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
}
.kg-toggle-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.kg-toggle-heading h4 {
  font-weight: 600;
  font-size: 1rem;
}
.kg-toggle-card-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
}
.kg-toggle-content {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Button card */
.kg-button-card {
  margin: 2rem 0;
  text-align: center;
}
.kg-button-card a {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: all 0.3s;
}
.kg-btn-accent {
  background: var(--blue);
  color: #fff;
}
.kg-btn-accent:hover {
  background: var(--blue-dark);
}

/* Header card */
.kg-header-card {
  margin: 2rem 0;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 0.5rem;
  background-size: cover;
  background-position: center;
}
.kg-header-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.kg-header-card p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Blockquote / aside */
blockquote,
.kg-blockquote-alt {
  border-left: 3px solid var(--blue);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* File card */
.kg-file-card {
  margin: 2rem 0;
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.kg-file-card-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.kg-file-card-contents {
  flex: 1;
}
.kg-file-card-title {
  font-weight: 600;
  font-size: 0.9375rem;
}
.kg-file-card-caption {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.kg-file-card-metadata {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Audio card */
.kg-audio-card {
  margin: 2rem 0;
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
}

/* Product card */
.kg-product-card {
  margin: 2rem 0;
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.kg-product-card-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.kg-product-card-description {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Signup card */
.kg-signup-card {
  margin: 2rem 0;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 0.5rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid var(--border-light);
}
