.gj-container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.gj-section {
  padding: 72px 0;
}

.gj-section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.gj-section-heading h2,
.gj-page-hero__copy h1,
.gj-article-hero h1,
.gj-hero__copy h1 {
  font-family: var(--font-serif);
  line-height: 1.25;
}

.gj-section-label {
  color: var(--gj-pink);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gj-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 253, 0.9);
  border-bottom: 1px solid rgba(243, 203, 214, 0.6);
}

.gj-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
}

.gj-header__nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--gj-text-sub);
  white-space: nowrap;
}

.gj-header__actions,
.gj-header__mobile,
.gj-inline-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.gj-header__actions {
  flex-shrink: 0;
}

.gj-header__mobile {
  flex-shrink: 0;
}

.gj-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.gj-pr-banner {
  border-top: 1px solid rgba(243, 203, 214, 0.6);
  background: rgba(252, 232, 239, 0.76);
}

.gj-pr-banner .gj-container {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  color: var(--gj-text-sub);
  font-size: 0.88rem;
}

.gj-pr-banner__label,
.gj-pr-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--gj-purple);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.gj-pr-chip--inline {
  margin-top: 18px;
}

.gj-drawer {
  border-top: 1px solid rgba(243, 203, 214, 0.6);
  background: #fff;
}

.gj-drawer__inner {
  padding: 20px 0 24px;
}

.gj-drawer__nav {
  display: grid;
  gap: 14px;
}

.gj-breadcrumb {
  padding: 18px 0 0;
}

.gj-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--gj-text-sub);
  font-size: 0.9rem;
}

.gj-breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: rgba(111, 93, 105, 0.6);
}

.gj-breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.gj-footer {
  margin-top: 56px;
  padding: 56px 0 32px;
  background: linear-gradient(180deg, #6c436c 0%, #51345a 52%, #3f2a4d 100%);
  border-top: 1px solid rgba(126, 77, 118, 0.46);
  color: rgba(255, 255, 255, 0.9);
}

.gj-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gj-footer__grid section {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.gj-footer__grid h2 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.gj-footer__grid ul {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.gj-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gj-page-hero,
.gj-hero,
.gj-support-band {
  position: relative;
}

.gj-page-hero__inner,
.gj-hero__inner,
.gj-shindan-cta__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.gj-page-hero,
.gj-hero {
  padding: 46px 0 72px;
}

.gj-page-hero__copy,
.gj-hero__copy {
  display: grid;
  gap: 18px;
}

.gj-page-hero__sub,
.gj-hero__lead {
  font-size: 1.12rem;
  color: var(--gj-purple);
}

.gj-page-hero--compact {
  padding: 100px 0 80px;
}

@media (max-width: 767px) {
  .gj-header__inner {
    gap: 12px;
    min-height: 72px;
  }

  .gj-logo {
    flex: 0 0 auto;
    width: 136px;
  }

  .gj-header__mobile {
    gap: 8px;
  }

  .gj-header__mobile > :not(:last-child) {
    display: none;
  }

  .gj-header__mobile .gj-icon-btn {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .gj-pr-banner .gj-container {
    align-items: flex-start;
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .gj-breadcrumb {
    padding-top: 14px;
  }

  .gj-breadcrumb ol {
    font-size: 0.82rem;
  }

  .gj-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .gj-header__mobile .gj-icon-btn {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.78rem;
  }
}
