.brand-shell {
  margin-bottom: 48px;
}

.brand-intro {
  padding: 28px 30px;
  border-radius: 24px;
  background: var(--green-dark);
  color: white;
  box-shadow: 0 14px 36px rgba(20, 61, 51, 0.2);
}

.brand-intro h2 {
  margin: 4px 0 7px;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
}

.brand-intro p:last-child {
  margin: 0;
  color: #cfe0da;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.brand-option {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow);
}

.selected-option {
  border: 3px solid var(--green);
  box-shadow: 0 12px 30px rgba(30, 102, 84, 0.18);
}

.selected-label {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 0.76rem;
  font-weight: 800;
}

.image-stage {
  display: grid;
  min-height: 300px;
  padding: 24px;
  place-items: center;
  background: #f5f6f5;
}

.image-stage.checker {
  background-color: #fafafa;
  background-image:
    linear-gradient(45deg, #ecefec 25%, transparent 25%),
    linear-gradient(-45deg, #ecefec 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #ecefec 75%),
    linear-gradient(-45deg, transparent 75%, #ecefec 75%);
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-size: 20px 20px;
}

.image-stage img {
  display: block;
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.photo-stage {
  padding: 0;
  background: #e8eeeb;
}

.photo-stage img {
  width: 100%;
  height: 300px;
  max-height: none;
  object-fit: cover;
}

.brand-caption {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
}

.brand-caption strong {
  color: var(--green);
  font-size: 1.15rem;
}

.brand-caption span {
  color: var(--ink);
}

.brand-caption a {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.75rem;
}

.brand-note {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #ead7a4;
  border-radius: 14px;
  background: #fff8e8;
  color: #6c571f;
  font-size: 0.82rem;
}

@media (max-width: 700px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .brand-intro {
    padding: 22px 18px;
  }

  .image-stage {
    min-height: 250px;
  }

  .photo-stage img {
    height: 250px;
  }
}
