 :root {
      --sand: #f5ede0;
      --clay: #c9a47e;
      --terracotta: #b85c38;
      --deep: #2b1e15;
      --moss: #5a6e4a;
      --cream: #faf6f0;
      --gold: #c8942a;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--deep);
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
    }

    /* ── Navbar ── */
    .navbar {
      background: #f7f2f2;
      position: fixed;
      width: 100%;
      z-index: 1000;
      padding: 1.4rem 0;
      transition: background 0.4s, box-shadow 0.4s;
    }
    .navbar.scrolled {
      background: rgb(193 102 66);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
      padding: 0.8rem 0;
    }
    .navbar-brand img { height: 52px; filter: brightness(1.1); }
    .navbar-nav .nav-link {
      color: #212529 !important;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.5rem 1rem !important;
      transition: color 0.3s;
    }
    .navbar-nav .nav-link:hover { color: var(--clay) !important; }
    .btn-nav {
      background: var(--terracotta);
      color: #fff !important;
      border-radius: 2px;
      padding: 0.5rem 1.4rem !important;
      font-weight: 500;
      letter-spacing: 0.06em;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-nav:hover { background: var(--clay) !important; transform: translateY(-1px); }

    /* ── Hero ── */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--deep);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #1a1008 0%, #2b1e15 40%, #3d2a1c 70%, #1a1008 100%);
    }
    .hero-bg::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(ellipse 60% 50% at 75% 50%, rgba(201,164,126,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(90,110,74,0.12) 0%, transparent 60%);
    }
    .hero-texture {
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a47e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-lotus {
      position: absolute;
      right: -5%;
      top: 50%;
      transform: translateY(-50%);
      width: 55%;
      max-width: 700px;
      opacity: 0.08;
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      animation: fadeUp 1s ease both;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(201,164,126,0.15);
      border: 1px solid rgba(201,164,126,0.4);
      color: var(--clay);
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.4rem 1.2rem;
      border-radius: 2px;
      margin-bottom: 1.5rem;
    }
    .hero h1 {
      font-size: clamp(3rem, 7vw, 5.5rem);
      color: #fff;
      line-height: 1.1;
      font-weight: 300;
      margin-bottom: 1.2rem;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--clay);
    }
    .hero-sub {
      color: rgba(255,255,255,0.65);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 2rem;
    }
    .hero-checks {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin-bottom: 2.5rem;
    }
    .hero-check {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.8);
      font-size: 0.88rem;
    }
    .hero-check i { color: var(--moss); font-size: 0.75rem; }
    .btn-primary-yoga {
      background: var(--terracotta);
      color: #fff;
      border: none;
      padding: 0.9rem 2.4rem;
      font-size: 0.88rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 2px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s;
      font-family: 'DM Sans', sans-serif;
    }
    .btn-primary-yoga:hover {
      background: var(--clay);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(184,92,56,0.4);
    }
    .btn-outline-yoga {
      background: transparent;
      color: rgba(255,255,255,0.8);
      border: 1px solid rgba(255,255,255,0.3);
      padding: 0.9rem 2.4rem;
      font-size: 0.88rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-radius: 2px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s;
      font-family: 'DM Sans', sans-serif;
    }
    .btn-outline-yoga:hover {
      border-color: var(--clay);
      color: var(--clay);
    }
    .hero-stats {
      display: flex;
      gap: 3rem;
      margin-top: 3.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      color: var(--clay);
      font-weight: 300;
      line-height: 1;
    }
    .stat-label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 0.3rem;
    }
    .scroll-indicator {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.3);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      animation: bounce 2s infinite;
    }
    .scroll-indicator::after {
      content: '';
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    }

    /* ── Marquee ── */
    .marquee-strip {
      background: var(--terracotta);
      padding: 0.75rem 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .marquee-inner {
      display: inline-block;
      animation: marquee 30s linear infinite;
    }
    .marquee-inner span {
      color: rgba(255,255,255,0.9);
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin: 0 2.5rem;
    }
    .marquee-inner span::before {
      content: '✦ ';
      opacity: 0.7;
    }

    /* ── Section styles ── */
    section { padding: 5rem 0; }
    .section-tag {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--terracotta);
      margin-bottom: 0.8rem;
    }
    .section-title {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .section-title em { font-style: italic; color: var(--terracotta); }
    .divider-ornament {
      width: 60px;
      height: 2px;
      background: linear-gradient(to right, var(--terracotta), var(--clay));
      margin: 1.5rem 0;
    }

    /* ── Why Join ── */
    .why-section { background: var(--sand); }
    .why-card {
      background: var(--cream);
      border-radius: 4px;
      padding: 2rem;
      height: 100%;
      border-left: 3px solid var(--clay);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 15px 40px rgba(43,30,21,0.1);
    }
    .why-icon {
      width: 48px;
      height: 48px;
      background: rgba(201,164,126,0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      color: var(--terracotta);
      font-size: 1.2rem;
    }
    .why-card h5 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      margin-bottom: 0.6rem;
      font-weight: 600;
    }
    .why-card p { font-size: 0.88rem; color: #6b5c50; line-height: 1.7; }

    /* ── Courses ── */
    .courses-section { background: var(--deep); }
    .course-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,164,126,0.2);
      border-radius: 4px;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
      height: 100%;
    }
    .course-card:hover {
      border-color: var(--clay);
      transform: translateY(-4px);
    }
    .course-badge {
      background: var(--terracotta);
      color: #fff;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.8rem;
      display: inline-block;
    }
    .course-img-wrap { position: relative; overflow: hidden; height: 180px; }
    .course-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .course-card:hover .course-img-wrap img { transform: scale(1.05); }
    .course-body { padding: 1.8rem; }
    .course-body h3 {
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 0.3rem;
      font-weight: 400;
    }
    .course-body .course-sub {
      color: var(--clay);
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }
    .course-features { list-style: none; padding: 0; margin-bottom: 1.5rem; }
    .course-features li {
      color: rgba(255,255,255,0.65);
      font-size: 0.85rem;
      padding: 0.35rem 0;
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .course-features li i { color: var(--moss); margin-top: 3px; font-size: 0.7rem; }
    .btn-course {
      display: inline-block;
      background: transparent;
      border: 1px solid var(--clay);
      color: var(--clay);
      padding: 0.65rem 1.8rem;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: all 0.3s;
    }
    .btn-course:hover { background: var(--clay); color: #fff; }

    /* ── Teachers ── */
    .teachers-section { background: var(--cream); }
    .teacher-card {
      text-align: center;
      padding: 1.5rem 1rem;
    }
    .teacher-img {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--clay);
      margin: 0 auto 1rem;
      display: block;
      transition: border-color 0.3s, transform 0.3s;
    }
    .teacher-card:hover .teacher-img {
      border-color: var(--terracotta);
      transform: scale(1.05);
    }
    .teacher-role {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--terracotta);
      margin-bottom: 0.2rem;
    }
    .teacher-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      margin-bottom: 0.2rem;
    }
    .teacher-qual {
      font-size: 0.75rem;
      color: #8a7568;
      letter-spacing: 0.05em;
    }

    /* ── Comparison ── */
    .comparison-section { background: var(--sand); }
    .comp-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--cream);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(43,30,21,0.08);
    }
    .comp-table th {
      background: var(--deep);
      color: #fff;
      padding: 1.2rem 1.5rem;
      text-align: left;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 400;
    }
    .comp-table th.highlight { background: var(--terracotta); }
    .comp-table td {
      padding: 0.9rem 1.5rem;
      font-size: 0.88rem;
      border-bottom: 1px solid rgba(43,30,21,0.07);
      color: var(--deep);
      vertical-align: middle;
    }
    .comp-table tr:last-child td { border-bottom: none; }
    .comp-table tr:nth-child(even) td { background: rgba(201,164,126,0.04); }
    .comp-table td:first-child { font-weight: 500; color: #5c4e44; }
    .check-yes { color: var(--moss); font-size: 1rem; }
    .check-no { color: #bbb; }

    /* ── Testimonials ── */
    .testimonials-section { background: var(--deep); }
    .review-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,164,126,0.15);
      border-radius: 4px;
      padding: 2rem;
      height: 100%;
      transition: border-color 0.3s;
    }
    .review-card:hover { border-color: rgba(201,164,126,0.4); }
    .review-stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.85rem; }
    .review-text {
      color: rgba(255,255,255,0.7);
      font-size: 0.88rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-style: italic;
    }
    .review-text::before { content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--clay); opacity: 0.6; line-height: 0; vertical-align: -0.5rem; margin-right: 0.2rem; }
    .reviewer-name {
      color: #fff;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
    }
    .reviewer-info { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

    /* ── Enquiry Form ── */
    .enquiry-section { background: var(--cream); }
    .form-wrap {
      background: var(--deep);
      border-radius: 6px;
      padding: 3rem;
      box-shadow: 0 20px 60px rgba(43,30,21,0.2);
    }
    .form-wrap .section-title { color: #fff; }
    .form-wrap .section-tag { color: var(--clay); }
    .form-control, .form-select {
      background: rgba(255,255,255,0.06) !important;
      border: 1px solid rgba(201,164,126,0.25) !important;
      color: #fff !important;
      border-radius: 2px !important;
      padding: 0.8rem 1rem !important;
      font-size: 0.88rem;
      transition: border-color 0.3s;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--clay) !important;
      box-shadow: 0 0 0 3px rgba(201,164,126,0.1) !important;
      background: rgba(255,255,255,0.08) !important;
    }
    .form-control::placeholder { color: rgba(255,255,255,0.3) !important; }
    .form-select option { background: var(--deep); }
    .form-label { color: rgba(255,255,255,0.6); font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.4rem; }
    .btn-submit {
      width: 100%;
      background: var(--terracotta);
      color: #fff;
      border: none;
      padding: 1rem;
      font-size: 0.88rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border-radius: 2px;
      transition: background 0.3s, transform 0.2s;
      font-family: 'DM Sans', sans-serif;
    }
    .btn-submit:hover { background: var(--clay); transform: translateY(-1px); }

    /* ── Notice ── */
    .notice-section { background: var(--sand); border-top: 3px solid var(--terracotta); }
    .notice-section h2 {
      font-size: 1.8rem;
      font-weight: 400;
      margin-bottom: 1.5rem;
    }
    .notice-section p, .notice-section li {
      font-size: 0.9rem;
      color: #5c4e44;
      line-height: 1.8;
    }

    /* ── Footer ── */
    footer {
      background: #1a1008;
      padding: 4rem 0 2rem;
    }
    footer .footer-logo { height: 48px; margin-bottom: 1.2rem; }
    footer p { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.7; }
    footer h6 {
      font-family: 'Cormorant Garamond', serif;
      color: var(--clay);
      font-size: 1rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }
    footer ul { list-style: none; padding: 0; }
    footer ul li { margin-bottom: 0.5rem; }
    footer ul li a {
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.3s;
    }
    footer ul li a:hover { color: var(--clay); }
    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px; height: 36px;
      border: 1px solid rgba(201,164,126,0.3);
      border-radius: 50%;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      margin-right: 0.5rem;
      font-size: 0.85rem;
      transition: all 0.3s;
    }
    .footer-social a:hover {
      border-color: var(--clay);
      color: var(--clay);
      transform: translateY(-2px);
    }
    .footer-divider { border-color: rgba(255,255,255,0.07); margin: 2.5rem 0 1.5rem; }
    .footer-bottom {
      color: rgba(255,255,255,0.3);
      font-size: 0.78rem;
      text-align: center;
    }

    /* ── Floating CTA ── */
    .floating-cta {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .fab {
      width: 48px; height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      text-decoration: none;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    .fab:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
    .fab-wa { background: #25d366; color: #fff; }
    .fab-call { background: var(--terracotta); color: #fff; }

    /* ── Animations ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-8px); }
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible { opacity: 1; transform: none; }

    /* ── Responsive ── */
    @media(max-width: 768px) {
      .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
      .form-wrap { padding: 2rem 1.5rem; }
      .comp-table { font-size: 0.8rem; }
      .comp-table th, .comp-table td { padding: 0.7rem 1rem; }
    }