/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  --ink:       #0d0f14;
  --ink2:      #161a24;
  --ink3:      #1e2333;
  --navy:      #0f1b35;
  --gold:      #c9a84c;
  --gold-lt:   #e8c97e;
  --gold-dk:   #9e7a2a;
  --cream:     #f5f0e8;
  --cream2:    #ede8dc;
  --white:     #ffffff;
  --muted:     #8b8fa8;
  --red-acc:   #c94c4c;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-jp:      'Shippori Mincho', serif;
  --ff-body:    'DM Sans', sans-serif;

  --nav-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 2px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 1000;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(13, 15, 20, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}

.navbar-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.5));
}

.brand-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 2px;
  margin-bottom: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.btn-nav-cta {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--ff-body);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 1px;
}

.btn-nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 5%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(15,27,53,0.9) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(135deg, #0d0f14 0%, #0f1b35 40%, #0d1220 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero-jp-watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-jp);
  font-size: clamp(8rem, 18vw, 20rem);
  color: rgba(201,168,76,0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-jp);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease-out) forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.3em;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s var(--ease-out) forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
  font-weight: 300;
}

.hero-title strong {
  display: block;
  font-weight: 700;
  font-size: 1.1em;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold), var(--gold-dk));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-divider {
  display: block;
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s var(--ease-out) forwards;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(245,240,232,0.65);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s var(--ease-out) forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s var(--ease-out) forwards;
}

.btn-primary {
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.3); }
.btn-primary:hover::after { transform: translateX(0); }

.btn-outline {
  padding: 14px 36px;
  background: transparent;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(245,240,232,0.3);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-sub-note {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s var(--ease-out) forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  animation: fadeUp 0.8s 1.1s var(--ease-out) forwards, scrollBounce 2s 2s infinite;
  opacity: 0;
}

.hero-scroll::after {
  content: '';
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--ink2);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 24px 5%;
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.trust-num {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.trust-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label {
  font-family: var(--ff-jp);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold-lt);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 120px 5%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, transparent 60%);
  z-index: 1;
}

.about-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: transform 0.8s var(--ease-out);
}

.about-img-frame:hover img { transform: scale(1.03); }

.about-img-border {
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1px solid rgba(201,168,76,0.25);
  pointer-events: none;
}

.about-img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.about-img-accent .num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.about-img-accent .lbl {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 8px;
}

.about-text { padding-top: 20px; }

.about-text .section-title { margin-bottom: 1.2rem; }

.about-desc {
  font-size: 1rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.85;
  margin-bottom: 2rem;
  font-weight: 300;
}

.about-highlights {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(201,168,76,0.04);
  border-left: 2px solid var(--gold);
  transition: background 0.2s;
}

.about-highlight:hover { background: rgba(201,168,76,0.08); }

.about-highlight-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-highlight h4 {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gold-lt);
  margin-bottom: 0.2rem;
  letter-spacing: 0.05em;
}

.about-highlight p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   WHY / FEATURES
   ============================================================ */
.why-section {
  background: var(--ink2);
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: 'なぜ';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-jp);
  font-size: 30vw;
  color: rgba(201,168,76,0.025);
  line-height: 1;
  pointer-events: none;
}

.why-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 70px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,168,76,0.08);
}

.feature-card {
  background: var(--ink2);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative;
}

.feature-card:hover { background: rgba(201,168,76,0.05); }

.feature-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.feature-card:hover .feature-num { color: rgba(201,168,76,0.2); }

.feature-card h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-lt);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs-section {
  padding: 120px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.programs-header {
  text-align: center;
  margin-bottom: 70px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.08);
}

.program-card {
  background: var(--ink);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out);
}

.program-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.program-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.1);
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}

.program-card:hover .program-card-img img {
  transform: scale(1.06);
  filter: grayscale(10%) contrast(1.1);
}

.program-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--ink) 100%);
}

.program-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}

.program-card-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.program-card-body p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.program-accordion {
  border-top: 1px solid rgba(201,168,76,0.15);
  margin-top: auto;
}

.program-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 0;
  cursor: pointer;
  transition: color 0.2s;
}

.program-accordion-trigger:hover { color: var(--gold-lt); }

.accordion-icon {
  width: 16px; height: 16px;
  position: relative;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.accordion-icon::before { width: 10px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.accordion-icon::after  { width: 1px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.program-accordion.open .accordion-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.program-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}

.program-accordion.open .program-accordion-content {
  max-height: 400px;
}

.program-accordion-content ul {
  padding-bottom: 1rem;
}

.program-accordion-content ul li {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 4px 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
}

.program-accordion-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.5;
}

.btn-program {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.2rem;
  padding: 11px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-family: var(--ff-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}

.btn-program:hover { background: var(--gold); color: var(--ink); }
.btn-program svg { transition: transform 0.2s; }
.btn-program:hover svg { transform: translateX(4px); }

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience-section {
  background: var(--navy);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.audience-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.audience-inner { max-width: 900px; margin: 0 auto; }
.audience-inner .section-label { justify-content: center; }
.audience-inner .section-label::before { display: none; }
.audience-inner .section-label::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.audience-inner .section-title { margin-bottom: 3rem; }

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.audience-tag {
  padding: 10px 24px;
  border: 1px solid rgba(201,168,76,0.3);
  font-size: 0.85rem;
  color: rgba(245,240,232,0.7);
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}

.audience-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  background: var(--ink2);
  padding: 120px 5%;
}

.process-inner { max-width: 1300px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 70px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px; left: 12.5%;
  width: 75%; height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,0.2) 100%);
  z-index: 0;
}

.process-step {
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 60px; height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--ink2);
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  transition: background 0.3s, color 0.3s;
}

.process-step:hover .step-circle {
  background: var(--gold);
  color: var(--ink);
}

.process-step h3 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.process-step p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section {
  padding: 120px 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.benefits-header { text-align: center; margin-bottom: 70px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.08);
}

.benefit-item {
  background: var(--ink);
  padding: 2.5rem 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: background 0.3s;
}

.benefit-item:hover { background: rgba(201,168,76,0.05); }

.benefit-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.benefit-item p {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section {
  background: var(--ink2);
  padding: 120px 5%;
}

.testi-inner { max-width: 1300px; margin: 0 auto; }
.testi-header { text-align: center; margin-bottom: 70px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.08);
}

.testi-card {
  background: var(--ink2);
  padding: 2.8rem;
  position: relative;
  transition: background 0.3s;
}

.testi-card:hover { background: rgba(201,168,76,0.04); }

.testi-quote-mark {
  font-family: var(--ff-display);
  font-size: 6rem;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-style: italic;
  pointer-events: none;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.75rem;
}

.testi-text {
  font-size: 1rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.85;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.8rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 1.2rem;
}

.testi-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(20%);
  border: 1px solid rgba(201,168,76,0.3);
}

.author-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}

.author-prog {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 300;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 120px 5%;
  max-width: 900px;
  margin: 0 auto;
}

.faq-header { text-align: center; margin-bottom: 60px; }

.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  padding: 1.4rem 0;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-trigger:hover { color: var(--gold); }
.faq-trigger.open { color: var(--gold); }

.faq-icon {
  width: 20px; height: 20px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--gold);
  transition: background 0.2s, transform 0.3s;
}

.faq-trigger.open .faq-icon { background: var(--gold); color: var(--ink); transform: rotate(45deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-body.open { max-height: 300px; }

.faq-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  padding-bottom: 1.4rem;
  font-weight: 300;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 50%, var(--gold-lt) 100%);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,15,20,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,15,20,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.cta-section h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(13,15,20,0.65);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.btn-cta {
  padding: 16px 48px;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-cta:hover { background: var(--ink2); transform: translateY(-2px); }

/* ── Language toggle button ── */
.btn-lang {
  padding: 7px 16px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  border-radius: 1px;
}
.btn-lang:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--ink2);
  padding: 120px 5%;
}

.contact-inner { max-width: 1300px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 70px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.08);
  margin-bottom: 50px;
}

.contact-card {
  background: var(--ink2);
  padding: 2.5rem;
  text-align: center;
  transition: background 0.3s;
}

.contact-card:hover { background: rgba(201,168,76,0.05); }

.contact-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.2rem;
  color: var(--gold);
  transition: background 0.2s, border-color 0.2s;
}

.contact-card:hover .contact-icon {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

.contact-card h3 {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s;
}

.contact-card a:hover { color: var(--gold-lt); }

.social-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,0.5);
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(139,143,168,0.5);
  letter-spacing: 0.05em;
}

/* ============================================================
   FLOATING WA BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  background: #25D366;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.4);
  animation: waPulse 2.5s 3s infinite;
  cursor: pointer;
  text-decoration: none;
  transition: gap 0.3s var(--ease-out), padding 0.3s var(--ease-out);
  padding: 0 16px 0 0;
}

.wa-float-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  flex-shrink: 0;
}

.wa-float-text {
  max-width: 0;
  overflow: hidden;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  transition: max-width 0.4s var(--ease-out);
}

.wa-float:hover .wa-float-text { max-width: 160px; }
.wa-float:hover { box-shadow: 0 12px 40px rgba(37,211,102,0.45); }

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes waPulse {
  0%   { box-shadow: 0 8px 32px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.4); }
  70%  { box-shadow: 0 8px 32px rgba(37,211,102,0.35), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 32px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .features-grid,
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .about-section { grid-template-columns: 1fr; gap: 50px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,15,20,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 5%;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
    pointer-events: none;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a { font-size: 0.95rem; }
  .nav-hamburger { display: flex; }

  .features-grid,
  .programs-grid,
  .benefits-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }

  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .wa-float { bottom: 20px; right: 20px; }
}

  /* Video Testimonials */
  .video-testi-section {
    padding: 5rem 1.5rem;
    background: #0c0f1c;
  }
  .video-testi-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  .video-card {
    background: rgba(20, 25, 40, 0.8);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
  }
  .video-card:hover {
    transform: translateY(-5px);
  }
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
  }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .video-caption {
    padding: 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    font-family: 'DM Sans', sans-serif;
    border-top: 1px solid rgba(201,168,76,0.2);
  }
  .video-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
  }
  
  