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

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  :root {
    --choco-dark:   #2C1A0E;   /* deepest chocolate */
    --choco-mid:    #3D2314;   /* rich dark brown */
    --choco-warm:   #5C3317;   /* warm chocolate */
    --choco-light:  #7A4722;   /* lighter chocolate */
    --gold-dark:    #8B6914;   /* deep antique gold */
    --gold-mid:     #B8860B;   /* dark gold */
    --gold-bright:  #D4A017;   /* warm gold */
    --gold-shine:   #E8B84B;   /* bright accent gold */
    --cream:        #F5EDD8;   /* warm cream */
    --parchment:    #EDE0C4;   /* parchment */
    --text-light:   #F9F3E8;
    --text-muted:   rgba(245,237,216,0.65);
    --white:        #FFFFFF;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--choco-dark);
    overflow-x: hidden;
  }

  /* ═══════════════════════════════
     SCROLLBAR
  ═══════════════════════════════ */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--choco-dark); }
  ::-webkit-scrollbar-thumb { background: var(--gold-mid); }

  /* ═══════════════════════════════
     HERO
  ═══════════════════════════════ */
  .hero {
    min-height: 100vh;
    background: var(--choco-dark);
    display: flex; align-items: center;
    padding: 110px 2% 70px;
    position: relative;
    overflow: hidden;
  }

  /* Geometric pattern background */
  .hero-pattern {
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(184,134,11,0.04) 40px,
        rgba(184,134,11,0.04) 41px
      ),
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(184,134,11,0.04) 40px,
        rgba(184,134,11,0.04) 41px
      );
  }

  .hero-deco-circle {
    position: absolute;
    right: -120px; top: 50%;
    transform: translateY(-50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(184,134,11,0.12);
  }
  .hero-deco-circle::before {
    content: '';
    position: absolute; inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(184,134,11,0.1);
  }
  .hero-deco-circle::after {
    content: '';
    position: absolute; inset: 80px;
    border-radius: 50%;
    background: rgba(92,51,23,0.35);
    border: 1px solid rgba(184,134,11,0.15);
  }

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

  .hero-ribbon {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid var(--gold-dark);
    padding: 6px 18px;
    margin-bottom: 28px;
  }
  .hero-ribbon-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-bright); }
  .hero-ribbon span {
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-bright);
    font-weight: 600;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 24px;
  }
  .hero h1 .gold { color: var(--gold-shine); }
  .hero h1 .line-block { display: block; }

  .hero p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.85;
    max-width: 500px;
    margin-bottom: 40px;
  }

  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-gold {
    background: var(--gold-mid);
    color: var(--choco-dark);
    padding: 15px 34px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.8px;
    border: none; cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s, transform 0.2s;
    border-radius: 1px;
  }
  .btn-gold:hover { background: var(--gold-shine); transform: translateY(-2px); }

  .btn-ghost {
    background: transparent;
    color: var(--cream);
    padding: 15px 34px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.8px;
    border: 1.5px solid rgba(245,237,216,0.3);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.25s, color 0.25s;
    border-radius: 1px;
  }
  .btn-ghost:hover { border-color: var(--gold-shine); color: var(--gold-shine); }

  .hero-stats {
    position: relative; z-index: 2;
    display: flex; gap: 0;
    margin-top: 60px;
    border-top: 1px solid rgba(184,134,11,0.2);
    padding-top: 40px;
  }
  .stat-item {
    flex: 1;
    padding: 0 32px 0 0;
    border-right: 1px solid rgba(184,134,11,0.2);
  }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child { border-right: none; padding-left: 32px; padding-right: 0; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem; font-weight: 800;
    color: var(--gold-shine);
    line-height: 1;
  }
  .stat-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
  }

  /* Code Board - Terminal Container Style */
  .code-board {
    position: absolute; right: 5%; top: 50%;
    transform: translateY(-50%);
    width: 42%;
    max-width: 520px;
    background: linear-gradient(145deg, #0d1117 0%, #161b22 100%);
    border: 2px solid rgba(184,134,11,0.4);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 25px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.1);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .code-board::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 36px;
    background: linear-gradient(180deg, rgba(184,134,11,0.15) 0%, rgba(184,134,11,0.05) 100%);
    border-bottom: 1px solid rgba(184,134,11,0.2);
    border-radius: 12px 12px 0 0;
  }
  .code-header {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }
  .code-dot { width: 14px; height: 14px; border-radius: 50%; }
  .dot-red { background: #ff5f56; }
  .dot-yellow { background: #ffbd2e; }
  .dot-green { background: #27c93f; }
  .code-title { font-size: 0.75rem; color: var(--gold-bright); margin-left: auto; text-transform: uppercase; letter-spacing: 1px; }
  .code-content {
    font-size: 0.95rem;
    line-height: 2;
    color: #c9d1d9;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 24px 24px;
    background: #0d1117;
  }
  .code-line { 
    display: block; 
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid transparent;
  }
  .typing-line {
    animation: typing 2s steps(40, end) forwards, blink-caret 0.75s step-end infinite;
    width: 0;
  }
  .typing-line:nth-child(1) { animation-delay: 0.5s; }
  .typing-line:nth-child(2) { animation-delay: 2.5s; }
  .typing-line:nth-child(3) { animation-delay: 4.5s; }
  .typing-line:nth-child(4) { animation-delay: 6.5s; }
  .typing-line:nth-child(5) { animation-delay: 8.5s; }
  .typing-line:nth-child(6) { animation-delay: 10.5s; }
  .typing-line:nth-child(7) { animation-delay: 12.5s; }
  .typing-line:nth-child(8) { animation-delay: 14.5s; }
  .typing-line:nth-child(9) { animation-delay: 16.5s; }
  .typing-line:nth-child(10) { animation-delay: 18.5s; }
  .typing-line:nth-child(11) { animation-delay: 20.5s; }
  .typing-line:nth-child(12) { animation-delay: 22.5s; }
  @keyframes typing {
    from { width: 0; }
    to { width: 100%; }
  }
  @keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--gold-shine); }
  }
  .code-keyword { color: #ff7b72; }
  .code-function { color: #79c0ff; }
  .code-string { color: #a5d6ff; }
  .code-comment { color: #8b949e; font-style: italic; }
  .code-class { color: #f0883e; }
  .code-method { color: #d2a8ff; }
  .code-number { color: #79c0ff; }
  .line-num {
    color: #484f58;
    margin-right: 16px;
    display: inline-block;
    width: 24px;
    text-align: right;
    user-select: none;
  }

  /* ═══════════════════════════════
     MARQUEE STRIP
  ═══════════════════════════════ */
  .marquee-strip {
    background: var(--gold-mid);
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-inner {
    display: inline-block;
    animation: marquee 24s linear infinite;
  }
  .marquee-inner span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--choco-dark);
    padding: 0 40px;
  }
  .marquee-inner span::before { content: '◆ '; color: var(--choco-warm); }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ═══════════════════════════════
     SECTIONS COMMONS
  ═══════════════════════════════ */
  section { padding: 40px 2%; max-width: 100%; margin: 0 auto; }

  .sec-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
  }
  .sec-eyebrow::before,
  .sec-eyebrow::after {
    content: '';
    display: block;
    width: 28px; height: 1.5px;
    background: var(--gold-mid);
  }
  .sec-eyebrow span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
  }

  .sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--choco-dark);
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .sec-title.light { color: var(--cream); }

  .sec-sub {
    font-size: 0.98rem;
    color: #6B4423;
    line-height: 1.8;
    max-width: 500px;
  }
  .sec-sub.light { color: var(--text-muted); }

  /* ═══════════════════════════════
     ABOUT
  ═══════════════════════════════ */
  .about { background: var(--cream); }

  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    margin-top: 32px;
  }

  @media (max-width: 768px) {
    .about-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  .about-visual { position: relative; width: 100%; }

  .about-box-main {
    background: var(--choco-mid);
    aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gold-dark);
    width: 100%;
  }
  .about-box-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
  }

  @media (max-width: 768px) {
    .about-box-main {
      aspect-ratio: auto;
      min-height: auto;
      height: auto;
    }
    .about-box-main img {
      object-fit: contain;
      width: 100%;
      height: auto;
    }
  }

  @media (max-width: 480px) {
    .about-box-main {
      min-height: auto;
      width: 100%;
    }
    .about-box-main img {
      object-fit: contain;
      width: 100%;
      height: auto;
    }
  }
  .about-box-main::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 28px,
        rgba(184,134,11,0.06) 28px,
        rgba(184,134,11,0.06) 29px
      );
  }
  .about-box-main::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-mid);
  }

  .about-badge {
    position: absolute;
    bottom: -28px; right: -28px;
    background: var(--gold-mid);
    color: var(--choco-dark);
    padding: 22px 26px;
    text-align: center;
    border: 2px solid var(--choco-dark);
  }
  .about-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 800;
    line-height: 1;
  }
  .about-badge-txt {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  .about-content { padding-top: 12px; }

  .about-content > p {
    font-size: 0.96rem;
    color: #5C3A1A;
    line-height: 1.85;
    margin-bottom: 32px;
  }

  .feat-list { display: flex; flex-direction: column; gap: 1px; }

  .feat-item {
    display: flex; gap: 0;
    border: 1px solid rgba(92,51,23,0.15);
    background: var(--white);
    overflow: hidden;
    transition: box-shadow 0.25s;
  }
  .feat-item:hover { box-shadow: 4px 4px 0 var(--gold-mid); }
  .feat-num-col {
    background: var(--choco-mid);
    color: var(--gold-shine);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 800;
    width: 56px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    padding: 18px 0;
  }
  .feat-text { padding: 18px 20px; }
  .feat-text h4 { font-size: 0.92rem; font-weight: 700; color: var(--choco-dark); margin-bottom: 4px; }
  .feat-text p  { font-size: 0.82rem; color: #7A4A2A; line-height: 1.55; }

  /* ═══════════════════════════════
     COURSES
  ═══════════════════════════════ */
  .courses { background: var(--parchment); }

  .courses-hd {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 28px; flex-wrap: wrap; gap: 20px;
  }

  .courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .course-card {
    background: var(--white);
    border: 1px solid rgba(92,51,23,0.12);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.28s, box-shadow 0.28s;
    position: relative;
  }
  .course-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-mid);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .course-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(44,26,14,0.12); }
  .course-card:hover::before { transform: scaleX(1); }

  .course-head {
    background: var(--choco-dark);
    padding: 26px 24px 22px;
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 12px;
  }
  .course-icon-wrap {
    width: 54px; height: 54px;
    background: wheat;
    border: 1px solid wheat;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
  }
  .course-dur {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-bright);
    text-transform: uppercase;
    background: rgba(184,134,11,0.15);
    border: 1px solid rgba(184,134,11,0.3);
    padding: 5px 10px;
  }
  .course-body { padding: 22px 24px 20px; }
  .course-cat {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
  }
  .course-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--choco-dark);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .course-card p { font-size: 0.83rem; color: #7A4A2A; line-height: 1.65; }

  .course-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
    padding: 12px 0;
    border-top: 1px solid rgba(184,134,11,0.15);
    border-bottom: 1px solid rgba(184,134,11,0.15);
  }

  .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--choco-dark);
  }

  .meta-item svg {
    stroke: var(--gold-mid);
  }

  .syllabus {
    font-size: 0.82rem !important;
    color: var(--choco-warm) !important;
    line-height: 1.5 !important;
    margin-top: 8px;
  }

  .syllabus strong {
    color: var(--choco-dark);
  }

  .course-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px;
    border-top: 1px solid rgba(92,51,23,0.1);
    background: var(--parchment);
  }
  .mode-tag {
    font-size: 0.75rem; color: #8A5A2A; font-weight: 500;
  }
  .enroll-btn {
    background: var(--choco-mid);
    color: var(--gold-shine);
    border: none; cursor: pointer;
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    transition: background 0.2s;
  }
  .enroll-btn:hover { background: var(--choco-dark); }

  /* ═══════════════════════════════
     VIDEO CLASSES
  ═══════════════════════════════ */
  .video-classes {
    background: var(--parchment);
  }

  .video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .video-card {
    background: var(--white);
    border: 1px solid rgba(184,134,11,0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(44,26,14,0.15);
  }

  .video-card.featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--choco-dark);
  }

  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  .video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44,26,14,0.4);
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .video-card:hover .video-overlay {
    opacity: 0;
  }

  .play-btn {
    width: 70px;
    height: 70px;
    background: var(--gold-mid);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    color: var(--choco-dark);
    pointer-events: auto;
  }

  .play-btn:hover {
    transform: scale(1.1);
    background: var(--gold-shine);
  }

  .video-card.featured .play-btn {
    width: 90px;
    height: 90px;
  }

  .video-info {
    padding: 20px 24px;
  }

  .video-tag {
    display: inline-block;
    background: rgba(184,134,11,0.15);
    color: var(--gold-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .video-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--choco-dark);
    margin-bottom: 8px;
  }

  .video-card.featured .video-info h3 {
    font-size: 1.5rem;
  }

  .video-info p {
    font-size: 0.85rem;
    color: var(--choco-warm);
    line-height: 1.6;
  }

  @media (max-width: 900px) {
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .video-card.featured { grid-column: span 2; grid-row: span 1; }
  }

  @media (max-width: 640px) {
    .video-grid { grid-template-columns: 1fr; }
    .video-card.featured { grid-column: span 1; }
  }

  /* ═══════════════════════════════
     WHY US
  ═══════════════════════════════ */
  .why { background: var(--choco-dark); }

  .why-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    margin-top: 32px;
    align-items: start;
  }

  .why-left {
    flex: 1;
  }

  .why-big-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 9rem; font-weight: 800;
    color: wheat;
    line-height: 0.9;
    margin-bottom: 16px;
    letter-spacing: -4px;
  }

  .why-left p {
    font-size: 0.94rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
  }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .why-card {
    background: var(--choco-mid);
    padding: 30px 26px;
    border: 1px solid wheat;
    transition: background 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
  }
  .why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: wheat;
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  .why-card:hover { background: var(--choco-warm); border-color: var(--gold-mid); }
  .why-card:hover::after { transform: scaleX(1); }

  .why-card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
  }
  .why-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--cream);
    margin-bottom: 10px;
  }
  .why-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.65;
  }

  /* ═══════════════════════════════
     TESTIMONIALS
  ═══════════════════════════════ */
  .testimonials { background: var(--cream); }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
  }

  .testi-card {
    background: var(--white);
    border: 1px solid rgba(92,51,23,0.12);
    padding: 34px 30px;
    position: relative;
    transition: box-shadow 0.25s;
  }
  .testi-card:hover { box-shadow: 0 12px 32px rgba(44,26,14,0.1); }

  .testi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold-mid);
  }

  .testi-stars { color: var(--gold-bright); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }

  .big-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; font-weight: 800;
    color: var(--gold-bright);
    line-height: 0.7;
    margin-bottom: 14px;
  }

  .testi-card p {
    font-size: 0.9rem;
    color: #5C3A1A;
    line-height: 1.8;
  }

  .testi-author {
    display: flex; align-items: center; gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(92,51,23,0.1);
  }

  .t-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem;
    flex-shrink: 0;
    border: 2px solid var(--gold-mid);
  }
  .ta-1 { background: var(--choco-mid); color: var(--gold-shine); }
  .ta-2 { background: var(--choco-warm); color: var(--gold-shine); }
  .ta-3 { background: var(--choco-dark); color: var(--gold-shine); }

  .testi-author h5 { font-size: 0.88rem; font-weight: 700; color: var(--choco-dark); }
  .testi-author span { font-size: 0.76rem; color: var(--gold-dark); }

  /* ═══════════════════════════════
     NUMBERS BAND
  ═══════════════════════════════ */
  .numbers-band {
    background: var(--choco-mid);
    border-top: 2px solid var(--gold-dark);
    border-bottom: 2px solid var(--gold-dark);
    padding: 32px 2%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .nb-item {
    text-align: center;
    border-right: 1px solid rgba(184,134,11,0.2);
    padding: 16px 20px;
  }
  .nb-item:last-child { border-right: none; }
  .nb-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem; font-weight: 800;
    color: var(--gold-shine);
    line-height: 1;
  }
  .nb-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
  }

  /* ═══════════════════════════════
     FACILITIES
  ═══════════════════════════════ */
  .facilities {
    background: var(--parchment);
  }

  .facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 28px;
  }

  .facility-card {
    background: var(--white);
    border: 1px solid rgba(184,134,11,0.2);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(44,26,14,0.12);
  }

  .facility-icon {
    width: 80px;
    height: 80px;
    background: rgba(184,134,11,0.1);
    border: 2px solid rgba(184,134,11,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--choco-dark);
    transition: background 0.3s, border-color 0.3s;
  }

  .facility-card:hover .facility-icon {
    background: var(--gold-mid);
    border-color: var(--gold-shine);
  }

  .facility-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--choco-dark);
    margin-bottom: 12px;
  }

  .facility-card p {
    font-size: 0.9rem;
    color: var(--choco-warm);
    line-height: 1.6;
  }

  @media (max-width: 1100px) {
    .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 640px) {
    .facilities-grid { grid-template-columns: 1fr; }
  }

  /* ═══════════════════════════════
     LOCATION
  ═══════════════════════════════ */
  .location-section {
    background: var(--cream);
  }

  .location-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-top: 28px;
  }

  .map-container {
    border: 3px solid var(--gold-mid);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44,26,14,0.15);
  }

  .map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
  }

  .location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .location-card {
    background: var(--white);
    border: 1px solid rgba(184,134,11,0.2);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(44,26,14,0.1);
  }

  .loc-icon {
    width: 48px;
    height: 48px;
    background: rgba(184,134,11,0.1);
    border: 2px solid rgba(184,134,11,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--choco-dark);
    flex-shrink: 0;
  }

  .loc-details h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--choco-dark);
    margin-bottom: 8px;
  }

  .loc-details p {
    font-size: 0.9rem;
    color: var(--choco-warm);
    line-height: 1.6;
  }

  .directions-btn {
    margin-top: 10px;
    text-align: center;
    display: block;
    text-decoration: none;
  }

  @media (max-width: 1100px) {
    .location-wrapper {
      grid-template-columns: 1fr;
    }
    .map-container iframe {
      height: 350px;
    }
  }

  /* ═══════════════════════════════
     CTA
  ═══════════════════════════════ */
  .cta-section {
    background: var(--gold-mid);
    padding: 40px 2%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
  }
  .cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--choco-dark);
    max-width: 560px;
    line-height: 1.2;
  }
  .cta-section h2 em { font-style: italic; color: var(--choco-light); }
  .btn-dark-choco {
    background: var(--choco-dark);
    color: var(--cream);
    padding: 16px 38px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: none; cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
    border-radius: 1px;
  }
  .btn-dark-choco:hover { background: var(--choco-warm); transform: translateY(-2px); }

  /* ═══════════════════════════════
     CONTACT
  ═══════════════════════════════ */
  .contact { background: var(--parchment); }

  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    margin-top: 28px;
    align-items: start;
  }

  .contact-info { display: flex; flex-direction: column; gap: 0; }

  .info-block {
    display: flex; gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(92,51,23,0.15);
    align-items: flex-start;
  }
  .info-block:first-child { padding-top: 0; }

  .info-ico {
    width: 46px; height: 46px;
    background: var(--choco-mid);
    color: var(--gold-shine);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .info-block h5 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 5px;
  }
  .info-block p { font-size: 0.88rem; color: #5C3A1A; line-height: 1.6; }

  /* FORM */
  .contact-form-wrap {
    background: var(--white);
    padding: 40px 36px;
    border: 1px solid rgba(92,51,23,0.15);
    border-top: 4px solid var(--gold-mid);
  }

  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 800;
    color: var(--choco-dark);
    margin-bottom: 6px;
  }
  .form-sub { font-size: 0.85rem; color: #8A5A2A; margin-bottom: 28px; }

  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: 1 / -1; }

  label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--choco-warm);
  }

  input, select, textarea {
    border: 1.5px solid rgba(92,51,23,0.2);
    padding: 12px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--choco-dark);
    background: var(--cream);
    outline: none;
    border-radius: 1px;
    transition: border-color 0.2s;
    width: 100%;
  }
  input:focus, select:focus, textarea:focus {
    border-color: var(--gold-mid);
    background: var(--white);
  }
  textarea { resize: vertical; min-height: 110px; }

  .form-submit {
    background: var(--choco-dark);
    color: var(--gold-shine);
    border: none; cursor: pointer;
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 8px;
    transition: background 0.2s;
    border-radius: 1px;
  }
  .form-submit:hover { background: var(--choco-warm); }

  /* ═══════════════════════════════
     SCROLL REVEAL
  ═══════════════════════════════ */
  .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal.vis { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ═══════════════════════════════
     RESPONSIVE
  ═══════════════════════════════ */
  @media (max-width: 1100px) {
    .courses-grid { grid-template-columns: repeat(2, 1fr); }
    .why-layout { grid-template-columns: 1fr; gap: 40px; }
    .why-big-num { font-size: 6rem; }
  }

  @media (max-width: 900px) {
    .hero { flex-direction: column; padding: 100px 2% 0 2%; }
    .hero-content { max-width: 100%; }
    .code-board { position: relative; right: auto; top: auto; transform: none; width: 100%; max-width: 100%; height: auto; min-height: 380px; margin: 40px 0 0 0; }
    .code-content { font-size: 0.85rem; padding: 16px 20px 20px; }
    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-badge { right: 0; }
    .testi-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .numbers-band { grid-template-columns: 1fr 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .stat-item { border-right: none; padding: 0; }
  }

  @media (max-width: 640px) {
    section { padding: 32px 16px !important; }
    .hero { padding: 90px 16px 40px !important; }
    .courses-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .numbers-band { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .cta-section { text-align: center; justify-content: center; padding: 32px 16px !important; }
    .courses-hd { flex-direction: column; align-items: flex-start; }
    .contact-form-wrap { padding: 28px 20px; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions a { width: 100%; text-align: center; }
    .sec-title { font-size: 1.8rem; }
    .about-inner { gap: 32px; }
    .about-box-main { font-size: 3rem; }
    .feat-item { flex-direction: column; }
    .feat-num-col { width: 100%; padding: 12px; }
    .why-big-num { font-size: 4rem; }
    .testi-card { padding: 24px 20px; }
    .big-quote { font-size: 2.5rem; }
    .nb-num { font-size: 2.2rem; }
    .facility-card { padding: 28px 20px; }
    .facility-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .cta-section h2 { font-size: 1.5rem; }
    .btn-dark-choco { width: 100%; text-align: center; }
    .contact-inner { gap: 40px; }
    .info-block { padding: 16px 0; }
  }
