.brand {
  gap: 0;
}

.brand-logo {
  display: block;
  width: 104px;
  height: 68px;
  object-fit: contain;
  object-position: left center;
}

footer {
  align-items: flex-start;
  gap: 32px;
}

.company-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
  line-height: 1.5;
}

body.zh {
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
}

body.zh h1,
body.zh h2,
body.zh h3,
body.zh .detail-kicker,
body.zh .care-note strong {
  font-family: "Noto Serif SC", "Songti SC", serif;
}

.centre-gallery {
  background: #fff;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 56px;
  margin-bottom: 44px;
}

.gallery-heading h2 {
  margin: 0;
  max-width: 800px;
  font-family: "Newsreader", serif;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

body.zh .gallery-heading h2 {
  font-family: "Noto Serif SC", "Songti SC", serif;
}

.gallery-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
}

.photo-card.photo-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  min-height: 480px;
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-feature img {
  height: 100%;
  aspect-ratio: auto;
}

.photo-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px;
}

.photo-feature figcaption {
  justify-content: flex-end;
  padding: 34px;
  background: var(--orange);
  color: #fff;
}

.photo-card figcaption span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.photo-feature figcaption span {
  color: #fff;
  opacity: .72;
}

.photo-card figcaption strong {
  font-family: "Newsreader", serif;
  font-size: 25px;
  line-height: 1.1;
}

body.zh .photo-card figcaption strong {
  font-family: "Noto Serif SC", "Songti SC", serif;
}

.photo-card figcaption small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.photo-feature figcaption small {
  color: #fff;
  opacity: .86;
}

.safety-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 30px 0 16px;
}

.safety-features article {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(242, 101, 63, .28);
  border-radius: 18px;
  background: #fff8f3;
}

.feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--orange);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.safety-features h3 {
  margin: 0 0 8px;
  font-family: "Newsreader", serif;
  font-size: 23px;
  line-height: 1.1;
}

body.zh .safety-features h3 {
  font-family: "Noto Serif SC", "Songti SC", serif;
}

.safety-features p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.safety-note {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px !important;
}

@media (max-width: 600px) {
  .brand-logo {
    width: 82px;
    height: 54px;
  }

  .company-details {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .gallery-heading,
  .photo-card.photo-feature {
    grid-template-columns: 1fr;
  }

  .photo-card.photo-feature {
    min-height: 0;
  }

  .photo-feature img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 700px) {
  .gallery-heading {
    gap: 14px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .safety-features {
    grid-template-columns: 1fr;
  }
}
