/* ===========================
   BRAND CLARITY
=========================== */

.brand-clarity-section {
  background:
    radial-gradient(circle at 50% 30%, rgba(255,200,0,.08), transparent 34%),
    linear-gradient(to bottom, #090909, #050505);
  overflow: hidden;
}

.brand-clarity-header {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.brand-clarity-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.05;
  margin: 24px 0;
}

.brand-clarity-header h2::first-line {
  color: var(--primary);
}

.brand-clarity-header p {
  max-width: 760px;
  margin: auto;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

/* GRID */

.brand-clarity-grid {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CARDS */

.brand-card {
  padding: 46px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: var(--shadow);
}

.films-brand {
  background: linear-gradient(145deg, #ffd54a, #f5be18);
  color: #111;
  box-shadow: 0 28px 70px rgba(255,200,0,.18);
}

.brand-label {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.films-brand .brand-label {
  color: #7a5200;
}

.brand-card h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.films-brand h3 {
  color: #111;
}

.brand-card p {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  margin-bottom: 30px;
}

.films-brand p {
  color: #2f2f2f;
}

.brand-card ul {
  list-style: none;
  display: grid;
  gap: 15px;
}

.brand-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,.76);
  line-height: 1.6;
  font-weight: 700;
}

.films-brand li {
  color: #111;
}

.brand-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.films-brand li::before {
  color: #7a5200;
}

/* NOTICE */

.clarity-notice {
  max-width: 980px;
  margin: 60px auto 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 36px;
  border-radius: 28px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,200,0,.18);
}

.notice-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--primary);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.clarity-notice h4 {
  font-size: 26px;
  margin-bottom: 10px;
}

.clarity-notice p {
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .brand-clarity-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .brand-clarity-header p {
    font-size: 16px;
  }

  .brand-card {
    padding: 34px;
  }

  .clarity-notice {
    flex-direction: column;
    padding: 30px;
  }
}