/* ============================================
   Subpage styles — Media, Brands, Services
   ============================================ */

.page-header {
  background:
    radial-gradient(ellipse at top, var(--yellow) 0%, transparent 70%),
    linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  border-bottom: 6px solid var(--yellow);
}

.page-header h1 {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.03em;
  text-shadow: 4px 4px 0 var(--red-deep);
}

.page-header p {
  color: var(--cream);
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* ===== Platforms strip (media page) ===== */
.platforms-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.platform {
  background: white;
  border: 3px solid var(--red);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--red-deep);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 4px 4px 0 var(--red-deep);
  transition: all 0.2s;
}

.platform:hover {
  background: var(--yellow);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--red-deep);
}

.p-icon { font-size: 1.25rem; }

/* ===== Media grid ===== */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.media-card {
  background: white;
  border: 4px solid var(--yellow-deep);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 6px 6px 0 var(--red);
  transition: transform 0.2s;
}

.media-card:hover {
  transform: translate(-3px, -3px);
}

.media-placeholder {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%);
  border-radius: 12px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: 1rem;
}

.media-card h3 {
  font-family: var(--font-display);
  color: var(--red-deep);
  font-size: 1.15rem;
  margin: 0.75rem 0 0.5rem;
  letter-spacing: 0.02em;
}

.media-card p {
  color: var(--ink);
  font-size: 0.95rem;
}

.media-card a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.media-card a:hover { text-decoration: underline; }

/* ===== Brands grid ===== */
.brands-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.15rem;
  color: var(--red-deep);
  font-weight: 500;
  line-height: 1.6;
}

.brands-intro strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.brand-card {
  background: white;
  border: 4px solid var(--red);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 5px 5px 0 var(--yellow-deep);
  transition: all 0.2s;
}

.brand-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--yellow-deep);
}

.brand-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.brand-placeholder {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.brand-card h3 {
  font-family: var(--font-display);
  color: var(--red-deep);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.brand-card p {
  color: var(--ink);
  font-size: 0.9rem;
}

.brand-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.brand-link:hover { text-decoration: underline; }

/* ===== Services grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border: 5px solid var(--red);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 8px 8px 0 var(--yellow-deep);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
}

.s-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  color: var(--red-deep);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.service-card p {
  color: var(--ink);
  font-weight: 500;
}

/* ===== CTA Box ===== */
.cta-box {
  margin: 4rem auto 0;
  max-width: 800px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  border: 5px solid var(--yellow);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--cream);
  box-shadow: 10px 10px 0 var(--yellow);
}

.cta-box h2 {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 0 var(--red-deep);
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.btn-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--red-deep);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  border: 4px solid var(--cream);
  box-shadow: 5px 5px 0 var(--ink);
  transition: all 0.2s;
}

.btn-yellow:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}
