/* =============================
   cp-hero
============================= */
.cp-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.cp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 90% 30%, var(--gold-10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 55% at 0% 100%, rgba(245, 220, 165, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 35% 30% at 55% 0%, var(--gold-05) 0%, transparent 80%);
  pointer-events: none;
}

/* ウォーターマーク */
.cp-hero::after {
  content: 'SUNPLACE';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(5rem, 12vw, 11rem);
  font-weight: 900;
  color: rgba(201, 146, 42, 0.04);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cp-hero__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

.cp-hero__grid {
  position: relative;
}

/* 背景ロゴ */
.cp-hero__logo-bg {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-60%);
  width: clamp(300px, 45vw, 580px);
  height: auto;
  opacity: 0.35;
  mix-blend-mode: normal;
  pointer-events: none;
  user-select: none;
  filter: none;
}

.cp-hero__body {
  position: relative;
  z-index: 1;
}

/* 装飾リング */
.cp-hero__body::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid var(--gold-12);
  top: -70px;
  left: -110px;
  pointer-events: none;
  z-index: -1;
}

.cp-hero__body::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--gold-15);
  bottom: 0;
  right: -60px;
  pointer-events: none;
  z-index: -1;
}

/* label */
.cp-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 28px;
}

.cp-hero__label::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 8px var(--gold-30), 0 0 16px var(--gold-15);
  flex-shrink: 0;
}

/* shimmer */
@keyframes cp-hero-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* heading */
.cp-hero__heading {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.cp-hero__heading-em {
  font-style: normal;
  background: linear-gradient(90deg,
    var(--gold)       0%,
    var(--gold-light) 35%,
    #ffd47a           50%,
    var(--gold-light) 65%,
    var(--gold)       100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cp-hero-shimmer 5s linear infinite;
}

/* lead */
.cp-hero__lead {
  font-size: var(--fs-md);
  color: var(--color-text-muted);
  line-height: 1.85;
  max-width: 440px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* meta */
.cp-hero__meta {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gold-15);
  border-radius: 18px;
  padding: 20px 28px;
  width: fit-content;
  box-shadow:
    0 2px 20px rgba(201, 146, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cp-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cp-hero__meta-en {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-60);
}

.cp-hero__meta-val {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-text-muted);
}

.cp-hero__meta-sep {
  width: 1px;
  background: var(--gold-15);
  align-self: stretch;
  flex-shrink: 0;
}

/* responsive */
@media (max-width: 960px) {
  .cp-hero__logo-bg {
    opacity: 0.05;
    right: -20px;
  }

  .cp-hero__body::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .cp-hero {
    padding: 110px 0 60px;
  }

  .cp-hero__container {
    padding: 0 24px;
  }

  .cp-hero__meta-sep {
    display: none;
  }

  .cp-hero__body::before,
  .cp-hero__body::after {
    display: none;
  }
}
