/* ===========================
   PRIVACY HERO
=========================== */
.privacy-hero {
  min-height: 32vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 60% 40%, #2A2F4A 0%, var(--navy-dark) 60%);
  padding: calc(var(--nav-h) + 48px) 40px 56px;
  position: relative;
  overflow: hidden;
}

.privacy-hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(201, 149, 108, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.privacy-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--navy));
  pointer-events: none;
  z-index: 0;
}

.privacy-hero-inner {
  text-align: center;
  animation: heroFadeUp 0.8s ease both;
}

.privacy-eyebrow {
  font-family: var(--font-en);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--pink-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.privacy-title {
  font-family: var(--font-ja);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--white);
}

/* ===========================
   MAIN CONTENT
=========================== */
.privacy-main {
  padding: 80px 40px 120px;
  background: linear-gradient(to bottom, var(--navy) calc(100% - 100px), var(--navy-dark) 100%);
}

.privacy-container {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-intro {
  font-size: 0.9375rem;
  color: var(--white-dim);
  line-height: 2;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

/* ===========================
   SECTIONS
=========================== */
.privacy-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-section-title {
  font-family: var(--font-ja);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--pink-gold);
  margin-bottom: 20px;
}

.privacy-text {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 2;
  margin-bottom: 16px;
}

.privacy-text:last-child {
  margin-bottom: 0;
}

.privacy-list {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.privacy-list li {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}

.privacy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 1px;
  background: var(--pink-gold);
}

/* ===========================
   CONTACT BOX
=========================== */
.privacy-contact-box {
  margin-top: 20px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.privacy-contact-item {
  font-size: 0.9rem;
  color: var(--white-dim);
  display: flex;
  gap: 24px;
}

.privacy-contact-item span {
  color: var(--pink-gold);
  font-weight: 400;
  min-width: 60px;
  flex-shrink: 0;
}

.privacy-contact-item a {
  color: var(--pink-gold-light);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.privacy-contact-item a:hover {
  border-color: var(--pink-gold-light);
}

/* ===========================
   DATE
=========================== */
.privacy-date {
  margin-top: 48px;
  font-size: 0.8125rem;
  color: rgba(240, 237, 232, 0.35);
  text-align: right;
  letter-spacing: 0.05em;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .privacy-main {
    padding: 60px 24px 96px;
  }

  .privacy-contact-item {
    flex-direction: column;
    gap: 4px;
  }
}
