﻿
    /* =========================================
       CSS CUSTOM PROPERTIES
    ========================================= */
    :root {
      --dark:   #FAF9F6;
      --dark-2: #F3EFE8;
      --dark-3: #FFFFFF;
      --dark-4: #FFF8F0;
      --gold:   #B8922A;
      --gold-2: #D4AB4F;
      --gold-3: #8B6820;
      --gold-glow: rgba(184, 146, 42, 0.25);
      --cream:  #1A1A1A;
      --cream-2:#3D3D3D;
      --muted:  #777777;
      --border: rgba(184, 146, 42, 0.20);
      --border-2: rgba(184, 146, 42, 0.40);
      --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
      --shadow:    0 12px 40px rgba(0, 0, 0, 0.12);
      --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.16);
    }

    /* =========================================
       RESET & BASE
    ========================================= */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

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

    body {
      background: var(--dark);
      color: var(--cream);
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      line-height: 1.65;
      overflow-x: hidden;
    }

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

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

    button {
      cursor: pointer;
      font-family: inherit;
      border: none;
      background: none;
    }

    ul {
      list-style: none;
    }

    input,
    select,
    textarea {
      font-family: inherit;
    }

    ::-webkit-scrollbar {
      width: 5px;
    }

    ::-webkit-scrollbar-track {
      background: #f0ece4;
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold);
      border-radius: 3px;
    }

    /* =========================================
       TYPOGRAPHY
    ========================================= */
    .eyebrow {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 4.5px;
      text-transform: uppercase;
      color: var(--gold);
    }

    .display {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      line-height: 1.1;
      color: var(--cream);
      letter-spacing: 0.02em;
    }

    .display em {
      font-style: italic;
      color: var(--gold);
      font-weight: 600;
    }

    /* =========================================
       LAYOUT
    ========================================= */
    .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 28px;
    }

    section {
      padding: 108px 0;
    }

    .dark-alt {
      background: var(--dark-2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

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

    .section-header .eyebrow {
      margin-bottom: 18px;
    }

    .section-header .display {
      font-size: clamp(2rem, 4vw, 3.4rem);
      margin-bottom: 18px;
    }

    .section-header p {
      color: var(--muted);
      font-size: 0.95rem;
      font-weight: 300;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .gold-rule {
      display: block;
      width: 52px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 18px auto;
    }

    /* =========================================
       BUTTONS
    ========================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 38px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: none;
      white-space: nowrap;
    }

    .btn-gold {
      background: linear-gradient(130deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-3) 100%);
      background-size: 200% auto;
      color: #0a0806;
    }

    .btn-gold:hover {
      background-position: right center;
      transform: translateY(-3px);
      box-shadow: 0 14px 40px var(--gold-glow);
      color: #0a0806;
    }

    .btn-outline {
      background: transparent;
      color: var(--gold);
      border: 1px solid rgba(201, 168, 76, 0.55);
    }

    .btn-outline:hover {
      background: rgba(201, 168, 76, 0.09);
      border-color: var(--gold);
      transform: translateY(-3px);
      color: var(--gold-2);
    }

    .btn-sm {
      padding: 10px 26px;
      font-size: 0.68rem;
      letter-spacing: 2px;
    }

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

    .btn-ghost {
      background: rgba(201, 168, 76, 0.06);
      border: 1px solid var(--border);
      color: var(--gold);
    }

    .btn-ghost:hover {
      background: rgba(201, 168, 76, 0.14);
      border-color: var(--border-2);
    }

    /* =========================================
       NAVIGATION
    ========================================= */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
    }

    #navbar.scrolled {
      background: rgba(250, 249, 246, 0.95);
      backdrop-filter: blur(28px);
      -webkit-backdrop-filter: blur(28px);
      box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0, 0, 0, 0.08);
    }
    #navbar.scrolled .nav-menu a {
  color: #1A1A1A;
}

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 78px;
    }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.75rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 1px;
    }

    .logo em {
      color: var(--dark);
      font-style: italic;
      font-weight: 300;
    }
       #navbar.scrolled .logo em {
  color: #1A1A1A;
}

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

    .nav-menu a {
      display: block;
      padding: 8px 14px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #ffffff;
      position: relative;
      transition: color 0.3s;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 14px;
      right: 14px;
      height: 1px;
      background: var(--gold);
      color: #1A1A1A;
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

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

    .nav-menu a:hover::after {
      transform: scaleX(1);
    }

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

    .nav-menu a.nav-active::after {
      transform: scaleX(1);
    }

    .nav-cta {
      background: var(--gold);
      color: #09080A !important;
      padding: 9px 22px !important;
      margin-left: 12px;
      font-weight: 700 !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    .nav-cta:hover {
      background: var(--gold-2) !important;
      color: #09080A !important;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      padding: 4px;
      cursor: pointer;
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--gold);
      transition: all 0.3s;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile drawer */
    .mobile-drawer {
      display: none;
      position: fixed;
      top: 78px;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(250, 249, 246, 0.98);
      backdrop-filter: blur(20px);
      z-index: 999;
      flex-direction: column;
      padding: 32px 28px;
      gap: 4px;
    }

    .mobile-drawer.open {
      display: flex;
    }

    .mobile-drawer a {
      display: block;
      padding: 16px 0;
      font-size: 1.1rem;
      font-weight: 500;
      letter-spacing: 1px;
      color: var(--cream-2);
      border-bottom: 1px solid var(--border);
      transition: color 0.3s, padding-left 0.3s;
    }

    .mobile-drawer a:hover {
      color: var(--gold);
      padding-left: 12px;
    }

    .mobile-drawer .m-cta {
      margin-top: 24px;
      text-align: center;
      background: var(--gold);
      color: #09080A;
      padding: 16px;
      font-weight: 700;
      letter-spacing: 2px;
      font-size: 0.8rem;
      text-transform: uppercase;
      border: none;
    }

    /* =========================================
       HERO
    ========================================= */
    #hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('images/hero.png') center 25% / cover no-repeat;
      will-change: transform;
    }

    .hero-grad {
      position: absolute;
      inset: 0;
      background: linear-gradient(108deg, rgba(9, 8, 10, 0.90) 0%, rgba(9, 8, 10, 0.60) 55%, rgba(9, 8, 10, 0.42) 100%);
    }

    .hero-grad-b {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(9, 8, 10, 0.95) 0%, transparent 55%);
    }

    /* Ornamental rings */
    .hero-ring {
      position: absolute;
      right: -80px;
      top: 50%;
      transform: translateY(-50%);
      width: 520px;
      height: 520px;
      border: 1px solid rgba(201, 168, 76, 0.06);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-ring::before {
      content: '';
      position: absolute;
      inset: 36px;
      border: 1px solid rgba(201, 168, 76, 0.045);
      border-radius: 50%;
    }

    .hero-ring::after {
      content: '';
      position: absolute;
      inset: 72px;
      border: 1px solid rgba(201, 168, 76, 0.03);
      border-radius: 50%;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding-top: 90px;
      padding-bottom: 120px;
      width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 30px;
      opacity: 0;
      animation: fadeUp 1s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .hero-badge span.line {
      display: block;
      width: 36px;
      height: 1px;
      background: var(--gold);
    }

    .hero-badge p {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
    }

    h1.hero-h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.2rem, 7.5vw, 7rem);
      font-weight: 400;
      line-height: 1.02;
      color: #FFFFFF;
      max-width: 820px;
      margin-bottom: 30px;
      opacity: 0;
      animation: fadeUp 1s 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    h1.hero-h1 em {
      font-style: italic;
      color: var(--gold);
      font-weight: 400;
    }

    .hero-pills {
      display: flex;
      gap: 0;
      flex-wrap: wrap;
      margin-bottom: 52px;
      opacity: 0;
      animation: fadeUp 1s 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .hero-pills span {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--cream-2);
      padding: 0 22px;
      border-right: 1px solid rgba(201, 168, 76, 0.28);
    }

    .hero-pills span:first-child {
      padding-left: 0;
    }

    .hero-pills span:last-child {
      border-right: none;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 1s 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    /* Stats bar */
    .hero-stats {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 3;
      background: rgba(250, 249, 246, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-top: 1px solid var(--border);
      opacity: 0;
      animation: fadeUp 1s 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat-item {
      padding: 22px 28px;
      text-align: center;
      border-right: 1px solid var(--border);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .stat-lbl {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #555555;
      margin-top: 5px;
    }

    /* Scroll cue */
    .scroll-cue {
      position: absolute;
      bottom: 96px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      opacity: 0;
      animation: fadeUp 1s 1.3s forwards;
    }

    .scroll-cue-line {
      width: 1px;
      height: 44px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    .scroll-cue span {
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* =========================================
       SERVICES
    ========================================= */
    #services {
      background: var(--dark-2);
    }

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

    .svc-card {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
      box-shadow: var(--shadow-sm);
    }

    .svc-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 56px rgba(0,0,0,0.13), 0 0 0 1px rgba(184,146,42,0.25);
      border-color: rgba(184, 146, 42, 0.40);
    }

    .svc-img {
      position: relative;
      height: 280px;
      overflow: hidden;
    }

    .svc-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .svc-card:hover .svc-img img {
      transform: scale(1.1);
    }

    .svc-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--gold);
      color: #09080A;
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 12px;
    }

    .svc-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .svc-icon {
      width: 38px;
      height: 38px;
      background: rgba(201, 168, 76, 0.08);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 0.9rem;
      margin-bottom: 16px;
      transition: background 0.3s, border-color 0.3s;
    }

    .svc-card:hover .svc-icon {
      background: rgba(201, 168, 76, 0.16);
      border-color: var(--border-2);
    }

    .svc-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 10px;
    }

    .svc-desc {
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 20px;
      flex: 1;
    }

    .svc-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      transition: gap 0.3s;
    }

    .svc-card:hover .svc-link {
      gap: 14px;
    }

    /* =========================================
       COURSES
    ========================================= */
    #courses {
      background: var(--dark);
    }

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

    .course-card {
      background: #FFFFFF;
      border: 1px solid var(--border);
      padding: 44px 36px;
      position: relative;
      display: flex;
      flex-direction: column;
      border-radius: 14px;
      box-shadow: var(--shadow-sm);
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
                  box-shadow 0.35s cubic-bezier(0.4,0,0.2,1),
                  border-color 0.35s ease;
      opacity: 0;
      animation: courseCardIn 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
    }

    .course-card:nth-child(1) { animation-delay: 0.15s; }
    .course-card:nth-child(2) { animation-delay: 0.30s; }
    .course-card:nth-child(3) { animation-delay: 0.45s; }

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

    .course-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.35), 0 0 28px rgba(201,168,76,0.10);
      border-color: rgba(201,168,76,0.45);
    }

    .course-card.popular {
      background: linear-gradient(160deg, #FFFDF5 0%, #FFF8E8 100%);
      border-color: rgba(184,146,42,0.50);
      transform: scale(1.03) translateY(0);
      box-shadow: 0 8px 32px rgba(184,146,42,0.12);
    }

    .course-card.popular:hover {
      transform: scale(1.03) translateY(-8px);
      box-shadow: 0 28px 64px rgba(0,0,0,0.14), 0 0 0 1px rgba(184,146,42,0.5), 0 0 36px rgba(184,146,42,0.10);
    }

    .pop-badge {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(130deg, var(--gold-2) 0%, var(--gold) 60%, var(--gold-3) 100%);
      color: #09080A;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 5px 22px;
      white-space: nowrap;
    }

    .c-level {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .c-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 8px;
    }

    .c-dur {
      font-size: 0.78rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 28px;
    }

    .c-dur i {
      color: var(--gold);
      font-size: 0.72rem;
    }

    .c-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      padding-bottom: 28px;
      margin-bottom: 28px;
      border-bottom: 1px solid var(--border);
    }

    .c-currency {
      font-size: 1.2rem;
      color: var(--gold);
      font-weight: 600;
      align-self: flex-start;
      padding-top: 6px;
    }

    .c-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.8rem;
      font-weight: 600;
      color: var(--cream);
      line-height: 1;
    }

    /* flex:1 pushes the enroll button to the bottom */
    .c-features {
      display: flex;
      flex-direction: column;
      gap: 13px;
      margin-bottom: 36px;
      flex: 1;
    }

    .c-feat {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.85rem;
      color: var(--cream-2);
      line-height: 1.45;
    }

    .c-feat i {
      color: var(--gold);
      font-size: 0.72rem;
      width: 14px;
      flex-shrink: 0;
    }

    .c-feat.off {
      color: var(--muted);
    }

    .c-feat.off i {
      color: var(--muted);
    }

    /* Enroll button hover: scale + arrow nudge */
    .course-card .btn {
      transition: transform 0.25s ease, box-shadow 0.25s ease,
                  background-position 0.32s ease, color 0.25s ease,
                  border-color 0.25s ease;
      margin-top: auto;
    }

    .course-card .btn:hover {
      transform: scale(1.04);
    }

    .course-card .btn .fa-arrow-right {
      transition: transform 0.25s ease;
    }

    .course-card .btn:hover .fa-arrow-right {
      transform: translateX(5px);
    }

    /* =========================================
       PRODUCTS
    ========================================= */
    #products {
      background: var(--dark-2);
    }

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

    .prod-card {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
      box-shadow: var(--shadow-sm);
    }

    .prod-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 56px rgba(0,0,0,0.13);
      border-color: rgba(184, 146, 42, 0.38);
    }

    .prod-img {
      position: relative;
      height: 270px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .prod-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.65s ease;
    }

    .prod-card:hover .prod-img img {
      transform: scale(1.1);
    }

    .prod-img-bg-1 {
      background: radial-gradient(ellipse at 40% 60%, #2e2408 0%, #150f04 100%);
    }

    .prod-img-bg-2 {
      background: radial-gradient(ellipse at 60% 40%, #0d200a 0%, #061004 100%);
    }

    .prod-img-bg-3 {
      background: radial-gradient(ellipse at 50% 50%, #1f0c0c 0%, #0e0505 100%);
    }

    .prod-img-icon {
      font-size: 5rem;
      color: var(--gold);
      opacity: 0.18;
      transition: opacity 0.4s;
    }

    .prod-card:hover .prod-img-icon {
      opacity: 0.28;
    }

    .prod-tag {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(255,255,255,0.92);
      border: 1px solid var(--border);
      color: var(--gold);
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 4px 11px;
      border-radius: 4px;
    }

    .prod-body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .prod-rating {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .stars {
      color: var(--gold);
      font-size: 0.78rem;
      letter-spacing: 1px;
    }

    .prod-rating span {
      font-size: 0.75rem;
      color: var(--muted);
    }

    .prod-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 10px;
    }

    .prod-desc {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.72;
      margin-bottom: 20px;
      flex: 1;
    }

    .prod-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 18px;
      border-top: 1px solid var(--border);
    }

    .prod-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }

    .prod-price small {
      font-family: 'Raleway', sans-serif;
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--muted);
      margin-left: 2px;
    }

    /* =========================================
       GALLERY
    ========================================= */
    #gallery {
      background: var(--dark-2);
    }

    .gallery-grid {
      columns: 4;
      column-gap: 14px;
    }

    .gal-item {
      break-inside: avoid;
      margin-bottom: 14px;
      position: relative;
      overflow: hidden;
      cursor: zoom-in;
    }

    .gal-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gal-item:hover img {
      transform: scale(1.07);
    }

    .gal-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(9, 8, 10, 0.68) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
      display: flex;
      align-items: flex-end;
      padding: 14px;
    }

    .gal-item:hover .gal-overlay {
      opacity: 1;
    }

    .gal-overlay span {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.96);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox img {
      max-width: 94vw;
      max-height: 94vh;
      object-fit: contain;
    }

    .lb-close {
      position: absolute;
      top: 22px;
      right: 28px;
      color: var(--gold);
      font-size: 2.2rem;
      cursor: pointer;
      transition: transform 0.2s, color 0.2s;
    }

    .lb-close:hover {
      transform: scale(1.2);
      color: var(--gold-2);
    }

    /* =========================================
       TESTIMONIALS
    ========================================= */
    #testimonials {
      background: var(--dark-2);
    }

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

    .testi-card {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 38px 32px;
      position: relative;
      transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
      box-shadow: var(--shadow-sm);
    }

    .testi-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow);
      border-color: rgba(184, 146, 42, 0.3);
    }

    .big-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5.5rem;
      font-weight: 700;
      color: var(--gold);
      opacity: 0.13;
      position: absolute;
      top: -8px;
      left: 26px;
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    .t-stars {
      color: var(--gold);
      font-size: 0.82rem;
      margin-bottom: 18px;
    }

    .t-text {
      font-size: 0.9rem;
      color: var(--cream-2);
      line-height: 1.85;
      font-style: italic;
      margin-bottom: 28px;
    }

    .t-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .t-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 2px solid rgba(201, 168, 76, 0.55);
      overflow: hidden;
      flex-shrink: 0;
    }

    .t-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .t-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--cream);
    }

    .t-role {
      font-size: 0.68rem;
      color: var(--gold);
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 1px;
    }

    /* =========================================
       CONTACT
    ========================================= */
    #contact {
      background: var(--dark-2);
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      align-items: start;
    }

    .c-info-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 300;
      color: var(--cream);
      margin-bottom: 18px;
      line-height: 1.2;
    }

    .c-info-title em {
      font-style: italic;
      color: var(--gold);
    }

    .c-desc {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.85;
      margin-bottom: 44px;
    }

    .c-items {
      display: flex;
      flex-direction: column;
      gap: 22px;
      margin-bottom: 44px;
    }

    .c-item {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .c-icon {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      background: rgba(201, 168, 76, 0.07);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 0.95rem;
      transition: background 0.3s, border-color 0.3s;
    }

    .c-item:hover .c-icon {
      background: rgba(201, 168, 76, 0.15);
      border-color: var(--border-2);
    }

    .c-item-lbl {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 3px;
    }

    .c-item-val {
      font-size: 0.9rem;
      color: var(--cream-2);
    }

    .socials {
      display: flex;
      gap: 10px;
    }

    .social-btn {
      width: 44px;
      height: 44px;
      background: rgba(201, 168, 76, 0.07);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.05rem;
      transition: all 0.3s;
    }

    .social-btn:hover {
      background: var(--gold);
      color: #09080A;
      border-color: var(--gold);
    }

    /* Form */
    .c-form-wrap {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 44px 40px;
      box-shadow: var(--shadow-sm);
    }

    .c-form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 30px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: #F8F5EF;
      border: 1px solid var(--border);
      color: var(--cream);
      font-size: 0.88rem;
      padding: 12px 16px;
      outline: none;
      transition: border-color 0.3s, background 0.3s;
      -webkit-appearance: none;
      appearance: none;
      border-radius: 8px;
    }

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

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      background: #FFFFFF;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 108px;
    }

    .form-group select option {
      background: #FFFFFF;
      color: var(--cream);
    }

    .form-note {
      font-size: 0.72rem;
      color: var(--muted);
      margin-top: 14px;
    }

    /* =========================================
       FOOTER
    ========================================= */
    footer {
      background: #EFECE4;
      border-top: 1px solid var(--border);
      padding: 52px 0 28px;
    }

    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      margin-bottom: 48px;
    }

    .footer-brand {
      max-width: 340px;
    }

    .f-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .f-logo em {
      color: var(--cream-2);
      font-style: italic;
      font-weight: 300;
    }

    .f-tagline {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.75;
    }

    .footer-nav {
      display: flex;
      gap: 64px;
      flex-wrap: wrap;
    }

    .f-nav-group h5 {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .f-nav-group ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .f-nav-group ul a {
      font-size: 0.83rem;
      color: var(--muted);
      transition: color 0.3s, padding-left 0.3s;
    }

    .f-nav-group ul a:hover {
      color: var(--cream-2);
      padding-left: 4px;
    }

    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy {
      font-size: 0.75rem;
      color: var(--muted);
    }

    .footer-copy span {
      color: var(--gold);
    }

    /* Toast notification */
    .toast-msg {
      position: fixed;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      padding: 14px 28px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.87rem;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      letter-spacing: 0.5px;
      z-index: 9999;
      max-width: 92vw;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.38s ease, transform 0.38s ease;
    }

    .toast-msg.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }

    .toast-success {
      background: #0d2515;
      border: 1px solid #2ecc71;
      color: #b7f5cd;
    }

    .toast-error {
      background: #2b0d0d;
      border: 1px solid #e74c3c;
      color: #f5b7b7;
    }

    /* WhatsApp FAB */
    .wa-fab {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.6rem;
      z-index: 998;
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
      transition: transform 0.3s, box-shadow 0.3s;
      text-decoration: none;
    }

    .wa-fab:hover {
      transform: scale(1.12) translateY(-3px);
      box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55);
      color: #fff;
    }

    /* =========================================
       ANIMATIONS
    ========================================= */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(36px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: 1;
        transform: scaleY(1);
      }

      50% {
        opacity: 0.2;
        transform: scaleY(0.65) translateY(6px);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(44px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    .delay-1 {
      transition-delay: 0.1s;
    }

    .delay-2 {
      transition-delay: 0.2s;
    }

    .delay-3 {
      transition-delay: 0.3s;
    }

    .delay-4 {
      transition-delay: 0.4s;
    }

    /* =========================================
       RESPONSIVE
    ========================================= */
    @media (max-width: 1100px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-grid {
        columns: 3;
      }
    }

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

      .courses-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
      }

      .course-card.popular {
        transform: none;
        box-shadow: 0 8px 32px rgba(201,168,76,0.08);
      }

      .course-card.popular:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.4), 0 0 28px rgba(201,168,76,0.12);
      }

      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .contact-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 76px 0;
      }

      .nav-menu {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        columns: 2;
      }

      .products-grid {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-top {
        flex-direction: column;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      h1.hero-h1 {
        font-size: clamp(2.6rem, 10vw, 4.5rem);
      }
    }

    @media (max-width: 480px) {
      .gallery-grid {
        columns: 1;
      }

      .hero-pills {
        flex-direction: column;
        gap: 8px;
      }

      .hero-pills span {
        padding: 0;
        border: none;
      }

      .hero-actions {
        flex-direction: column;
      }

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

      .c-form-wrap {
        padding: 30px 22px;
      }

      .stats-row {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  