/* ============================================
   PREMIER ACADEMY - Design J
   Ultra-Luxury Black & Gold
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0A0A0A;
  --bg2: #111111;
  --surface: #161616;
  --surface2: #1C1C1C;
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-dim: #8B6914;
  --text: #E8E4DC;
  --text-muted: #8A8578;
  --white: #F5F3EF;
  --font-en: 'Playfair Display', serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --ease: cubic-bezier(.23, 1, .32, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-jp);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ── Sample Banner ── */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  z-index: 99999;
  letter-spacing: .5px;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 18px 0;
  transition: all .4s var(--ease);
}

.header.scrolled {
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184, 134, 11, .15);
  padding: 12px 0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
}

.logo-text {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gold);
  line-height: 1.2;
  letter-spacing: 3px;
}

.logo-text small {
  display: block;
  font-family: var(--font-jp);
  font-size: .6rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 4px;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: .78rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color .4s;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav a:hover {
  color: var(--gold);
}

.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 10px 28px;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  transition: all .4s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: .3s;
  display: block;
}

@media (max-width: 840px) {
  .hamburger {
    display: flex;
  }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: .5s var(--ease);
    z-index: 9999;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
  }
  .nav a {
    font-size: 1rem;
  }
  .header-inner {
    padding: 0 20px;
  }
}

/* ── Gold Particle Canvas ── */
#gold-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .3;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 160px 40px;
  text-align: center;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 134, 11, .06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-ornament-top,
.hero-ornament-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-ornament-top {
  top: 80px;
}

.hero-ornament-bottom {
  bottom: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-label {
  font-family: var(--font-en);
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: 8px;
  margin-bottom: 32px;
  display: block;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease) .3s forwards;
}

.hero h1 {
  font-family: var(--font-jp);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 12px;
  letter-spacing: 4px;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease) .6s forwards;
}

.hero-shimmer {
  background: linear-gradient(
    120deg,
    var(--gold-dim) 0%,
    var(--gold-light) 25%,
    var(--gold) 50%,
    var(--gold-light) 75%,
    var(--gold-dim) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite, heroFadeUp 1.2s var(--ease) .6s forwards;
  opacity: 0;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-sub {
  font-family: var(--font-en);
  font-size: .8rem;
  color: var(--gold-dim);
  letter-spacing: 6px;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease) .9s forwards;
}

.hero-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 2.2;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease) 1.2s forwards;
}

.hero-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto 32px;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease) .5s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease) 1.5s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  padding: 16px 40px;
  transition: all .4s var(--ease);
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 2px;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184, 134, 11, .25);
}

.btn-outline {
  border: 1px solid rgba(184, 134, 11, .4);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(184, 134, 11, .08);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--surface);
  padding: 56px 0;
  border-top: 1px solid rgba(184, 134, 11, .1);
  border-bottom: 1px solid rgba(184, 134, 11, .1);
}

.trust-items {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.trust-item {
  text-align: center;
}

.trust-num {
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}

.trust-unit {
  font-size: .8rem;
  color: var(--gold-dim);
}

.trust-label {
  display: block;
  font-size: .7rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 2px;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(184, 134, 11, .2);
  align-self: center;
}

/* ── Sections ── */
.section {
  padding: 160px 0;
  position: relative;
}

.section-dark {
  background: var(--bg2);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  font-family: var(--font-en);
  font-size: .65rem;
  color: var(--gold-dim);
  letter-spacing: 6px;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
}

.section-gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto 0;
}

.section-sub {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 20px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}

/* ── Ornamental Frame ── */
.ornament-frame {
  position: relative;
  padding: 60px;
  border: 1px solid rgba(184, 134, 11, .15);
}

.ornament-frame::before,
.ornament-frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
}

.ornament-frame::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.ornament-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 1px 1px 0;
}

@media (max-width: 768px) {
  .ornament-frame {
    padding: 32px 20px;
  }
}

/* ── Philosophy Cards ── */
.philosophy-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 40px;
}

.philosophy-card {
  background: var(--surface);
  border: 1px solid rgba(184, 134, 11, .1);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .6s var(--ease);
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .6s var(--ease);
}

.philosophy-card:hover::before {
  transform: scaleX(1);
}

.philosophy-card:hover {
  border-color: rgba(184, 134, 11, .25);
  transform: translateY(-4px);
}

.philosophy-num {
  font-family: var(--font-en);
  font-size: .65rem;
  color: var(--gold-dim);
  letter-spacing: 4px;
  margin-bottom: 20px;
  display: block;
}

.philosophy-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.philosophy-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 2;
}

@media (max-width: 840px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* ── Program Cards ── */
.program-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 40px;
}

.program-card {
  background: var(--surface);
  border: 1px solid rgba(184, 134, 11, .1);
  padding: 0;
  overflow: hidden;
  transition: all .6s var(--ease);
}

.program-card:hover {
  border-color: rgba(184, 134, 11, .3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.program-card-header {
  background: linear-gradient(135deg, rgba(184, 134, 11, .08), rgba(184, 134, 11, .02));
  padding: 36px 32px;
  border-bottom: 1px solid rgba(184, 134, 11, .1);
  text-align: center;
}

.program-card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.program-card-header .program-en {
  font-family: var(--font-en);
  font-size: .65rem;
  color: var(--text-muted);
  letter-spacing: 4px;
}

.program-card-body {
  padding: 32px;
}

.program-price {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(184, 134, 11, .08);
}

.program-price .amount {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.program-price .unit {
  font-size: .8rem;
  color: var(--text-muted);
}

.program-features {
  list-style: none;
}

.program-features li {
  font-size: .82rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.program-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 840px) {
  .program-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* ── Testimonials ── */
.testimonial-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 0 40px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(184, 134, 11, .1);
  padding: 40px;
  transition: all .5s var(--ease);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, .3), transparent);
}

.testimonial-card:hover {
  border-color: rgba(184, 134, 11, .2);
}

.testimonial-quote {
  font-family: var(--font-en);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-result {
  font-family: var(--font-en);
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
}

.testimonial-text {
  font-size: .88rem;
  line-height: 2.2;
  color: var(--text);
  margin-bottom: 24px;
}

.testimonial-author {
  border-top: 1px solid rgba(184, 134, 11, .08);
  padding-top: 16px;
}

.testimonial-author strong {
  display: block;
  font-size: .88rem;
  color: var(--white);
  letter-spacing: 1px;
}

.testimonial-author span {
  font-size: .75rem;
  color: var(--text-muted);
}

@media (max-width: 840px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

/* ── Director ── */
.director-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.director-frame {
  border: 1px solid rgba(184, 134, 11, .15);
  padding: 60px;
  position: relative;
}

.director-frame::before,
.director-frame::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
}

.director-frame::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.director-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 1px 1px 0;
}

.director-title {
  font-family: var(--font-en);
  font-size: .65rem;
  color: var(--gold-dim);
  letter-spacing: 6px;
  margin-bottom: 24px;
  display: block;
}

.director-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.director-subtitle {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.director-msg {
  font-size: .9rem;
  line-height: 2.4;
  color: var(--text);
  margin-bottom: 32px;
}

.director-credentials {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 134, 11, .1);
}

.director-credential {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  position: relative;
  padding-left: 16px;
}

.director-credential::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 768px) {
  .director-block {
    padding: 0 20px;
  }
  .director-frame {
    padding: 32px 24px;
  }
  .director-credentials {
    flex-direction: column;
    gap: 12px;
  }
}

/* ── Gold Divider ── */
.gold-divider {
  text-align: center;
  padding: 80px 0;
  position: relative;
}

.gold-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, .2), transparent);
}

.gold-divider-text {
  position: relative;
  display: inline-block;
  background: var(--bg);
  padding: 0 40px;
  font-family: var(--font-en);
  font-size: .7rem;
  color: var(--gold-dim);
  letter-spacing: 6px;
}

.gold-divider-text.on-dark {
  background: var(--bg2);
}

/* ── Admission ── */
.admission-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.admission-steps {
  margin-bottom: 48px;
}

.admission-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(184, 134, 11, .08);
  align-items: flex-start;
}

.admission-step-num {
  font-family: var(--font-en);
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: 3px;
  min-width: 60px;
  padding-top: 4px;
}

.admission-step h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.admission-step p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.9;
}

@media (max-width: 768px) {
  .admission-content {
    padding: 0 20px;
  }
  .admission-step {
    flex-direction: column;
    gap: 8px;
  }
}

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(184, 134, 11, .08);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  transition: color .3s;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-q span:first-child {
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--gold);
  font-size: .85rem;
  min-width: 28px;
  letter-spacing: 1px;
}

.faq-q h3 {
  flex: 1;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 1px;
}

.faq-icon {
  font-size: 1rem;
  color: var(--gold);
  transition: transform .4s var(--ease);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
  display: flex;
  gap: 20px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 0 24px 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a span {
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--gold-dim);
  font-size: .85rem;
  min-width: 28px;
}

.faq-a p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 2;
}

@media (max-width: 768px) {
  .faq-list {
    padding: 0 20px;
  }
}

/* ── Contact ── */
.contact-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-info {
  text-align: center;
  margin-bottom: 48px;
}

.contact-tel {
  margin-bottom: 8px;
}

.contact-tel span {
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  margin-right: 12px;
}

.contact-tel a {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 2px;
}

.contact-hours {
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(184, 134, 11, .15);
  background: var(--surface);
  font-size: .88rem;
  font-family: var(--font-jp);
  color: var(--text);
  transition: border-color .4s;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form select {
  cursor: pointer;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .contact-box {
    padding: 0 20px;
  }
}

/* ── Footer ── */
.footer {
  background: #050505;
  color: var(--text-muted);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(184, 134, 11, .1);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: .78rem;
  line-height: 2;
  color: var(--text-muted);
}

.footer h4 {
  font-size: .75rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--gold-dim);
  letter-spacing: 3px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
}

.footer li a {
  font-size: .78rem;
  transition: color .3s;
}

.footer li a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 24px 40px 0;
  border-top: 1px solid rgba(184, 134, 11, .08);
  text-align: center;
  font-size: .7rem;
  letter-spacing: 2px;
  color: #555;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .footer-bottom {
    padding: 24px 20px 0;
  }
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2s var(--ease), transform 2s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Curtain Reveal ── */
.curtain-reveal {
  position: relative;
  overflow: hidden;
}

.curtain-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform-origin: right;
  transition: transform 1.2s var(--ease);
}

.curtain-reveal.visible::after {
  transform: scaleX(0);
}

/* ── Gold Line Draw ── */
.line-draw {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 1.5s var(--ease);
  margin: 0 auto;
}

.line-draw.visible {
  width: 120px;
}
