/* =========================================================
   PRESS KIT — Editorial styling that extends styles.css
   ========================================================= */

.press-page {
  background: var(--cream);
}

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

/* ---------- TOP BAR (overrides) ---------- */
.press-page .topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.press-page .topbar .back-home {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.press-page .topbar .back-home:hover { opacity: 1; }
.press-page .topbar .topbar-mid {
  color: var(--yellow);
  font-weight: 800;
}
.press-page .topbar .topbar-right {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  opacity: 0.6;
}

/* ---------- HERO ---------- */
.press-hero {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.press-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26, 43, 74, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.press-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
}

.press-hero-photo {
  aspect-ratio: 19 / 20;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 20px 50px rgba(26, 43, 74, 0.18);
  position: relative;
}
.press-hero-photo::after {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  background: var(--pink);
  border-radius: 24px;
  z-index: -1;
}
.press-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kicker {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2.5px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.press-hero h1 {
  font-weight: 900;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 14px;
}

.press-hero .role {
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 20px;
  opacity: 0.85;
  font-weight: 500;
}
.press-hero .role strong { font-weight: 800; }

.press-hero .lead {
  font-size: 18px;
  line-height: 1.55;
  color: #2a3a5a;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 2px dashed rgba(26, 43, 74, 0.18);
}
.meta-item {
  display: flex;
  flex-direction: column;
}
.meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
  margin-bottom: 4px;
}
.meta-val {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- AT A GLANCE ---------- */
.at-a-glance {
  background: var(--cream);
  padding: 0 0 80px;
  position: relative;
  margin-top: -60px;
  z-index: 5;
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.glance-card {
  border: 2px solid var(--navy);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 6px 0 var(--navy);
  background: var(--white);
}
.glance-card.pink { background: var(--pink); color: var(--white); }
.glance-card.yellow { background: var(--yellow); }
.glance-card.blue { background: var(--blue); }
.glance-card.navy { background: var(--navy); color: var(--white); }

.glance-num {
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.glance-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.glance-sub {
  font-size: 13px;
  opacity: 0.75;
  font-weight: 500;
}

/* ---------- PRESS SECTIONS ---------- */
.press-section {
  padding: 80px 0;
  position: relative;
}
.press-section + .press-section {
  border-top: 1px solid rgba(26, 43, 74, 0.08);
}

.section-header {
  margin-bottom: 48px;
  position: relative;
}
.section-num {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--pink);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: #2a3a5a;
  opacity: 0.75;
  max-width: 540px;
}

/* ---------- BIO TABS ---------- */
.bio-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.bio-tab {
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.bio-tab:hover { background: var(--yellow); }
.bio-tab.active {
  background: var(--navy);
  color: var(--white);
}

.bio-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 20px;
  padding: 36px 36px 28px;
  position: relative;
  box-shadow: 0 6px 0 var(--navy);
}
.bio-card.hidden { display: none; }
.bio-card p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 18px;
}
.bio-card p:last-of-type { margin-bottom: 24px; }
.bio-card .oneliner {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  font-style: italic;
  color: var(--navy);
}

.copy-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Poppins', sans-serif;
}
.copy-btn:hover { background: var(--pink); }
.copy-btn.copied {
  background: var(--yellow);
  color: var(--navy);
}

/* ---------- TOPICS ---------- */
.topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.topic-cluster {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 6px 0 var(--navy);
}
.cluster-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.topic-cluster ul {
  list-style: none;
  padding: 0;
}
.topic-cluster li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid rgba(26, 43, 74, 0.08);
}
.topic-cluster li:last-child { border-bottom: none; padding-bottom: 0; }
.topic-cluster strong { font-weight: 800; }

/* ---------- AUDIENCE ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.audience-text h3 {
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--navy);
}
.audience-text h3.mt-32 { margin-top: 32px; }
.audience-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #2a3a5a;
  margin-bottom: 14px;
}
.audience-text strong { color: var(--navy); font-weight: 800; }

.audience-stats {
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  position: sticky;
  top: 24px;
}
.audience-stat-card .stat-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}
.audience-stat-card .stat-row.last { border-bottom: none; }
.audience-stat-card .row-label {
  opacity: 0.65;
  font-weight: 600;
}
.audience-stat-card .row-val {
  color: var(--yellow);
  font-weight: 700;
  text-align: right;
}

/* ---------- EXPERIENCE / WHAT SHE'S BUILT ---------- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.exp-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 6px 0 var(--navy);
  display: flex;
  flex-direction: column;
}
.exp-card.pink-card { background: var(--pink); color: var(--white); }
.exp-card.yellow-card { background: var(--yellow); }
.exp-card.navy-card { background: var(--navy); color: var(--white); }

.exp-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.7;
}
.exp-card h3 {
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1;
}
.exp-card p {
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
  opacity: 0.95;
}
.exp-link {
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  color: inherit;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.exp-link:hover { opacity: 0.7; }
.exp-link.muted { opacity: 0.55; border-bottom: none; }

/* ---------- QUICK FACTS TABLE ---------- */
.facts-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--navy);
  box-shadow: 0 6px 0 var(--navy);
}
.facts-table th,
.facts-table td {
  padding: 16px 24px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid rgba(26, 43, 74, 0.08);
}
.facts-table tr:last-child th,
.facts-table tr:last-child td {
  border-bottom: none;
}
.facts-table th {
  font-weight: 800;
  color: var(--navy);
  background: var(--cream);
  width: 220px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.facts-table td {
  color: #2a3a5a;
}
.facts-table a {
  color: var(--pink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--pink);
}

/* ---------- ASSETS ---------- */
.assets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.asset-tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 0 var(--navy);
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.2s;
}
.asset-tile:hover { transform: translateY(-3px); }

.asset-preview {
  aspect-ratio: 1;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 2px solid var(--navy);
}
.asset-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.photo-preview img { object-fit: cover; width: 100%; height: 100%; }
.logo-preview { background: var(--blue); padding: 24px; }
.og-preview img { object-fit: cover; width: 100%; height: 100%; }

.bundle-preview {
  background: var(--navy);
  color: var(--white);
  flex-direction: column;
  gap: 8px;
}
.bundle-icon { font-size: 56px; }
.bundle-text {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 0 16px;
}

.asset-meta { padding: 14px 16px; }
.asset-name {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 4px;
}
.asset-spec {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  opacity: 0.6;
}

.bundle-tile { background: var(--navy); color: var(--white); }
.bundle-tile .asset-spec { opacity: 0.5; }

.palette-heading {
  font-weight: 900;
  font-size: 22px;
  margin: 40px 0 18px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.palette-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.swatch {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  border: 2px solid var(--navy);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 12px;
  font-weight: 800;
}
.swatch span { display: block; margin-bottom: 4px; }
.swatch code {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
}

.type-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.type-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 5px 0 var(--navy);
}
.type-name {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.type-sample { margin-bottom: 12px; }
.type-spec {
  font-size: 12px;
  color: var(--navy);
  opacity: 0.6;
  font-weight: 500;
}

/* ---------- BOOKING CTA ---------- */
.booking-cta {
  padding: 80px 0;
  background: var(--cream);
}
.booking-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 32px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 43, 74, 0.25);
}
.booking-card::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 61, 138, 0.25) 0%, transparent 70%);
}
.booking-card::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 228, 94, 0.2) 0%, transparent 70%);
}
.booking-card > * { position: relative; z-index: 2; }
.booking-card .scribble-tag {
  font-family: 'Caveat', cursive;
  color: var(--yellow);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.booking-card h2 {
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.booking-card > p {
  font-size: 17px;
  margin-bottom: 36px;
  opacity: 0.9;
  max-width: 580px;
  line-height: 1.6;
}
.booking-card strong { color: var(--yellow); }

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.booking-link {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 22px 24px;
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
  display: block;
}
.booking-link:hover {
  background: rgba(255, 228, 94, 0.12);
  border-color: var(--yellow);
}
.bk-label {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.bk-mail {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--yellow);
  font-weight: 500;
}

/* ---------- PRESS FOOTER ---------- */
.press-footer {
  padding: 60px 0 40px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.footer-logo {
  width: 110px;
  margin: 0 auto 18px;
  display: block;
}
.footer-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 8px;
}
.footer-link a {
  color: var(--yellow);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid var(--yellow);
}

/* ---------- FLOATING CONTACT (sticky on desktop) ---------- */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(26, 43, 74, 0.25);
  z-index: 50;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.fc-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 4px;
}
.fc-email {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .press-hero { padding: 60px 0 80px; }
  .press-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .press-hero-photo { max-width: 320px; }
  .glance-grid { grid-template-columns: repeat(2, 1fr); }
  .topics-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; gap: 32px; }
  .audience-stats { position: static; }
  .exp-grid { grid-template-columns: 1fr; }
  .assets-grid { grid-template-columns: repeat(2, 1fr); }
  .palette-row { grid-template-columns: repeat(3, 1fr); }
  .type-row { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-card { padding: 48px 28px; }
  .floating-contact { display: none; }
}

@media (max-width: 480px) {
  .press-page .topbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    text-align: center;
    font-size: 10px;
  }
  .press-page .topbar .topbar-right { display: none; }
  .glance-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .glance-num { font-size: 32px; }
  .assets-grid { grid-template-columns: 1fr 1fr; }
  .palette-row { grid-template-columns: repeat(2, 1fr); }
  .facts-table th { width: 130px; font-size: 10px; padding: 12px 14px; }
  .facts-table td { padding: 12px 14px; font-size: 13.5px; }
  .bio-card { padding: 24px 20px; }
  .bio-card p { font-size: 15.5px; }
  .hero-meta { gap: 20px; }
}
