﻿.page-hero {
  min-height: 430px;
  padding-top: 84px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 18% 70%, rgba(181, 138, 75, 0.2), transparent 30%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 80px;
}

.page-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.page-kicker::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.page-title {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.2;
  letter-spacing: 0.1em;
  background: linear-gradient(120deg, #fff1c8 0%, #d3a65f 42%, #8e602c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-lead {
  margin-top: 20px;
  max-width: 720px;
  color: rgba(242, 234, 223, 0.86);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 2.1;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title .en {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-family: "Cinzel", serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  line-height: 1.1;
}

.light-section .section-title .en {
  color: var(--gold-dark);
}

.section-title .en::before,
.section-title .en::after {
  content: "";
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title .ja {
  margin-top: 8px;
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.light-section .section-title .ja {
  color: #6c6255;
}

@media (max-width: 720px) {
  .page-hero {
    min-height: 360px;
    padding-top: 70px;
  }

  .page-hero-inner {
    padding: 56px 0 60px;
  }

  .page-title {
    font-size: clamp(34px, 12vw, 52px);
  }

  .section-title .en {
    font-size: 31px;
    gap: 14px;
  }

  .section-title .en::before,
  .section-title .en::after {
    width: 42px;
  }
}

@media (max-width: 480px) {
  .page-kicker {
    gap: 12px;
    letter-spacing: 0.2em;
  }

  .page-kicker::before {
    width: 34px;
  }

  .page-title {
    letter-spacing: 0.05em;
  }

  .section-title .en {
    gap: 10px;
    font-size: 26px;
    letter-spacing: 0.08em;
  }

  .section-title .en::before,
  .section-title .en::after {
    width: 28px;
  }
}

