.brand-page-body {
  background: #f6f5f1;
}

.brand-page-body .site-header {
  color: var(--white);
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.72), rgba(3, 3, 3, 0));
}

.brand-page-body .nav-links {
  color: rgba(248, 247, 243, 0.76);
}

.brand-page-body .nav-links a:hover,
.brand-page-body .nav-links a.active {
  color: var(--white);
}

.brand-page-body .brand-intro-panel {
  place-items: center;
  color: rgba(0, 0, 0, 0.58);
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.035), transparent 32%),
    #f6f5f1;
}

.brand-page-body .brand-intro-logo {
  color: rgba(0, 0, 0, 0.58);
}

.brand-page-body .brand-intro-logo .brand-intro-star {
  color: rgba(0, 0, 0, 0.5);
}

.brand-page-body .brand-story-panel {
  align-items: end;
  justify-items: start;
  padding: 16vh 7vw 12vh;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(248, 247, 243, 0.94) 0%, rgba(248, 247, 243, 0.78) 34%, rgba(248, 247, 243, 0.18) 70%),
    linear-gradient(0deg, rgba(248, 247, 243, 0.92) 0%, rgba(248, 247, 243, 0.5) 36%, rgba(248, 247, 243, 0.08) 72%),
    url("브랜드 소개 배경.png") center center / cover no-repeat,
    #f6f5f1;
}

.brand-page-body .brand-story-text p {
  color: rgba(8, 8, 10, 0.74);
  text-shadow: 0 1px 18px rgba(248, 247, 243, 0.72);
}

.brand-page-body .brand-value-panel {
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  color: rgba(10, 10, 12, 0.78);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82), rgba(250, 249, 246, 0.96) 56%, #f8f7f3 100%),
    #fbfbfa;
}

.brand-page-body .brand-value-copy h2 {
  color: rgba(8, 8, 10, 0.78);
}

.brand-page-body .brand-value-copy p {
  color: rgba(8, 8, 10, 0.62);
}

.brand-page-body .brand-value-line {
  background: rgba(8, 8, 10, 0.82);
}

.brand-page-body .brand-value-decor {
  opacity: 0;
  transition:
    opacity 1225ms ease 530ms,
    transform 1575ms ease 530ms;
}

.brand-page-body .brand-value-panel.revealed .brand-value-decor {
  opacity: 1;
}

.brand-page-body .brand-value-line {
  transition:
    opacity 456ms ease,
    transform 1050ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-page-body .brand-value-copy {
  transition:
    opacity 1050ms ease 530ms,
    transform 1225ms ease 530ms;
}

.brand-page-body .footer-company {
  grid-template-columns: minmax(220px, 0.8fr) minmax(300px, 1.15fr) minmax(260px, 1fr) minmax(150px, 0.55fr);
  grid-template-areas:
    "brand primary service links"
    "copy primary service links";
  gap: 48px 5vw;
  width: 100%;
  max-width: none;
}

.brand-page-body .footer-company-header {
  display: block;
  min-width: 0;
}

.brand-page-body .company-logo {
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: 0.18em;
}

.brand-page-body .footer-company-header h2 {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.4;
}

.brand-page-body .footer-info {
  gap: 22px;
}

.brand-page-body .footer-info div {
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
}

.brand-page-body .footer-info dt {
  font-size: 13px;
  white-space: normal;
}

.brand-page-body .footer-info dd {
  font-size: 13px;
}

.brand-page-body .footer-links {
  display: grid;
  gap: 18px;
}

@media (max-width: 900px) {
  .brand-page-body .footer-company {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "primary"
      "service"
      "links"
      "copy";
    gap: 36px;
  }

  .brand-page-body .footer-info div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
