/* ================================================================
   CASINO PRECIOUS — footer.css
   ================================================================ */

.cp-footer {
  background: #080808;
  border-top: 1px solid var(--cp-border);
  padding: 4rem 1.25rem 2rem;
}

.cp-footer__inner {
  max-width: 1080px;
  margin-inline: auto;
}

/* ── 上段 ─────────────────────────────────────────────────────── */
.cp-footer__top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--cp-border);
  margin-bottom: 1.75rem;
}

/* ブランドブロック */
.cp-footer__brand-name {
  font-family: var(--cp-font-display);
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  color: var(--cp-white);
  margin-bottom: 0.25rem;
}
.cp-footer__brand-corp {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--cp-gold);
  display: block;
  margin-bottom: 0.2rem;
}
.cp-footer__brand-brand {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--cp-dark-text);
  display: block;
  margin-bottom: 0.8rem;
}
.cp-footer__brand-desc {
  font-size: 0.77rem;
  color: var(--cp-dark-text);
  line-height: 1.9;
  max-width: 340px;
}

/* W&Berry ロゴエリア */
.cp-footer__brand-wberry {
  margin: 0.6rem 0 0.8rem;
}
/* ロゴ画像がある場合 */
.cp-footer__brand-wberry img {
  height: 28px;
  width: auto;
  opacity: 0.75;
  filter: brightness(0) invert(1);
}
/* ロゴ画像がない場合のテキストフォールバック */
.cp-footer__brand-wberry-text {
  font-family: var(--cp-font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(179,138,59,0.5);
}

/* ナビブロック */
.cp-footer__nav-title {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--cp-gold);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.cp-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.cp-footer__links a {
  font-size: 0.8rem;
  color: var(--cp-dark-text);
  text-decoration: none;
  transition: color 0.2s;
}
.cp-footer__links a:hover { color: var(--cp-muted); }

/* ── 下段 ─────────────────────────────────────────────────────── */
.cp-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.cp-footer__copy {
  font-size: 0.68rem;
  color: #3a3a3a;
  letter-spacing: 0.08em;
}
.cp-footer__suits {
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  color: #2a2a2a;
}

/* ── タブレット以上 ───────────────────────────────────────────── */
@media (min-width: 640px) {
  .cp-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 900px) {
  .cp-footer {
    padding: 5rem 2rem 2.5rem;
  }
  .cp-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
