:root{
    --bg:#0d0807;
    --bg-soft:#170f0c;
    --panel:#1c1310;
    --curtain:#6b1420;
    --curtain-deep:#3f0c17;
    --gold:#c9a227;
    --gold-bright:#eccb72;
    --cream:#f3e9d7;
    --cream-dim:#c9bda9;
    --teal:#0f5257;
    --ember:#e2672a;
    --line: rgba(243,233,215,0.12);
    --display: 'Yatra One', serif;
    --body: 'Manrope', sans-serif;
    --label: 'Poppins', sans-serif;
    --container: 1180px;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--cream);
    font-family:var(--body);
    line-height:1.6;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
  }
  ::selection{ background:var(--gold); color:#1a0f0c; }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:var(--container); margin:0 auto; padding:0 24px;}
  :focus-visible{ outline:2px solid var(--gold-bright); outline-offset:3px; }

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
  }

  /* ---------- background texture ---------- */
  .grain{
    position:fixed; inset:0; pointer-events:none; z-index:2; opacity:0.05; mix-blend-mode:overlay;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  .glow-rays{
    position:absolute; inset:0; z-index:0; overflow:hidden; pointer-events:none;
  }
  .glow-rays span{
    position:absolute; top:-20%; width:2px; height:140%;
    background:linear-gradient(to bottom, transparent, rgba(201,162,39,0.35), transparent);
    transform-origin:top center;
    animation:swayRay 9s ease-in-out infinite;
  }
  @keyframes swayRay{
    0%,100%{ transform:rotate(var(--r,0deg)) scaleY(1); opacity:.5;}
    50%{ transform:rotate(calc(var(--r,0deg) + 3deg)) scaleY(1.06); opacity:.9;}
  }

  /* ---------- nav ---------- */
  header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    padding:20px 0;
    transition:all .35s ease;
    background:linear-gradient(to bottom, rgba(13,8,7,0.85), transparent);
  }
  header.scrolled{
    padding:12px 0;
    background:rgba(13,8,7,0.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  nav{display:flex; align-items:center; justify-content:space-between;}
  .logo{
    font-family:var(--display); font-size:24px; letter-spacing:1px; color:var(--cream);
    display:flex; align-items:center; gap:10px;
  }
  .logo .dot{color:var(--gold-bright);}
  .nav-links{ display:flex; gap:34px; font-family:var(--label); font-size:14px; letter-spacing:.3px; }
  .nav-links a{ position:relative; padding:4px 0; color:var(--cream-dim); transition:color .25s; }
  .nav-links a::after{
    content:''; position:absolute; left:0; bottom:-2px; width:0; height:1px; background:var(--gold-bright); transition:width .3s ease;
  }
  .nav-links a:hover{ color:var(--cream); }
  .nav-links a:hover::after{ width:100%; }
  .nav-cta{
    font-family:var(--label); font-weight:600; font-size:13px; letter-spacing:.4px;
    padding:11px 22px; border-radius:999px;
    background:linear-gradient(135deg, var(--gold-bright), var(--gold));
    color:#241505; display:flex; align-items:center; gap:8px;
    box-shadow:0 6px 20px rgba(201,162,39,0.25);
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .nav-cta:hover{ transform:translateY(-2px); box-shadow:0 10px 26px rgba(201,162,39,0.4); }
  .burger{ display:none; width:26px; height:20px; position:relative; cursor:pointer; background:none; border:none; }
  .burger span{ position:absolute; left:0; right:0; height:2px; background:var(--cream); transition:all .3s ease; }
  .burger span:nth-child(1){ top:0; }
  .burger span:nth-child(2){ top:9px; }
  .burger span:nth-child(3){ top:18px; }
  .burger.open span:nth-child(1){ transform:translateY(9px) rotate(45deg); }
  .burger.open span:nth-child(2){ opacity:0; }
  .burger.open span:nth-child(3){ transform:translateY(-9px) rotate(-45deg); }
  .mobile-menu{
    position:fixed; inset:0; z-index:99; background:rgba(10,6,5,0.98);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:28px;
    transform:translateY(-100%); transition:transform .4s cubic-bezier(.7,0,.2,1);
  }
  .mobile-menu.open{ transform:translateY(0); }
  .mobile-menu a{ font-family:var(--display); font-size:28px; color:var(--cream); }

  /* ---------- hero ---------- */
  .hero{
    position:relative; min-height:100svh; display:flex; align-items:center;
    padding:140px 0 100px; overflow:hidden;
    background:
      radial-gradient(ellipse 60% 50% at 50% 0%, rgba(107,20,32,0.45), transparent 70%),
      radial-gradient(ellipse 50% 40% at 85% 90%, rgba(15,82,87,0.25), transparent 70%),
      var(--bg);
  }
  .hero-inner{ position:relative; z-index:3; width:100%; text-align:center; }
  .eyebrow{
    font-family:var(--label); font-size:12.5px; letter-spacing:3.5px; text-transform:uppercase;
    color:var(--gold-bright); display:inline-flex; align-items:center; gap:12px; margin-bottom:26px;
  }
  .eyebrow::before, .eyebrow::after{ content:''; width:30px; height:1px; background:var(--gold-bright); opacity:.6; }
  .hero h1{
    font-family:var(--display); font-weight:400; line-height:1.02;
    font-size:clamp(52px, 11vw, 128px);
    background:linear-gradient(180deg, var(--cream) 30%, var(--gold-bright) 100%);
    -webkit-background-clip:text; background-clip:text; color:transparent;
    letter-spacing:1px;
  }
  .hero h1 small{ display:block; font-size:0.42em; color:var(--cream-dim); -webkit-text-fill-color:var(--cream-dim); font-family:var(--body); font-weight:600; letter-spacing:6px; margin-top:14px; }
  .hero h1 .letter{
    display:inline-block; -webkit-text-fill-color:inherit;
    transition:color .3s ease, transform .3s ease, text-shadow .3s ease;
  }
  .hero h1 .letter:hover{
    color:var(--hc, var(--gold-bright)); -webkit-text-fill-color:var(--hc, var(--gold-bright));
    transform:translateY(-10px) scale(1.12) rotate(-3deg);
    text-shadow:0 6px 24px rgba(0,0,0,0.35);
  }
  .hero p.sub{
    max-width:560px; margin:30px auto 0; color:var(--cream-dim); font-size:17px;
  }
  .hero-ctas{ display:flex; gap:18px; justify-content:center; margin-top:42px; flex-wrap:wrap; }
  .btn{
    font-family:var(--label); font-weight:600; font-size:14.5px; letter-spacing:.3px;
    padding:16px 34px; border-radius:999px; display:inline-flex; align-items:center; gap:10px;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
    cursor:pointer; border:none;
  }
  .btn-primary{
    background:linear-gradient(135deg, var(--gold-bright), var(--gold));
    color:#241505; box-shadow:0 10px 30px rgba(201,162,39,0.3);
  }
  .btn-primary:hover{ transform:translateY(-3px); box-shadow:0 14px 36px rgba(201,162,39,0.45); }
  .btn-ghost{
    background:transparent; color:var(--cream); border:1px solid var(--line);
  }
  .btn-ghost:hover{ border-color:var(--gold-bright); color:var(--gold-bright); }

  .stats{
    display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
    max-width:820px; margin:76px auto 0; position:relative; z-index:3;
  }
  .stat{ text-align:center; border-left:1px solid var(--line); padding-left:16px; }
  .stat:first-child{ border-left:none; }
  .stat .num{ font-family:var(--display); font-size:clamp(26px,4vw,40px); color:var(--gold-bright); }
  .stat .label{ font-family:var(--label); font-size:11.5px; letter-spacing:1.2px; text-transform:uppercase; color:var(--cream-dim); margin-top:4px; }

  .scroll-cue{
    position:absolute; bottom:28px; left:50%; transform:translateX(-50%); z-index:3;
    display:flex; flex-direction:column; align-items:center; gap:8px; opacity:.6;
  }
  .scroll-cue .stick{ width:1px; height:34px; background:linear-gradient(var(--gold-bright), transparent); animation:cueMove 1.8s ease-in-out infinite; }
  @keyframes cueMove{ 0%{opacity:0; transform:translateY(-6px);} 40%{opacity:1;} 100%{opacity:0; transform:translateY(10px);} }

  /* ---------- marquee ticker ---------- */
  .ticker-strip{
    position:relative; background:var(--curtain); border-top:1px solid rgba(201,162,39,0.35); border-bottom:1px solid rgba(201,162,39,0.35);
    padding:16px 0; overflow:hidden;
  }
  .ticker-strip::before{
    content:''; position:absolute; top:3px; left:0; right:0; height:3px;
    background-image:radial-gradient(circle, var(--gold-bright) 1.5px, transparent 1.6px);
    background-size:22px 3px; opacity:.7; animation:bulbTwinkle 1.4s steps(2) infinite;
  }
  .ticker-strip::after{
    content:''; position:absolute; bottom:3px; left:0; right:0; height:3px;
    background-image:radial-gradient(circle, var(--gold-bright) 1.5px, transparent 1.6px);
    background-size:22px 3px; opacity:.7; animation:bulbTwinkle 1.4s steps(2) infinite reverse;
  }
  @keyframes bulbTwinkle{ 0%{opacity:.3;} 50%{opacity:.9;} 100%{opacity:.3;} }
  .ticker-track{ display:flex; width:max-content; animation:tickerScroll 32s linear infinite; }
  .ticker-track span{
    font-family:var(--display); font-size:22px; color:var(--gold-bright); padding:0 28px; white-space:nowrap; opacity:.92;
  }
  .ticker-track span i{ color:var(--cream); opacity:.4; font-style:normal; margin-right:28px; }
  @keyframes tickerScroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

  /* ---------- section shared ---------- */
  section{ position:relative; padding:120px 0; }
  .sec-head{ text-align:center; max-width:640px; margin:0 auto 64px; }
  .sec-head .eyebrow{ margin-bottom:16px; }
  .sec-head h2{ font-family:var(--display); font-weight:400; font-size:clamp(32px,4.5vw,52px); color:var(--cream); }
  .sec-head p{ color:var(--cream-dim); margin-top:16px; font-size:16px; }

  .reveal{ opacity:0; transform:translateY(36px); transition:opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
  .reveal.in{ opacity:1; transform:translateY(0); }

  /* ---------- video ---------- */
  .video-section{ background:var(--bg-soft); }
  .video-frame{
    position:relative; max-width:920px; margin:0 auto; border-radius:20px; overflow:hidden;
    border:1px solid var(--line); box-shadow:0 40px 90px rgba(0,0,0,0.55);
    aspect-ratio:16/9; background:#000;
  }
  .video-frame iframe{ width:100%; height:100%; border:0; }

  /* ---------- services ---------- */
  .services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
  .service-card{
    display:block; cursor:pointer;
    background:linear-gradient(160deg, var(--panel), rgba(28,19,16,0.4));
    border:1px solid var(--line); border-radius:18px; padding:34px 28px;
    transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    position:relative; overflow:hidden;
  }
  .service-card::before{
    content:''; position:absolute; top:0; left:0; right:0; height:2px;
    background:linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    transform:scaleX(0); transition:transform .4s ease;
  }
  .service-card:hover{ transform:translateY(-8px); border-color:rgba(201,162,39,0.4); box-shadow:0 24px 50px rgba(0,0,0,0.4); }
  .service-card:hover::before{ transform:scaleX(1); }
  .service-icon{
    width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center;
    background:rgba(201,162,39,0.12); color:var(--gold-bright); margin-bottom:22px;
    transition:transform .35s ease, background .35s ease;
  }
  .service-card:hover .service-icon{ transform:scale(1.08) rotate(-4deg); background:rgba(201,162,39,0.2); }
  .service-card h3{ font-family:var(--display); font-weight:400; font-size:22px; margin-bottom:10px; color:var(--cream); }
  .service-card p{ color:var(--cream-dim); font-size:14.5px; }
  .service-cta{
    display:inline-flex; align-items:center; gap:6px; margin-top:18px;
    font-family:var(--label); font-size:12.5px; font-weight:600; letter-spacing:.3px;
    color:var(--gold-bright); opacity:0; transform:translateX(-6px);
    transition:opacity .3s ease, transform .3s ease;
  }
  .service-card:hover .service-cta{ opacity:1; transform:translateX(0); }

  /* ---------- gallery ---------- */
  .gallery-section{ background:var(--bg-soft); }
  .gallery-grid{
    display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:140px; gap:14px;
  }
  .gallery-grid figure{
    overflow:hidden; border-radius:14px; position:relative; margin:0;
    border:1px solid var(--line);
  }
  .gallery-grid figure img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease, filter .6s ease; filter:saturate(0.85) brightness(0.85); }
  .gallery-grid figure:hover img{ transform:scale(1.08); filter:saturate(1.1) brightness(1); }
  .gallery-grid figure::after{
    content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6)); opacity:0; transition:opacity .4s ease;
  }
  .gallery-grid figure:hover::after{ opacity:1; }
  .gallery-grid figure.big{ grid-column:span 2; grid-row:span 2; }

  /* ---------- testimonials ---------- */
  .testi-carousel{ display:flex; align-items:center; gap:20px; max-width:820px; margin:0 auto; }
  .testi-arrow{
    flex:none; width:44px; height:44px; border-radius:50%; border:1px solid var(--line);
    background:var(--panel); color:var(--cream-dim); cursor:pointer;
    display:flex; align-items:center; justify-content:center; transition:all .3s ease;
  }
  .testi-arrow:hover{ border-color:var(--gold-bright); color:var(--gold-bright); background:rgba(201,162,39,0.1); }
  .testi-wrap{ flex:1; text-align:center; position:relative; min-height:260px; }
  .testi-slide{
    position:absolute; inset:0; opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease; pointer-events:none;
  }
  .testi-slide.active{ opacity:1; transform:translateY(0); pointer-events:auto; position:relative; }
  .stars{ color:var(--gold-bright); font-size:18px; letter-spacing:3px; margin-bottom:22px; }
  .testi-slide blockquote{ font-family:var(--display); font-size:clamp(20px,2.6vw,27px); font-weight:400; line-height:1.5; color:var(--cream); }
  .testi-slide .who{ margin-top:26px; font-family:var(--label); font-size:13.5px; color:var(--cream-dim); }
  .testi-slide .who b{ color:var(--gold-bright); font-weight:600; }
  .testi-dots{ display:flex; justify-content:center; gap:10px; margin-top:40px; }
  .testi-dots button{
    width:8px; height:8px; border-radius:50%; border:none; background:var(--line); cursor:pointer; transition:all .3s ease; padding:0;
  }
  .testi-dots button.active{ background:var(--gold-bright); width:24px; border-radius:5px; }

  /* ---------- contact / cta ---------- */
  .cta-section{
    background:
      radial-gradient(ellipse 60% 80% at 50% 100%, rgba(107,20,32,0.5), transparent 70%),
      var(--bg);
    text-align:center;
  }
  .cta-section h2{ font-family:var(--display); font-weight:400; font-size:clamp(34px,5vw,58px); }
  .cta-section p{ color:var(--cream-dim); max-width:480px; margin:18px auto 40px; }
  .whatsapp-btn{
    display:inline-flex; align-items:center; gap:12px; padding:19px 40px; border-radius:999px;
    background:linear-gradient(135deg,#25D366,#128C4A); color:#fff; font-family:var(--label); font-weight:700; font-size:15.5px;
    box-shadow:0 14px 40px rgba(37,211,102,0.3); transition:transform .25s ease, box-shadow .25s ease;
  }
  .whatsapp-btn:hover{ transform:translateY(-3px) scale(1.02); box-shadow:0 20px 46px rgba(37,211,102,0.45); }
  .contact-meta{ display:flex; justify-content:center; gap:40px; margin-top:52px; flex-wrap:wrap; font-family:var(--label); font-size:14px; color:var(--cream-dim); }
  .contact-meta a:hover{ color:var(--gold-bright); }

  /* ---------- areas served ---------- */
  .areas-grid{
    display:flex; flex-wrap:wrap; justify-content:center; gap:14px; max-width:820px; margin:0 auto;
  }
  .areas-grid span{
    font-family:var(--label); font-size:14px; letter-spacing:.3px; color:var(--cream-dim);
    padding:12px 24px; border:1px solid var(--line); border-radius:999px;
    transition:all .3s ease; cursor:default;
  }
  .areas-grid span:hover{ border-color:var(--gold-bright); color:var(--gold-bright); background:rgba(201,162,39,0.08); transform:translateY(-2px); }

  /* ---------- faq ---------- */
  .faq-list{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
  .faq-item{
    border:1px solid var(--line); border-radius:14px; background:var(--panel); overflow:hidden;
    transition:border-color .3s ease;
  }
  .faq-item.open{ border-color:rgba(201,162,39,0.4); }
  .faq-q{
    width:100%; text-align:left; background:none; border:none; cursor:pointer;
    padding:22px 26px; display:flex; align-items:center; justify-content:space-between; gap:16px;
    font-family:var(--body); font-weight:600; font-size:16px; color:var(--cream);
  }
  .faq-icon{
    flex:none; width:26px; height:26px; border-radius:50%; border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center; font-size:16px; color:var(--gold-bright);
    transition:transform .35s ease, background .3s ease;
  }
  .faq-item.open .faq-icon{ transform:rotate(135deg); background:rgba(201,162,39,0.15); }
  .faq-a{ max-height:0; overflow:hidden; transition:max-height .4s ease; }
  .faq-a p{ padding:0 26px 22px; color:var(--cream-dim); font-size:14.5px; max-width:640px; }
  .faq-item.open .faq-a{ max-height:200px; }

  /* ---------- footer ---------- */
  footer{ border-top:1px solid var(--line); padding:70px 0 30px; background:var(--bg-soft); }
  .footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr; gap:50px; padding-bottom:50px; }
  .footer-grid .logo{ margin-bottom:14px; }
  .footer-grid p{ color:var(--cream-dim); font-size:14px; max-width:280px; }
  .social-row{ display:flex; gap:12px; margin-top:20px; }
  .social-row a{
    width:38px; height:38px; border-radius:50%; border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center; color:var(--cream-dim);
    transition:all .3s ease;
  }
  .social-row a:hover{ border-color:var(--gold-bright); color:var(--gold-bright); transform:translateY(-3px); }
  .footer-grid h4{ font-family:var(--label); font-size:12.5px; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold-bright); margin-bottom:18px; }
  .footer-grid ul{ list-style:none; display:flex; flex-direction:column; gap:12px; }
  .footer-grid ul a{ color:var(--cream-dim); font-size:14.5px; transition:color .25s; }
  .footer-grid ul a:hover{ color:var(--cream); }
  .footer-bottom{ border-top:1px solid var(--line); padding-top:26px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:13px; color:var(--cream-dim); }

  /* ---------- floating whatsapp button ---------- */
  .whatsapp-float{
    position:fixed; bottom:28px; left:28px; z-index:200;
    width:60px; height:60px; border-radius:50%;
    background:linear-gradient(135deg,#25D366,#128C4A); color:#fff;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 12px 34px rgba(18,140,74,0.45);
    animation:waFloat 3.4s ease-in-out infinite;
  }
  @keyframes waFloat{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-8px);} }
  .whatsapp-float::after{
    content:''; position:absolute; inset:-6px; border-radius:50%; border:1px solid rgba(37,211,102,0.55);
    animation:orbRing 2.6s ease-out infinite;
  }
  .whatsapp-float:hover{ box-shadow:0 16px 40px rgba(18,140,74,0.6); }

  /* ---------- floating music orb ---------- */
  .music-orb{
    position:fixed; bottom:28px; right:28px; z-index:200;
    width:64px; height:64px; border-radius:50%; cursor:pointer; border:none;
    background:linear-gradient(135deg, var(--gold-bright), var(--curtain));
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 12px 34px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,162,39,0.4);
    animation:orbFloat 3.4s ease-in-out infinite;
  }
  @keyframes orbFloat{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-8px);} }
  .music-orb .orb-vinyl{ display:block; animation:vinylSpin 5s linear infinite; }
  .music-orb.playing .orb-vinyl{ animation-duration:1.6s; }
  @keyframes vinylSpin{ from{ transform:rotate(0deg);} to{ transform:rotate(360deg);} }
  .music-orb .eq{ display:none; align-items:flex-end; gap:3px; height:20px; }
  .music-orb .eq i{ width:3px; background:#1a0f0c; border-radius:2px; animation:eqBar 0.9s ease-in-out infinite; }
  .music-orb .eq i:nth-child(1){ height:40%; animation-delay:0s; }
  .music-orb .eq i:nth-child(2){ height:100%; animation-delay:.15s; }
  .music-orb .eq i:nth-child(3){ height:60%; animation-delay:.3s; }
  .music-orb .eq i:nth-child(4){ height:80%; animation-delay:.45s; }
  @keyframes eqBar{ 0%,100%{ transform:scaleY(0.4);} 50%{ transform:scaleY(1);} }
  .music-orb.playing .orb-vinyl{ display:none; }
  .music-orb.playing .eq{ display:flex; }
  .music-orb::after{
    content:''; position:absolute; inset:-6px; border-radius:50%; border:1px solid rgba(201,162,39,0.5);
    animation:orbRing 2.6s ease-out infinite;
  }
  .music-orb.paused::after{ animation:orbRing 3.6s ease-out infinite; opacity:.5; }
  @keyframes orbRing{ 0%{ transform:scale(0.9); opacity:.7;} 100%{ transform:scale(1.5); opacity:0;} }
  .music-label{
    position:fixed; bottom:44px; right:100px; z-index:200; font-family:var(--label); font-size:12px; letter-spacing:.5px;
    background:rgba(20,13,10,0.9); border:1px solid var(--line); padding:8px 14px; border-radius:999px; color:var(--cream-dim);
    opacity:0; transform:translateX(8px); transition:all .3s ease; pointer-events:none; white-space:nowrap;
  }
  .music-orb:hover + .music-label{ opacity:1; transform:translateX(0); }

  /* ---------- responsive ---------- */
  @media (max-width:980px){
    .nav-links, .nav-cta{ display:none; }
    .burger{ display:block; }
    .services-grid{ grid-template-columns:repeat(2,1fr); }
    .stats{ grid-template-columns:repeat(2,1fr); row-gap:30px; max-width:420px; }
    .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:150px; }
    .gallery-grid figure.big{ grid-column:span 2; grid-row:span 1; }
    .footer-grid{ grid-template-columns:1fr; gap:36px; }
  }
  @media (max-width:600px){
    .services-grid{ grid-template-columns:1fr; }
    .hero-ctas{ flex-direction:column; width:100%; }
    .btn{ justify-content:center; width:100%; }
    .contact-meta{ flex-direction:column; gap:16px; }
    .music-orb{ width:54px; height:54px; bottom:20px; right:20px; }
    .music-label{ display:none; }
    .testi-carousel{ gap:8px; }
    .testi-arrow{ width:36px; height:36px; }
    .whatsapp-float{ width:54px; height:54px; bottom:20px; left:20px; }
  }
