 :root {
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --dark: #0d0a0b;
    --dark2: #1a1318;
    --dark3: #251d22;
    --rose: #b5536a;
    --cream: #f5ede0;
    --text-muted: #9a8a7a;
    --white: #fff;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--dark);
    color: var(--cream);
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom Cursor */
  .cursor { position: fixed; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%,-50%); transition: transform .1s; }
  .cursor-follower { position: fixed; width: 32px; height: 32px; border: 1px solid var(--gold); border-radius: 50%; pointer-events: none; z-index: 99998; transform: translate(-50%,-50%); transition: all .3s ease; opacity: .5; }

  /* Preloader */
  #preloader {
    position: fixed; inset: 0; background: var(--dark); z-index: 100000;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 20px;
    animation: fadeOutPreloader 0.6s 2.5s forwards;
  }
  .pre-logo { font-family: 'Cinzel', serif; font-size: 2.5rem; letter-spacing: 6px; color: var(--gold); opacity: 0; animation: fadeIn .8s .3s forwards; }
  .pre-line { width: 0; height: 1px; background: var(--gold); animation: expandLine 1.2s .8s forwards; }
  .pre-sub { font-family: 'Jost', sans-serif; font-size: .75rem; letter-spacing: 6px; text-transform: uppercase; color: var(--text-muted); opacity: 0; animation: fadeIn .6s 1.6s forwards; }

  @keyframes expandLine { to { width: 200px; } }
  @keyframes fadeIn { to { opacity: 1; } }
  @keyframes fadeOutPreloader { to { opacity: 0; visibility: hidden; } }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 24px 60px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all .4s;
  }
  nav.scrolled {
    background: rgba(13,10,11,.95);
    backdrop-filter: blur(10px);
    padding: 16px 60px;
    border-bottom: 1px solid rgba(201,168,76,.15);
  }
  .nav-logo { font-family: 'Cinzel', serif; font-size: 1.4rem; letter-spacing: 3px; color: var(--gold); text-decoration: none; }
  .nav-logo span { color: var(--cream); }
  .nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
  .nav-links a { font-size: .78rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--cream); text-decoration: none; position: relative; transition: color .3s; }
  .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }
  .nav-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 8px 22px; font-family: 'Jost', sans-serif; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; cursor: none; transition: all .3s; }
  .nav-btn:hover { background: var(--gold); color: var(--dark); }

  /* HERO */
  .hero {
    height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center;
  }
  .hero-slides { position: absolute; inset: 0; }
  .hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease;
  }
  .hero-slide.active { opacity: 1; }
  .hero-slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(13,10,11,.85) 40%, rgba(13,10,11,.3) 100%);
  }
  .hero-slide-1 { background-image: url('../../assets/images/img-29.jpeg'); }
  .hero-slide-2 { background-image: url('../../assets/images/img-11.jpeg'); }
  .hero-slide-3 { background-image: url('../../assets/images/img-14.jpeg'); }

  .hero-content {
    position: relative; z-index: 10; padding: 0 60px;
    max-width: 700px;
    opacity: 0; transform: translateY(40px);
    animation: heroReveal 1.2s 2.8s forwards;
  }
  @keyframes heroReveal { to { opacity:1; transform:translateY(0); } }

  .hero-tag { font-size: .72rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
  .hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
  .hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 8px; }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-subtitle { font-family: 'Cinzel', serif; font-size: .9rem; letter-spacing: 4px; color: var(--rose); text-transform: uppercase; margin-bottom: 28px; }
  .hero-desc { font-size: 1rem; line-height: 1.8; color: rgba(245,237,224,.7); max-width: 480px; margin-bottom: 40px; }
  .hero-actions { display: flex; gap: 16px; align-items: center; }
  .btn-primary {
    background: var(--gold); color: var(--dark); padding: 14px 36px;
    font-family: 'Jost', sans-serif; font-size: .78rem; letter-spacing: 2.5px;
    text-transform: uppercase; border: none; cursor: none;
    transition: all .3s; text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,168,76,.3); }
  .btn-outline {
    background: transparent; color: var(--cream); padding: 14px 36px;
    font-family: 'Jost', sans-serif; font-size: .78rem; letter-spacing: 2.5px;
    text-transform: uppercase; border: 1px solid rgba(245,237,224,.3); cursor: none;
    transition: all .3s; text-decoration: none; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .hero-contact-strip {
    position: absolute; bottom: 0; right: 0; z-index: 10;
    display: flex;
  }
  .hero-contact-item {
    background: rgba(201,168,76,.12); backdrop-filter: blur(8px);
    padding: 22px 32px; display: flex; align-items: center; gap: 12px;
    border-left: 1px solid rgba(201,168,76,.2);
  }
  .hero-contact-item i { color: var(--gold); font-size: 1rem; }
  .hero-contact-item .label { font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
  .hero-contact-item .val { font-size: .88rem; color: var(--cream); }

  .hero-dots {
    position: absolute; bottom: 40px; left: 60px; z-index: 10;
    display: flex; gap: 8px;
  }
  .dot {
    width: 24px; height: 2px; background: rgba(255,255,255,.3); cursor: none;
    transition: all .3s;
  }
  .dot.active { width: 40px; background: var(--gold); }

  /* ABOUT */
  .about {
    padding: 120px 60px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .about-image-wrap { position: relative; }
  .about-img-main {
    width: 100%; aspect-ratio: 3/4; object-fit: cover;
    display: block;
  }
  .about-img-accent {
    position: absolute; bottom: -30px; right: -30px;
    width: 55%; aspect-ratio: 1; object-fit: cover;
    border: 6px solid var(--dark);
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
  }
  .about-decor {
    position: absolute; top: -20px; left: -20px;
    width: 120px; height: 120px;
    border: 1px solid rgba(201,168,76,.3);
    pointer-events: none;
  }
  .about-call-strip {
    position: absolute; top: 40px; right: -20px;
    background: var(--rose); padding: 14px 20px;
    display: flex; align-items: center; gap: 10px;
  }
  .about-call-strip i { color: var(--white); }
  .about-call-strip span { font-size: .8rem; color: var(--white); }

  .about-content { padding-left: 20px; }
  .section-tag { font-size: .7rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .section-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 20px; }
  .section-title em { color: var(--gold-light); font-style: italic; }
  .about-divider { width: 60px; height: 1px; background: var(--rose); margin-bottom: 24px; }
  .about-text { font-size: .95rem; line-height: 1.9; color: rgba(245,237,224,.7); margin-bottom: 30px; }
  .about-stats { display: flex; gap: 40px; margin-bottom: 40px; }
  .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
  .stat-label { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }

  /* SERVICES */
  .services { padding: 100px 60px; background: var(--dark2); }
  .section-header { text-align: center; margin-bottom: 70px; }
  .section-header .section-tag { justify-content: center; }
  .section-header .section-tag::before { display: none; }
  .section-header .section-title { margin-bottom: 0; }

  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,.1); }
  .service-card {
    background: var(--dark2); padding: 50px 36px;
    text-align: center; position: relative; overflow: hidden;
    transition: all .4s;
  }
  .service-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,.08) 0%, transparent 60%);
    opacity: 0; transition: opacity .4s;
  }
  .service-card:hover::before { opacity: 1; }
  .service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.4); background: var(--dark3); }
  .service-icon {
    width: 70px; height: 70px; margin: 0 auto 24px;
    border: 1px solid rgba(201,168,76,.3); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.6rem;
    transition: all .4s;
  }
  .service-card:hover .service-icon { background: var(--gold); color: var(--dark); border-color: var(--gold); }
  .service-card h3 { font-family: 'Cinzel', serif; font-size: 1rem; letter-spacing: 2px; color: var(--white); margin-bottom: 14px; }
  .service-card p { font-size: .88rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }
  .service-link { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; transition: gap .3s; }
  .service-link:hover { gap: 14px; }

  /* PRICING */
  .pricing { padding: 100px 60px; }
  .pricing-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
  .pricing-promo {
    background: linear-gradient(145deg, var(--rose), #8b2c45);
    padding: 60px 40px; text-align: center; position: relative; overflow: hidden;
  }
  .pricing-promo::before {
    content: ''; position: absolute;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,.05);
    top: -60px; right: -60px;
  }
  .promo-enjoy { font-size: .72rem; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 10px; }
  .promo-percent { font-family: 'Cormorant Garamond', serif; font-size: 6rem; font-weight: 300; color: var(--white); line-height: 1; }
  .promo-off { font-family: 'Cinzel', serif; font-size: 1rem; letter-spacing: 3px; color: rgba(255,255,255,.8); margin-bottom: 20px; }
  .promo-text { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.7); margin-bottom: 30px; }

  .pricing-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .price-card {
    position: relative; overflow: hidden; border-radius: 0;
    transition: transform .3s;
  }
  .price-card:hover { transform: scale(1.02); }
  .price-card img { width: 100%; height: 200px; object-fit: cover; display: block; filter: brightness(.6); transition: filter .4s; }
  .price-card:hover img { filter: brightness(.4); }
  .price-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 4px;
  }
  .price-service { font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.7); }
  .price-amount { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--gold-light); line-height: 1; }

  /* GALLERY */
  .gallery { padding: 100px 60px; background: var(--dark2); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 8px;
  }
  .gallery-item { overflow: hidden; position: relative; cursor: none; }
  .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 2; grid-row: 1 / 3; }
  .gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
  .gallery-item:nth-child(4) { grid-column: 1; grid-row: 2; }
  .gallery-item:nth-child(5) { grid-column: 3; grid-row: 2; }

  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-item-overlay {
    position: absolute; inset: 0;
    background: rgba(13,10,11,.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .4s;
  }
  .gallery-item-overlay i { color: var(--gold); font-size: 1.8rem; }
  .gallery-item:hover .gallery-item-overlay { opacity: 1; }

  /* TEAM */
  .team { padding: 100px 60px; }
  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .team-card { position: relative; overflow: hidden; }
  .team-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: transform .5s; filter: grayscale(20%); }
  .team-card:hover img { transform: scale(1.05); filter: grayscale(0); }
  .team-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 30px 24px 24px;
    background: linear-gradient(transparent, rgba(13,10,11,.9));
    transform: translateY(20px); transition: transform .4s;
  }
  .team-card:hover .team-info { transform: translateY(0); }
  .team-role { font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
  .team-name { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--white); }
  .team-socials { display: flex; gap: 10px; margin-top: 12px; opacity: 0; transform: translateY(10px); transition: all .4s .1s; }
  .team-card:hover .team-socials { opacity: 1; transform: translateY(0); }
  .team-socials a { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .75rem; text-decoration: none; transition: all .3s; }
  .team-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

  /* TESTIMONIALS */
  .testimonials { padding: 100px 60px; background: var(--dark3); position: relative; overflow: hidden; }
  .testimonials::before {
    content: '\201C'; position: absolute; top: 40px; left: 40px;
    font-family: 'Cormorant Garamond', serif; font-size: 20rem; font-weight: 300;
    color: rgba(201,168,76,.04); line-height: 1; pointer-events: none;
  }
  .testimonial-slider { max-width: 800px; margin: 0 auto; text-align: center; }
  .testimonial-slide { display: none; }
  .testimonial-slide.active { display: block; animation: fadeIn .6s; }
  .testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; line-height: 1.7; color: rgba(245,237,224,.85); margin-bottom: 36px; }
  .testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
  .testimonial-author img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
  .author-name { font-family: 'Cinzel', serif; font-size: .9rem; color: var(--white); }
  .author-role { font-size: .75rem; color: var(--text-muted); }
  .testimonial-controls { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
  .t-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(201,168,76,.3); cursor: none; transition: all .3s; }
  .t-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

  /* BLOG */
  .blog { padding: 100px 60px; }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .blog-card { }
  .blog-img-wrap { overflow: hidden; aspect-ratio: 16/10; }
  .blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
  .blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
  .blog-content { padding: 24px 0 0; }
  .blog-meta { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; }
  .blog-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; line-height: 1.4; color: var(--white); margin-bottom: 12px; }
  .blog-content p { font-size: .88rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 16px; }
  .blog-link { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: gap .3s; }
  .blog-link:hover { gap: 14px; }

  /* NEWSLETTER */
  .newsletter {
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
    display: flex; align-items: center; justify-content: space-between; gap: 60px;
    border-top: 1px solid rgba(201,168,76,.1);
  }
  .newsletter-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--white); }
  .newsletter-text p { font-size: .88rem; color: var(--text-muted); margin-top: 8px; }
  .newsletter-form { display: flex; gap: 0; flex: 1; max-width: 500px; }
  .newsletter-form input {
    flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(201,168,76,.2);
    border-right: none; padding: 14px 20px; color: var(--cream); font-family: 'Jost', sans-serif;
    font-size: .88rem; outline: none;
  }
  .newsletter-form input::placeholder { color: var(--text-muted); }
  .newsletter-form button { background: var(--gold); border: none; padding: 14px 28px; color: var(--dark); font-family: 'Jost', sans-serif; font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; cursor: none; transition: background .3s; }
  .newsletter-form button:hover { background: var(--gold-light); }

  /* FOOTER */
  footer { background: var(--dark); padding: 80px 60px 30px; border-top: 1px solid rgba(201,168,76,.1); }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
  .footer-logo { font-family: 'Cinzel', serif; font-size: 1.6rem; letter-spacing: 3px; color: var(--gold); margin-bottom: 16px; display: block; text-decoration: none; }
  .footer-about p { font-size: .88rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }
  .footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: var(--text-muted); font-size: .85rem; }
  .footer-contact-item i { color: var(--gold); margin-top: 2px; width: 16px; }
  .footer-col h4 { font-family: 'Cinzel', serif; font-size: .85rem; letter-spacing: 2px; color: var(--white); margin-bottom: 24px; position: relative; }
  .footer-col h4::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 1px; background: var(--gold); }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a { font-size: .85rem; color: var(--text-muted); text-decoration: none; transition: color .3s; display: flex; align-items: center; gap: 8px; }
  .footer-links a::before { content: '›'; color: var(--gold); }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 30px; display: flex; align-items: center; justify-content: space-between; }
  .footer-bottom p { font-size: .8rem; color: var(--text-muted); }
  .footer-socials { display: flex; gap: 10px; }
  .footer-socials a { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,.2); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: .85rem; text-decoration: none; transition: all .3s; }
  .footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s, transform .8s; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s, transform .8s; }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .8s, transform .8s; }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  /* Floating ornament */
  .ornament {
    position: absolute; pointer-events: none;
    font-family: 'Cormorant Garamond', serif; font-size: 14rem; font-weight: 300;
    color: rgba(201,168,76,.03); line-height: 1; user-select: none;
  }
  
  /*mobile responsive */
  /* ================= MOBILE MENU ================= */
.menu-toggle {
  display: none;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {

  nav {
    padding: 20px 30px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 80px 30px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-inner {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile */
@media (max-width: 768px) {

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }

  nav {
    padding: 15px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #0d0a0b;
    flex-direction: column;
    padding: 80px 20px;
    gap: 20px;
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-contact-strip {
    display: none;
  }

  .services-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  footer {
    padding: 60px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 12px 20px;
    font-size: 12px;
  }
}
.nav-links {
  z-index: 9999; /* ensure above everything */
}

  /* PAGE HERO */
  .page-hero {
    height: 55vh; position: relative;
    display: flex; align-items: flex-end; padding-bottom: 60px;
    background-image: url('../../assets/images/img-11.jpeg');
    background-size: cover; background-position: center;
    margin-top: 0;
  }
  .page-hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(13,10,11,.5) 0%, rgba(13,10,11,.85) 100%);
  }
  .page-hero-content { position: relative; z-index: 2; padding: 0 60px; }
  .breadcrumb { font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
  .breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color .3s; }
  .breadcrumb a:hover { color: var(--gold); }
  .page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5rem); font-weight: 300; color: var(--white); line-height: 1.1; }
  .page-title em { color: var(--gold-light); font-style: italic; }
/* STORY */
  .story { padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .story-img-wrap { position: relative; }
  .story-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
  .story-img-small { position: absolute; bottom: -30px; right: -30px; width: 50%; aspect-ratio: 1; object-fit: cover; border: 6px solid var(--dark); }
  .story-decor { position: absolute; top: -20px; left: -20px; width: 100px; height: 100px; border: 1px solid rgba(201,168,76,.3); pointer-events: none; }
  .story-exp { position: absolute; top: 40px; right: -20px; background: var(--gold); padding: 20px 24px; text-align: center; }
  .story-exp-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--dark); line-height: 1; }
  .story-exp-label { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); }
  .story-text { font-size: .95rem; line-height: 1.9; color: rgba(245,237,224,.7); margin-bottom: 24px; }
  .divider { width: 60px; height: 1px; background: var(--rose); margin-bottom: 24px; }

  /* VALUES */
  .values { padding: 80px 60px; background: var(--dark2); }
  .values-header { text-align: center; margin-bottom: 60px; }
  .values-header .section-tag { justify-content: center; }
  .values-header .section-tag::before { display: none; }
  .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
  .value-card { text-align: center; padding: 40px 24px; border: 1px solid rgba(201,168,76,.12); transition: all .4s; }
  .value-card:hover { background: var(--dark3); border-color: rgba(201,168,76,.3); transform: translateY(-6px); }
  .value-icon { width: 60px; height: 60px; margin: 0 auto 20px; border: 1px solid rgba(201,168,76,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.4rem; transition: all .4s; }
  .value-card:hover .value-icon { background: var(--gold); color: var(--dark); }
  .value-card h3 { font-family: 'Cinzel', serif; font-size: .9rem; letter-spacing: 2px; color: var(--white); margin-bottom: 12px; }
  .value-card p { font-size: .85rem; line-height: 1.7; color: var(--text-muted); }

  /* TIMELINE */
  .timeline-sec { padding: 100px 60px; }
  .timeline-sec .section-tag { justify-content: center; }
  .timeline-sec .section-tag::before { display: none; }
  .timeline-sec .section-title { text-align: center; margin-bottom: 60px; }
  .timeline { position: relative; max-width: 900px; margin: 0 auto; }
  .timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(201,168,76,.2); transform: translateX(-50%); }
  .timeline-item { display: flex; gap: 60px; margin-bottom: 60px; align-items: flex-start; }
  .timeline-item:nth-child(even) { flex-direction: row-reverse; }
  .timeline-item:nth-child(even) .timeline-content { text-align: right; }
  .timeline-item:nth-child(even) .timeline-content .tl-tag { justify-content: flex-end; }
  .timeline-dot { position: relative; z-index: 2; flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%; background: var(--dark2); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin-top: 10px; }
  .timeline-dot span { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold); }
  .timeline-content { flex: 1; }
  .tl-year { font-size: .7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .tl-title { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--white); margin-bottom: 10px; }
  .tl-text { font-size: .88rem; line-height: 1.7; color: var(--text-muted); }

  /* AWARDS */
  .awards { padding: 80px 60px; background: var(--dark3); }
  .awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,.1); margin-top: 60px; }
  .award-card { background: var(--dark3); padding: 40px 30px; display: flex; gap: 20px; align-items: flex-start; transition: background .3s; }
  .award-card:hover { background: var(--dark2); }
  .award-icon { font-size: 2rem; color: var(--gold); flex-shrink: 0; }
  .award-year { font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--rose); margin-bottom: 6px; }
  .award-name { font-family: 'Cinzel', serif; font-size: .9rem; color: var(--white); margin-bottom: 8px; }
  .award-by { font-size: .82rem; color: var(--text-muted); }

  /* STATS BAND */
  .stats-band { padding: 70px 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--gold); }
  .stat-item { background: var(--dark); padding: 40px; text-align: center; }
  .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--gold); line-height: 1; }
  .stat-label { font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; }

  /* CTA */
  .about-cta { padding: 100px 60px; text-align: center; background: linear-gradient(135deg, var(--dark2), var(--dark3)); }
  .about-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; color: var(--white); margin-bottom: 16px; }
  .about-cta p { font-size: .95rem; color: var(--text-muted); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
  .btn-primary { background: var(--gold); color: var(--dark); padding: 14px 36px; font-family: 'Jost', sans-serif; font-size: .78rem; letter-spacing: 2.5px; text-transform: uppercase; border: none; cursor: pointer; transition: all .3s; text-decoration: none; display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline { background: transparent; color: var(--cream); padding: 14px 36px; font-family: 'Jost', sans-serif; font-size: .78rem; letter-spacing: 2.5px; text-transform: uppercase; border: 1px solid rgba(245,237,224,.3); cursor: pointer; transition: all .3s; text-decoration: none; display: inline-block; margin-left: 12px; }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  
  
  /* CLASS FILTER */
  .filter-bar { padding: 40px 60px 0; display: flex; gap: 12px; flex-wrap: wrap; }
  .filter-btn { background: transparent; border: 1px solid rgba(201,168,76,.25); color: var(--text-muted); padding: 10px 24px; font-family: 'Jost', sans-serif; font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all .3s; }
  .filter-btn.active, .filter-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

  /* FEATURED CLASS */
  .featured-class { padding: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .featured-img { aspect-ratio: 1; overflow: hidden; position: relative; }
  .featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; }
  .featured-class:hover .featured-img img { transform: scale(1.04); }
  .featured-tag { position: absolute; top: 24px; left: 24px; background: var(--rose); padding: 6px 16px; font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--white); z-index: 2; }
  .featured-content { background: var(--dark2); padding: 60px 50px; display: flex; flex-direction: column; justify-content: center; }
  .class-level { font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
  .class-name { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 8px; }
  .class-origin { font-family: 'Cinzel', serif; font-size: .75rem; letter-spacing: 3px; color: var(--rose); text-transform: uppercase; margin-bottom: 24px; }
  .class-divider { width: 50px; height: 1px; background: var(--gold); margin-bottom: 24px; }
  .class-desc { font-size: .92rem; line-height: 1.85; color: rgba(245,237,224,.7); margin-bottom: 30px; }
  .class-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 34px; }
  .meta-item { display: flex; align-items: flex-start; gap: 12px; }
  .meta-item i { color: var(--gold); margin-top: 2px; width: 14px; }
  .meta-label { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
  .meta-val { font-size: .9rem; color: var(--cream); }
  .btn-primary { background: var(--gold); color: var(--dark); padding: 14px 36px; font-family: 'Jost', sans-serif; font-size: .78rem; letter-spacing: 2.5px; text-transform: uppercase; border: none; cursor: pointer; transition: all .3s; text-decoration: none; display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  /* CLASS GRID */
  .classes-sec { padding: 80px 60px; background: var(--dark2); }
  .classes-sec .section-tag { justify-content: center; }
  .classes-sec .section-tag::before { display: none; }
  .classes-sec .section-title { text-align: center; margin-bottom: 50px; }
  .classes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,.1); }
  .class-card { background: var(--dark2); position: relative; overflow: hidden; transition: background .4s; }
  .class-card:hover { background: var(--dark3); }
  .class-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; filter: brightness(.7); transition: filter .5s, transform .5s; }
  .class-card:hover .class-card-img { filter: brightness(.5); transform: scale(1.04); }
  .class-card-body { padding: 28px 24px; }
  .card-tag { font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; }
  .card-name { font-family: 'Cinzel', serif; font-size: 1.05rem; color: var(--white); margin-bottom: 12px; }
  .card-desc { font-size: .85rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 18px; }
  .card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(201,168,76,.12); }
  .card-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--gold); }
  .card-link { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: gap .3s; }
  .card-link:hover { gap: 14px; }

  /* SCHEDULE TABLE */
  .schedule-sec { padding: 80px 60px; }
  .schedule-sec .section-title { margin-bottom: 40px; }
  table { width: 100%; border-collapse: collapse; }
  thead tr { border-bottom: 1px solid rgba(201,168,76,.3); }
  thead th { font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); padding: 14px 20px; text-align: left; }
  tbody tr { border-bottom: 1px solid rgba(255,255,255,.05); transition: background .3s; }
  tbody tr:hover { background: rgba(201,168,76,.05); }
  tbody td { padding: 18px 20px; font-size: .88rem; color: var(--text-muted); vertical-align: middle; }
  .td-class { color: var(--cream); font-weight: 500; }
  .td-badge { display: inline-block; padding: 4px 12px; font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; border-radius: 0; }
  .badge-beg { background: rgba(201,168,76,.15); color: var(--gold); }
  .badge-int { background: rgba(181,83,106,.15); color: var(--rose); }
  .badge-adv { background: rgba(255,255,255,.08); color: var(--cream); }

  /* FAQ */
  .faq-sec { padding: 80px 60px; background: var(--dark3); }
  .faq-sec .section-title { margin-bottom: 40px; }
  .faq-item { border-bottom: 1px solid rgba(201,168,76,.12); }
  .faq-q { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; gap: 20px; }
  .faq-q span { font-size: .95rem; color: var(--cream); }
  .faq-q i { color: var(--gold); font-size: .8rem; flex-shrink: 0; transition: transform .3s; }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
  .faq-a p { padding-bottom: 20px; font-size: .9rem; line-height: 1.8; color: var(--text-muted); }
  .faq-item.open .faq-q i { transform: rotate(180deg); }
  .faq-item.open .faq-a { max-height: 200px; }
  
  
   /* FILTER */
  .gallery-filter { padding: 50px 60px 30px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
  .filter-group { display: flex; gap: 10px; flex-wrap: wrap; }
  .filter-btn { background: transparent; border: 1px solid rgba(201,168,76,.2); color: var(--text-muted); padding: 9px 22px; font-family: 'Jost', sans-serif; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all .3s; }
  .filter-btn.active, .filter-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
  .gallery-count { font-size: .78rem; color: var(--text-muted); letter-spacing: 2px; }

  /* MASONRY GRID */
  .gallery-wrap { padding: 0 60px 80px; columns: 3; column-gap: 12px; }
  .gallery-item { break-inside: avoid; margin-bottom: 12px; position: relative; overflow: hidden; cursor: pointer; display: block; }
  .gallery-item img { width: 100%; display: block; transition: transform .5s ease, filter .4s; filter: brightness(.85); }
  .gallery-item:hover img { transform: scale(1.05); filter: brightness(.5); }
  .gallery-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; transition: opacity .4s; }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay i { color: var(--gold); font-size: 1.6rem; }
  .gallery-overlay span { font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--cream); }
  .gallery-cat { position: absolute; bottom: 16px; left: 16px; background: rgba(13,10,11,.8); padding: 4px 12px; font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); opacity: 0; transition: opacity .4s; }
  .gallery-item:hover .gallery-cat { opacity: 1; }

  /* VIDEO SECTION */
  .video-sec { padding: 80px 60px; background: var(--dark2); }
  .section-tag { font-size: .7rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 16px; }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.15; color: var(--white); margin-bottom: 40px; text-align: center; }
  .section-title em { color: var(--gold-light); font-style: italic; }
  .video-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; }
  .video-thumb { position: relative; overflow: hidden; cursor: pointer; }
  .video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s, filter .4s; filter: brightness(.75); }
  .video-thumb:hover img { transform: scale(1.04); filter: brightness(.5); }
  .video-thumb:nth-child(1) { aspect-ratio: 16/9; }
  .video-thumb:nth-child(2), .video-thumb:nth-child(3) { aspect-ratio: 4/3; }
  .play-btn { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
  .play-circle { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; transition: all .3s; }
  .video-thumb:hover .play-circle { background: var(--gold); color: var(--dark); }
  .play-label { font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--cream); }
  .video-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(13,10,11,.8)); }
  .video-title { font-family: 'Cinzel', serif; font-size: .85rem; color: var(--white); }
  .video-duration { font-size: .72rem; color: var(--gold); margin-top: 4px; }

  /* LIGHTBOX */
  .lightbox { position: fixed; inset: 0; background: rgba(13,10,11,.95); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all .4s; }
  .lightbox.open { opacity: 1; visibility: visible; }
  .lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
  .lightbox-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; display: block; }
  .lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: var(--gold); font-size: 1.4rem; cursor: pointer; }
  .lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3); color: var(--gold); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .3s; font-size: 1rem; }
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
  .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--dark); }
  
  
  .video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.video-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-thumb:hover .video-media {
  transform: scale(1.05);
  transition: 0.4s ease;
}

/* TOGGLE */
  .billing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 50px; }
  .billing-toggle span { font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); transition: color .3s; }
  .billing-toggle span.active { color: var(--gold); }
  .toggle-switch { width: 50px; height: 26px; background: rgba(201,168,76,.2); border-radius: 13px; position: relative; cursor: pointer; transition: background .3s; }
  .toggle-switch.annual { background: var(--gold); }
  .toggle-switch::after { content: ''; position: absolute; width: 20px; height: 20px; background: var(--cream); border-radius: 50%; top: 3px; left: 3px; transition: left .3s; }
  .toggle-switch.annual::after { left: 27px; }
  .save-badge { background: var(--rose); color: var(--white); font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; }

  /* PRICING CARDS */
  .pricing-sec { padding: 80px 60px; background: var(--dark2); }
  .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(201,168,76,.1); }
  .price-card { background: var(--dark2); padding: 40px 28px; position: relative; transition: background .4s, transform .4s; }
  .price-card.popular { background: var(--dark3); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
  .popular-badge { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background: var(--rose); color: var(--white); font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px; }
  .price-card:not(.popular):hover { background: var(--dark3); }
  .price-icon { width: 56px; height: 56px; border: 1px solid rgba(201,168,76,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.3rem; margin-bottom: 20px; transition: all .3s; }
  .price-card:hover .price-icon, .price-card.popular .price-icon { background: var(--gold); color: var(--dark); border-color: var(--gold); }
  .price-name { font-family: 'Cinzel', serif; font-size: .9rem; letter-spacing: 2px; color: var(--white); margin-bottom: 6px; }
  .price-subtitle { font-size: .78rem; color: var(--text-muted); margin-bottom: 24px; }
  .price-amount { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
  .price-period { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; margin-top: 4px; }
  .price-divider { height: 1px; background: rgba(201,168,76,.12); margin-bottom: 24px; }
  .price-features { list-style: none; margin-bottom: 30px; }
  .price-features li { padding: 8px 0; font-size: .86rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
  .price-features li i { color: var(--gold); font-size: .75rem; width: 14px; }
  .price-features li.unavail { text-decoration: line-through; opacity: .4; }
  .price-features li.unavail i { color: var(--text-muted); }
  .btn-enroll { width: 100%; background: transparent; border: 1px solid rgba(201,168,76,.3); color: var(--gold); padding: 13px; font-family: 'Jost', sans-serif; font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all .3s; }
  .btn-enroll:hover, .price-card.popular .btn-enroll { background: var(--gold); border-color: var(--gold); color: var(--dark); }

  /* COMBO PLANS */
  .combo-sec { padding: 80px 60px; }
  .combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
  .combo-card { border: 1px solid rgba(201,168,76,.15); padding: 36px 28px; position: relative; transition: all .4s; }
  .combo-card:hover { border-color: rgba(201,168,76,.4); background: var(--dark2); }
  .combo-tag { position: absolute; top: -1px; right: 24px; background: var(--gold); color: var(--dark); font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; }
  .combo-name { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--white); margin-bottom: 8px; }
  .combo-classes { font-size: .8rem; color: var(--rose); letter-spacing: 1px; margin-bottom: 18px; }
  .combo-price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 4px; }
  .combo-save { font-size: .75rem; color: var(--text-muted); margin-bottom: 20px; }
  .combo-features { list-style: none; margin-bottom: 24px; }
  .combo-features li { padding: 7px 0; font-size: .85rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
  .combo-features li i { color: var(--gold); font-size: .7rem; }
  .btn-combo { width: 100%; background: transparent; border: 1px solid rgba(201,168,76,.3); color: var(--gold); padding: 12px; font-family: 'Jost', sans-serif; font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all .3s; }
  .btn-combo:hover { background: var(--gold); color: var(--dark); }

  /* PROMO BANNER */
  .promo-banner { margin: 0 60px 80px; background: linear-gradient(135deg, var(--rose) 0%, #8b2c45 100%); padding: 50px 60px; display: flex; align-items: center; justify-content: space-between; gap: 30px; position: relative; overflow: hidden; }
  .promo-banner::before { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.05); top: -100px; right: -100px; }
  .promo-left h3 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--white); margin-bottom: 8px; }
  .promo-left p { font-size: .88rem; color: rgba(255,255,255,.75); }
  .promo-code { background: rgba(255,255,255,.15); border: 1px dashed rgba(255,255,255,.4); padding: 10px 24px; font-family: 'Cinzel', serif; font-size: 1.4rem; letter-spacing: 4px; color: var(--white); }
  .btn-promo { background: var(--white); color: var(--rose); padding: 14px 36px; font-family: 'Jost', sans-serif; font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; transition: all .3s; }
  .btn-promo:hover { background: var(--cream); }

  /* PAYMENT INFO */
  .payment-sec { padding: 0 60px 80px; }
  .payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .payment-card { background: var(--dark2); padding: 30px 24px; display: flex; gap: 16px; align-items: flex-start; border-left: 2px solid transparent; transition: all .3s; }
  .payment-card:hover { border-left-color: var(--gold); }
  .payment-card i { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; }
  .payment-card h4 { font-family: 'Cinzel', serif; font-size: .85rem; color: var(--white); margin-bottom: 6px; }
  .payment-card p { font-size: .83rem; line-height: 1.6; color: var(--text-muted); }
  
  
  /* FOUNDER FEATURED */
  .founder-sec { padding: 100px 60px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; background: var(--dark2); }
  .founder-img-wrap { position: relative; }
  .founder-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
  .founder-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); padding: 20px 24px; text-align: center; }
  .founder-badge-title { font-family: 'Cinzel', serif; font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); }
  .founder-badge-years { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--dark); line-height: 1; }
  .founder-tag { font-size: .7rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .founder-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
  .founder-role { font-size: .75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
  .founder-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
  .founder-divider { width: 60px; height: 1px; background: var(--rose); margin-bottom: 24px; }
  .founder-text { font-size: .93rem; line-height: 1.9; color: rgba(245,237,224,.7); margin-bottom: 20px; }
  .specialties { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
  .spec-tag { border: 1px solid rgba(201,168,76,.3); padding: 6px 16px; font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
  .founder-socials { display: flex; gap: 10px; }
  .founder-socials a { width: 38px; height: 38px; border: 1px solid rgba(201,168,76,.3); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: .85rem; text-decoration: none; transition: all .3s; }
  .founder-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

  /* TEAM GRID */
  .team-sec { padding: 100px 60px; }
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .team-card { position: relative; overflow: hidden; }
  .team-card-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: transform .5s, filter .4s; filter: grayscale(15%); }
  .team-card:hover .team-card-img { transform: scale(1.04); filter: grayscale(0); }
  .team-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 24px 24px; background: linear-gradient(transparent, rgba(13,10,11,.92)); transform: translateY(20px); transition: transform .4s; }
  .team-card:hover .team-info { transform: translateY(0); }
  .team-role { font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
  .team-name { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--white); margin-bottom: 8px; }
  .team-spec { font-size: .8rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
  .team-socials { display: flex; gap: 8px; opacity: 0; transform: translateY(10px); transition: all .4s .1s; }
  .team-card:hover .team-socials { opacity: 1; transform: translateY(0); }
  .team-socials a { width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: .7rem; text-decoration: none; transition: all .3s; }
  .team-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

  /* GURU PROFILES EXPANDED */
  .profiles-sec { padding: 80px 60px; background: var(--dark2); }
  .profile-row { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: start; padding: 40px 0; border-bottom: 1px solid rgba(201,168,76,.1); }
  .profile-row:last-child { border-bottom: none; }
  .profile-img { width: 200px; height: 200px; object-fit: cover; display: block; }
  .profile-role-badge { display: inline-block; background: rgba(181,83,106,.15); border: 1px solid rgba(181,83,106,.3); color: var(--rose); font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; padding: 5px 14px; margin-bottom: 12px; }
  .profile-name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 6px; }
  .profile-tagline { font-size: .82rem; font-style: italic; color: var(--gold); margin-bottom: 16px; }
  .profile-bio { font-size: .88rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 16px; }
  .profile-credentials { display: flex; flex-wrap: wrap; gap: 8px; }
  .cred-item { font-size: .7rem; letter-spacing: 1px; color: var(--text-muted); padding: 4px 0; }
  .cred-item::before { content: '· '; color: var(--gold); }

  /* JOIN TEAM */
  .join-sec { padding: 80px 60px; text-align: center; }
  .join-sec h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--white); margin-bottom: 16px; }
  .join-sec p { font-size: .93rem; color: var(--text-muted); max-width: 500px; margin: 0 auto 36px; line-height: 1.7; }
  .btn-primary { background: var(--gold); color: var(--dark); padding: 14px 36px; font-family: 'Jost', sans-serif; font-size: .78rem; letter-spacing: 2.5px; text-transform: uppercase; border: none; cursor: pointer; transition: all .3s; text-decoration: none; display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }



/* ─── INTRO STRIP ─── */
.intro-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(3,1fr);
  text-align: center;
}
.intro-stat {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}
.intro-stat:last-child { border-right: none; }
.intro-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2.6rem; color: var(--gold); font-weight: 700;
}
.intro-stat-label {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted); margin-top: .4rem;
}

/* ─── SERVICES SECTION ─── */
.services-section {
  padding: 6rem 5%;
  max-width: 1400px; margin: 0 auto;
}

/* ─── CATEGORY LABEL ─── */
.category-label {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem; margin-top: 4rem;
}
.category-label:first-child { margin-top: 0; }
.category-label-line {
  flex: 1; height: 1px; background: var(--border);
}
.category-label-text {
  font-family: 'Cinzel', serif;
  font-size: 1.72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}

/* ─── SERVICE CARDS GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* ─── SERVICE CARD ─── */
.svc-card {
  position: relative; overflow: hidden;
  background: var(--surface);
  padding: 2.2rem 2rem;
  display: flex; flex-direction: column; gap: .9rem;
  transition: background .35s;
}
.svc-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .5s ease;
}
.svc-card:hover { background: var(--surface-2); }
.svc-card:hover::before { width: 100%; }

.svc-num {
  font-family: 'Cinzel', serif;
  font-size: .68rem; letter-spacing: .22em;
  color: var(--gold-dark);
  display:none;
}
.svc-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold);
  transition: background .3s, border-color .3s;
}
.svc-card:hover .svc-icon {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
}
.svc-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--text); line-height: 1.35;
}
.svc-desc {
  font-size: .83rem; color: var(--text-muted);
  line-height: 1.75; flex: 1;
}
.svc-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  transition: gap .3s;
}
.svc-link:hover { gap: .9rem; }

/* ─── FEATURED WIDE CARD ─── */
.svc-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #1c1508, #0e0b07);
  border-top: 2px solid var(--gold);
  flex-direction: row; align-items: flex-start; gap: 2rem;
}
@media (max-width: 768px) {
  .svc-card.featured { grid-column: span 1; flex-direction: column; }
}
.featured-badge {
  position: absolute; top: 1.4rem; right: 1.4rem;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--deep); background: var(--gold);
  padding: .28rem .9rem;
}
.featured-body { flex: 1; }

/* ─── WEDDING SPOTLIGHT ─── */
.wedding-spotlight {
  margin: 6rem 5%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.wedding-visual {
  position: relative;
  background: linear-gradient(135deg, #2a1505, #150d03);
  display: flex; align-items: center; justify-content: center;
  min-height: 380px; padding: 3rem;
}
.wedding-visual-inner {
  text-align: center;
}
.wedding-icon-ring {
  width: 120px; height: 120px; margin: 0 auto 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--gold);
  position: relative;
}
.wedding-icon-ring::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.wedding-visual-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-style: italic; color: var(--gold-light);
}
.wedding-content {
  padding: 3.5rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.2rem;
}
.wedding-content .section-tag { margin-bottom: .2rem; }
.wedding-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem; font-weight: 600; color: var(--text); line-height: 1.3;
}
.wedding-content h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--gold);
}
.wedding-list {
  list-style: none; display: flex; flex-direction: column; gap: .7rem;
}
.wedding-list li {
  display: flex; align-items: flex-start; gap: .8rem;
  font-size: .85rem; color: var(--text-muted); line-height: 1.6;
}
.wedding-list li::before {
  content: '◆'; color: var(--gold); font-size: .5rem;
  margin-top: .35rem; flex-shrink: 0;
}
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--deep);
  padding: .85rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .3s, transform .2s;
  align-self: flex-start;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ─── CTA BANNER ─── */
.cta-banner {
  margin: 0 5% 6rem;
  padding: 4rem 5%;
  background: linear-gradient(135deg, #1c1205 0%, #0e0b07 50%, #1c1508 100%);
  border: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(201,168,76,.07) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 600; color: var(--text);
  margin-bottom: .8rem; position: relative;
}
.cta-banner h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--gold);
}
.cta-banner p {
  font-size: .9rem; color: var(--text-muted);
  max-width: 520px; margin: 0 auto 2.2rem;
  line-height: 1.8; position: relative;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold); color: var(--gold);
  padding: .85rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; transition: all .3s;
}
.btn-outline:hover { background: rgba(201,168,76,.08); }
