*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --gold: #C9A84C;
    --gold-light: #E8D08A;
    --gold-dark: #9A7730;
    --cream: #FAF7F2;
    --cream-mid: #F2EDE4;
    --bnb-dark: #004F59;
    --bnb-mid: #038797;
    --bnb-light: #DDECF0;
    --text-dark: #1C1C1C;
    --text-mid: #4A4A4A;
    --orange: #EB5D2E;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 120vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #021e22;
  }
  /* ── SUBJECT GLOW ── */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
      ellipse 50% 45% at 52% 68%,
      rgba(255,248,200,0.28) 0%,
      rgba(255,235,150,0.16) 25%,
      rgba(255,220,100,0.07) 50%,
      transparent 68%
    );
    z-index: 1;
    pointer-events: none;
  }

  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 75%;
    opacity: 1;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,65,78,0.88) 0%,
      rgba(0,68,82,0.70) 12%,
      rgba(0,65,78,0.40) 24%,
      rgba(0,60,72,0.12) 34%,
      rgba(0,0,0,0) 42%
    );
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0.75rem 1.5rem;
    padding-top: 3vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-start;
    min-height: 120vh;
  }
  .hero-logo-wrap {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
  }
  .hero-logo {
    width: min(860px, 94vw);
    filter: drop-shadow(0 2px 24px rgba(0,0,0,0.55)) drop-shadow(0 0 40px rgba(201,168,76,0.4));
  }
  .hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(210,175,80,0.85);
    opacity: 1;
    margin-top: 0.25rem;
  }
  .hero-cta {
    margin-top: 0.5rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #021e22;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2.8rem;
    border-radius: 50px;
    transition: opacity 0.2s;
  }
  .hero-cta:hover { opacity: 0.85; }
  .hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

  /* ── SHARED ── */
  section { padding: 6rem 1.5rem; }
  .container { max-width: 900px; margin: 0 auto; }
  .container-wide { max-width: 1080px; margin: 0 auto; }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bnb-mid);
    margin-bottom: 1rem;
    display: block;
  }
  .eyebrow-gold {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
  }

  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
  }
  h2 em { font-style: italic; color: var(--bnb-mid); }
  h2.on-dark { color: #fff; }
  h2.on-dark em { color: var(--gold-light); }

  .divider {
    width: 60px; height: 1px;
    background: linear-gradient(to right, var(--bnb-mid), var(--bnb-light));
    margin: 1.5rem 0;
  }
  .divider-gold {
    width: 60px; height: 1px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
    margin: 1.5rem 0;
  }
  .divider-center { margin-left: auto; margin-right: auto; }

  p { font-size: 1.08rem; line-height: 1.8; color: var(--text-mid); }

  /* ── ABOUT ── */
  .about { background: var(--cream); text-align: center; }
  .about .container { max-width: 760px; }
  .about p { font-size: 1.12rem; max-width: 680px; margin: 0 auto; }
  .about p + p { margin-top: 1rem; }

  /* ── PROGRAMS (dark) ── */
  .programs {
    background: #02252c;
    padding: 6rem 1.5rem;
    position: relative;
  }
  .programs::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(images/img_016.jpg);
    background-size: cover;
    background-position: center 30%;
    opacity: 0.22;
    z-index: 0;
  }
  .programs > * { position: relative; z-index: 1; }
  .programs-intro { text-align: center; margin-bottom: 3.5rem; }
  .programs-intro p { color: rgba(255,255,255,0.55); max-width: 580px; margin: 0 auto; }

  .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.75rem;
  }

  .program-card {
    border-radius: 20px;
    overflow: hidden;
    padding: 2.5rem 2rem;
    text-align: center;
    border: none;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }
  .program-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(0,0,0,0.55); }
  .program-card > * { position: relative; z-index: 1; }


  .program-card.gold {
    background: transparent;
    background-image: url(images/img_017.jpg);
    background-size: cover;
    background-position: center top;
    border-color: rgba(201,168,76,0.5);
  }
  .program-card.gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(60,30,10,0.62) 0%, rgba(30,12,4,0.88) 100%);
    border-radius: 16px;
    z-index: 0;
  }
  .program-card.silver {
    background-image: url(images/img_018.jpg);
    background-size: cover;
    background-position: center;
    border-color: rgba(201,168,76,0.5);
  }
  .program-card.silver::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(60,30,10,0.62) 0%, rgba(30,12,4,0.88) 100%);
    border-radius: 16px;
    z-index: 0;
  }
  .program-card.bronze {
    background-image: url(images/img_019.jpg);
    background-size: cover;
    background-position: center;
    border-color: rgba(201,168,76,0.5);
  }
  .program-card.bronze::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(60,30,10,0.62) 0%, rgba(30,12,4,0.88) 100%);
    border-radius: 20px;
    z-index: 0;
  }

  .card-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
    font-weight: 500;
  }
  .gold .card-badge { background: rgba(201,168,76,0.18); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.45); }
  .silver .card-badge { background: rgba(201,168,76,0.18); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.45); }
  .bronze .card-badge { background: rgba(201,168,76,0.18); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.45); }

  .program-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.4rem;
  }
  .card-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .gold .card-subtitle { color: var(--gold); }
  .silver .card-subtitle { color: var(--gold); }
  .bronze .card-subtitle { color: var(--gold); }

  .program-card p { color: rgba(255,255,255,0.82); font-size: 0.92rem; line-height: 1.68; margin-bottom: 1rem; }

  .card-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: opacity 0.2s;
  }
  .card-link:hover { opacity: 0.75; }
  .gold .card-link { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #021e22; }
  .silver .card-link { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #021e22; }
  .bronze .card-link { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #021e22; }

  /* ── PRINCIPLE ── */
  .principle { background: var(--cream); text-align: center; }
  .principle .container { max-width: 860px; }

  .principle-triad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 2.5rem 0 2rem;
    border: 1px solid rgba(0,79,89,0.18);
    border-radius: 16px;
    overflow: hidden;
  }
  .triad-item {
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(0,79,89,0.15);
    background: #fff;
  }
  .triad-item:last-child { border-right: none; }

  .triad-korean {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--bnb-dark);
    display: block;
    margin-bottom: 0.15rem;
  }
  .triad-hanja {
    font-size: 0.75rem;
    color: var(--bnb-mid);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.6rem;
  }
  .triad-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mid);
    display: block;
    margin-bottom: 0.75rem;
  }
  .triad-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

  .principle-footer { font-size: 1rem; color: var(--text-mid); font-style: italic; max-width: 640px; margin: 0 auto; }

  /* ── JOURNEY ── */
  .journey { background: #F0EBE0; padding: 6rem 1.5rem; }
  .journey-intro { text-align: center; margin-bottom: 3.5rem; }
  .journey-intro p { color: var(--text-mid); max-width: 600px; margin: 0 auto; }

  .journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: start;
  }
  .col-programs,
  .col-online {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .col-programs .jcard,
  .col-online .jcard {
    margin-bottom: 0;
    flex: 1;
  }
  .journey-col-header {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .col-online .journey-col-header { color: var(--bnb-dark); font-weight: 600; border-bottom: 1px solid rgba(0,79,89,0.45); padding-bottom: 0.75rem; }
  .col-programs .journey-col-header { color: var(--gold-dark); font-weight: 600; border-bottom-color: rgba(154,119,48,0.3); }

  .jcard {
    border-radius: 14px;
    padding: 1.6rem 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid;
    display: flex;
    flex-direction: column;
  }
  .jcard p { flex: 1; }
  .jcard:last-child { margin-bottom: 0; }

  .jcard.online {
    background: rgba(0,79,89,0.15);
    border: 1px solid rgba(0,79,89,0.3);
    backdrop-filter: blur(2px);
  }
  .jcard.phase {
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    backdrop-filter: blur(2px);
  }

  .jcard-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    display: block;
  }
  .online .jcard-tag { color: var(--bnb-mid); font-weight: 600; }
  .phase .jcard-tag { color: var(--gold-dark); font-weight: 600; }

  .jcard h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
  }
  .online h4 { color: var(--bnb-dark); }
  .phase h4 { color: var(--gold-dark); }

  .online p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; }
  .phase p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.6; }

  .journey-note {
    margin-top: 2rem;
    padding: 1.25rem 1.75rem;
    background: rgba(0,79,89,0.07);
    border: 1px solid rgba(0,79,89,0.12);
    border-radius: 12px;
    text-align: center;
  }
  .journey-note p { color: var(--text-mid); font-size: 0.88rem; font-style: italic; }

  .online-banner {
    margin-top: 2rem;
    padding: 1.75rem 2rem;
    background: transparent;
    border: 1.5px solid rgba(30,20,10,0.25);
    border-radius: 14px;
    text-align: center;
  }
  .online-banner h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bnb-dark);
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
  }
  .online-banner p { color: var(--text-mid); font-size: 0.9rem; }

  /* ── WHO ── */
  .who { background: var(--cream); text-align: center; }
  .who .container { max-width: 700px; }

  .checklist {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 3rem;
    text-align: left;
  }
  .check-item {
    background: #fff;
    border-radius: 14px;
    padding: 1.4rem 1.75rem;
    border: 1px solid rgba(0,79,89,0.12);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .check-mark {
    width: 28px; height: 28px;
    min-width: 28px;
    background: var(--bnb-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    margin-top: 0.1rem;
  }
  .check-text {}
  .check-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
  }
  .check-item p { font-size: 0.92rem; line-height: 1.65; color: var(--text-mid); }

  /* ── RECEIVE ── */
  .receive {
    background: rgba(240,235,224,0.8);
    padding: 6rem 1.5rem;
    position: relative;
  }
  .receive::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(images/img_020.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: 0;
  }
  .receive > * { position: relative; z-index: 1; }
  .receive-intro { text-align: center; margin-bottom: 3rem; }

  .receive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .receive-item {
    padding: 2rem 1.75rem;
    border: 1px solid rgba(0,79,89,0.15);
    border-radius: 16px;
    background: rgba(255,255,255,0.6);
  }
  .receive-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bnb-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
  }
  /* receive item ok */
  .receive-item p { color: var(--text-mid); font-size: 0.93rem; line-height: 1.7; }

  /* ── FAQ ── */
  .faq { background: var(--cream); }
  .faq .container { max-width: 760px; }
  .faq-list { margin-top: 3rem; }

  .faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 1.4rem 0;
    cursor: pointer;
  }
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    user-select: none;
    gap: 1rem;
  }
  .faq-toggle {
    width: 26px; height: 26px;
    min-width: 26px;
    border-radius: 50%;
    background: var(--bnb-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    padding-bottom: 1px;
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.2s;
  }
  .faq-item.open .faq-answer { max-height: 500px; padding-top: 1rem; }
  .faq-answer p { font-size: 1.02rem; }

  /* ── INVESTMENT ── */
  .investment {
    background: #02252c;
    padding: 7rem 1.5rem;
    text-align: center;
    position: relative;
  }
  .investment::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(images/img_021.jpg);
    background-size: cover;
    background-position: center 30%;
    opacity: 0.22;
    z-index: 0;
  }
  .investment > * { position: relative; z-index: 1; }
  .price-box {
    margin: 3rem auto 0;
    max-width: 520px;
    padding: 3rem;
    border: 1px solid rgba(201,168,76,0.38);
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
  }
  .price-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(201,168,76,0.06) 0%, transparent 55%);
    pointer-events: none;
  }
  .price-was { font-size: 1rem; color: rgba(255,255,255,0.35); text-decoration: line-through; margin-bottom: 0.2rem; }
  .price-main {
    font-family: 'DM Sans', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .price-save {
    display: inline-block;
    background: rgba(201,168,76,0.12);
    color: var(--gold);
    font-size: 0.73rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(201,168,76,0.3);
    margin-bottom: 2rem;
  }
  .price-details { list-style: none; margin: 1.5rem 0 2.5rem; text-align: left; }
  .price-details li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    font-size: 0.98rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
  }
  .price-details li::before { content: '✦'; color: var(--gold); flex-shrink: 0; font-size: 0.65rem; margin-top: 0.3rem; }
  .invest-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #021e22;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    transition: opacity 0.2s;
    border: none;
    font-family: 'DM Sans', sans-serif;
    width: 100%;
    cursor: pointer;
  }
  .invest-cta:hover { opacity: 0.85; }
  .price-note { margin-top: 1.5rem; color: rgba(255,255,255,0.28); font-size: 0.78rem; }

  /* ── FOOTER ── */
  footer {
    background: #021e22;
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.28);
    font-size: 0.78rem;
  }
  footer a { color: var(--gold); text-decoration: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 700px) {
    .principle-triad { grid-template-columns: 1fr; }
    .triad-item { border-right: none; border-bottom: 1px solid rgba(0,79,89,0.15); }
    .triad-item:last-child { border-bottom: none; }
    .journey-grid { grid-template-columns: 1fr; }
    .receive-grid { grid-template-columns: 1fr; }
    .price-main { font-size: 3rem; }
  }

  /* ── PHOTO BANNER ── */
  .photo-banner {
    overflow: hidden;
    padding: 1.5rem 0;
    background: #fff;
    height: auto;
    position: relative;
  }
  .photo-banner-track {
    display: flex;
    gap: 10px;
    animation: scroll-banner 60s linear infinite;
    width: max-content;
    align-items: center;
  }
  .photo-banner-track img {
    height: 180px;
    width: auto;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 8px;
  }
  @keyframes scroll-banner {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── TRAINERS ── */
  .trainers { background: var(--cream); padding: 6rem 1.5rem; }
  .trainers-intro { text-align: center; margin-bottom: 3.5rem; }
  .trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.75rem;
    margin-top: 2rem;
  }
  .trainer-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(0,79,89,0.12);
  }
  .trainer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .trainer-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: var(--bnb-light);
    border: 2px solid var(--bnb-mid);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bnb-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
  }
  .trainer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .trainer-title {
    font-size: 0.63rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bnb-mid);
    display: block;
    margin-bottom: 0.1rem;
  }
  .trainer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
  }
  .trainer-bio {
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--text-mid);
  }
  @media (max-width: 680px) { .trainers-grid { grid-template-columns: 1fr; } }

  .trainers-founders {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 0;
  }
  @media (max-width: 860px) {
    .trainers-founders { grid-template-columns: 1fr; }
  }

  /* ── HERO TYPOGRAPHY ── */
  .hero-title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: heroFadeUp 1.6s cubic-bezier(0.16,1,0.3,1) both;
    animation-delay: 0.3s;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  .hero-title-line1 {
    font-family: 'Optima', 'Optima Nova', 'Palatino', 'Palatino Linotype', 'Book Antiqua', 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7.5vw, 7.5rem);
    font-weight: 700;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: 0.10em;
    padding: 0.1em 0.05em 0.22em;
    background: linear-gradient(175deg,
      #FFFBD0 0%,
      #FAE468 8%,
      #F0CC40 22%,
      #D4A820 40%,
      #B88A18 52%,
      #D4A820 64%,
      #F0CC40 78%,
      #FAE468 90%,
      #FFFBD0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
    text-align: center;
  }
  .hero-title-line2 {
    font-family: 'Optima', 'Optima Nova', 'Palatino', 'Palatino Linotype', 'Book Antiqua', 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3.2vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    background: linear-gradient(175deg, #FFFBD0 0%, #FAE468 15%, #F0CC40 35%, #D4A820 52%, #B88A18 60%, #D4A820 70%, #F0CC40 82%, #FAE468 92%, #FFFBD0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none;
    display: flex;
    align-items: center;
    gap: 0.6em;
    padding-left: 0.5em;
    margin-top: -0.3rem;
  }
  .title-rule {
    color: rgba(245,216,96,0.85);
    font-size: 0.55em;
    letter-spacing: -0.08em;
    font-weight: 700;
    -webkit-text-fill-color: rgba(245,216,96,0.85);
  }
  .hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(240,215,120,0.92);
    text-shadow: 0 2px 4px rgba(0,0,0,0.18), 0 8px 20px rgba(0,79,89,0.15);
    animation: heroFadeUp 1.2s cubic-bezier(0.16,1,0.3,1) both;
    animation-delay: 0.1s;
    margin-top: 0.25rem;
  }
  .hero-cta {
    animation: heroFadeUp 1.2s cubic-bezier(0.16,1,0.3,1) both;
    animation-delay: 0.7s;
    margin-top: 0.5rem;
  }
  .hero-scroll { margin-top: 1rem; }
  @keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── SHIMMER CANVAS (bottom edge) ── */
  #hero-shimmer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 1;
    pointer-events: none;
  }

  /* ── VIDEO FALLBACK ── */
  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    display: none;
  }

  #hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  


  /* ── MASTERCLASS SCHEDULE ── */
  .masterclass-schedule {
    background: #fff;
    padding: 5rem 1.5rem;
  }
  .schedule-intro {
    text-align: center;
    margin-bottom: 3rem;
  }
  .schedule-note {
    font-size: 0.88rem;
    color: var(--text-mid);
    font-style: italic;
    margin-top: 0.75rem;
    opacity: 0.8;
  }
  .schedule-table-wrap {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 4px 28px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,79,89,0.14);
  }
  .schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
  }
  .schedule-table thead tr {
    background: var(--bnb-dark);
    color: var(--gold-light);
  }
  .schedule-table thead th {
    padding: 0.9rem 1rem;
    text-align: left;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .schedule-table tbody tr {
    border-bottom: 1px solid rgba(0,79,89,0.08);
    transition: background 0.15s;
  }
  .schedule-table tbody tr:last-child { border-bottom: none; }
  .schedule-table tbody tr:nth-child(even) { background: rgba(0,79,89,0.04); }
  .schedule-table tbody tr:hover { background: rgba(201,168,76,0.06); }
  .schedule-table tbody td {
    padding: 0.8rem 1rem;
    color: var(--text-dark);
    vertical-align: middle;
  }
  .schedule-table .td-session { color: var(--text-mid); font-size: 0.82rem; }
  .schedule-table .td-date { white-space: nowrap; font-weight: 500; }
  .schedule-table .td-trainer {
    color: var(--bnb-dark);
    font-weight: 500;
  }
  .schedule-table .td-topic { color: var(--text-dark); }
  .schedule-table .td-duration {
    white-space: nowrap;
    color: var(--text-dark);
    font-size: 0.88rem;
    text-align: center;
    font-weight: 500;
  }
  .schedule-table .td-topic-sub {
    font-size: 0.78rem;
    color: #aab0b8;
    display: block;
    margin-top: 0.2rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 400;
  }

  @media (max-width: 700px) {
    .schedule-table { font-size: 0.82rem; }
    .schedule-table thead th,
    .schedule-table tbody td { padding: 0.65rem 0.6rem; }
    .schedule-table .td-duration {
    white-space: nowrap;
    color: var(--text-dark);
    font-size: 0.88rem;
    text-align: center;
    font-weight: 500;
  }
  .schedule-table .td-topic-sub { display: none; }
  }