/* =========================================================
   RAAG MUSIC COMPANY — Design Tokens
   ========================================================= */
:root{
  --bg:            #050505;
  --bg-elevated:   #0b0b0b;
  --bg-card:       rgba(255,255,255,0.035);
  --border-card:   rgba(212,175,55,0.16);
  --border-card-hover: rgba(212,175,55,0.45);

  --gold:          #D4AF37;
  --gold-soft:     #ecd48a;
  --gold-dim:      #7a6224;
  --white:         #f4f1e8;
  --muted:         #a39c8c;
  --muted-dim:     #6b6558;

  --font-display:  'Cinzel', serif;
  --font-body:     'Poppins', sans-serif;

  --container: 1240px;
  --gap-section: clamp(72px, 10vw, 140px);
  --radius: 14px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

body{
  margin:0;
  background:var(--bg);
  color:var(--white);
  font-family:var(--font-body);
  font-weight:300;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }

::selection{ background:var(--gold); color:#050505; }

::-webkit-scrollbar{ width:9px; }
::-webkit-scrollbar-track{ background:#0a0a0a; }
::-webkit-scrollbar-thumb{ background:linear-gradient(var(--gold-dim),var(--gold)); border-radius:10px; }

:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

.wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 clamp(20px,5vw,48px);
}

.section{ padding:var(--gap-section) 0; position:relative; }

/* ---------- Typography ---------- */
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  color:var(--white);
  margin:0;
  letter-spacing:0.01em;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-body);
  text-transform:uppercase;
  letter-spacing:0.35em;
  font-size:11.5px;
  color:var(--gold);
  font-weight:500;
  margin-bottom:18px;
}
.eyebrow::before{
  content:'';
  width:28px; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold));
}
.section-title{
  font-size:clamp(30px,4.4vw,52px);
  line-height:1.15;
  margin-bottom:20px;
}
.section-title em{
  font-style:normal;
  color:var(--gold);
}
.section-lede{
  color:var(--muted);
  font-size:16.5px;
  max-width:640px;
  font-weight:300;
}
.section-head{ margin-bottom:56px; }
.section-head.center{ text-align:center; margin-left:auto; margin-right:auto; }
.section-head.center .section-lede{ margin-left:auto; margin-right:auto; }

/* ---------- Film-strip divider (signature motif) ---------- */
.filmstrip{
  display:flex; align-items:center; gap:10px;
  padding:22px 0;
  opacity:0.55;
}
.filmstrip .sprockets{
  flex:1;
  height:10px;
  background-image:radial-gradient(circle, var(--gold-dim) 1.6px, transparent 1.7px);
  background-size:16px 10px;
  background-repeat:repeat-x;
  background-position:center;
}
.filmstrip .frame-count{
  font-family:var(--font-display);
  font-size:11px;
  letter-spacing:0.3em;
  color:var(--gold-dim);
  white-space:nowrap;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 34px;
  border-radius:2px;
  font-size:13.5px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  border:1px solid transparent;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
  white-space:nowrap;
}
.btn-gold{
  background:linear-gradient(135deg,var(--gold-soft),var(--gold) 55%,#b3872a);
  color:#0a0a0a;
  box-shadow:0 8px 30px -10px rgba(212,175,55,0.55);
}
.btn-gold:hover{ transform:translateY(-3px); box-shadow:0 16px 40px -12px rgba(212,175,55,0.75); }
.btn-ghost{
  background:transparent;
  border-color:rgba(244,241,232,0.25);
  color:var(--white);
}
.btn-ghost:hover{ border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }
.btn-block{ width:100%; }
.btn svg{ width:17px; height:17px; }

/* ---------- Navbar ---------- */
.navbar{
  position:fixed; top:0; left:0; right:0; z-index:200;
  padding:22px 0;
  transition:padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom:1px solid transparent;
}
.navbar.scrolled{
  padding:13px 0;
  background:rgba(5,5,5,0.86);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(212,175,55,0.14);
}
.navbar .wrap{ display:flex; align-items:center; justify-content:space-between; gap:16px; }
.brand{ display:flex; align-items:center; gap:12px; line-height:1; flex-shrink:0; min-width:0; }
.brand img{
  height:44px; width:auto; max-width:180px; object-fit:contain; flex-shrink:0;
  transition:height .4s var(--ease);
}
.navbar.scrolled .brand img{ height:36px; }
.brand .brand-text{ display:flex; flex-direction:column; gap:4px; min-width:0; }
.brand .brand-name{
  font-family:var(--font-display);
  font-size:19px;
  letter-spacing:0.12em;
  color:var(--white);
  white-space:nowrap;
}
.brand .brand-name span{ color:var(--gold); }
.brand .brand-tag{
  font-size:9px;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:var(--muted-dim);
  white-space:nowrap;
}
.nav-links{ display:flex; align-items:center; gap:44px; }
.nav-links a{
  font-size:13px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--muted);
  position:relative;
  padding:6px 0;
  transition:color .3s ease;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:1px;
  background:var(--gold); transition:width .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active{ color:var(--white); }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:22px; }
.nav-cta .btn{ padding:12px 24px; font-size:12px; }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px;
}
.nav-toggle span{ width:24px; height:1.5px; background:var(--gold); transition:.3s; }

.mobile-panel{
  position:fixed; inset:0; z-index:190;
  background:rgba(5,5,5,0.98);
  backdrop-filter:blur(10px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:36px;
  opacity:0; visibility:hidden; transform:translateY(-14px);
  transition:opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.mobile-panel.open{ opacity:1; visibility:visible; transform:translateY(0); }
.mobile-panel a{
  font-family:var(--font-display);
  font-size:24px;
  letter-spacing:0.06em;
  color:var(--white);
}
.mobile-panel a.active{ color:var(--gold); }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:100svh;
  display:flex; align-items:center;
  overflow:hidden;
  padding-top:110px;
}
.hero-canvas{ position:absolute; inset:0; z-index:0; }
.hero::before{
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212,175,55,0.10), transparent 60%),
    linear-gradient(180deg, rgba(5,5,5,0.4) 0%, rgba(5,5,5,0.55) 55%, #050505 100%);
  z-index:1;
}
.hero-content{ position:relative; z-index:2; text-align:center; margin:0 auto; }
.hero-eyebrow{
  font-size:12px; letter-spacing:0.4em; text-transform:uppercase; color:var(--gold-soft);
  margin-bottom:26px; opacity:0;
  animation:fadeUp 1s var(--ease) .2s forwards;
}
.hero h1{
  font-size:clamp(40px,7.4vw,98px);
  line-height:1.05;
  max-width:16ch;
  margin:0 auto 28px;
  opacity:0;
  animation:fadeUp 1.1s var(--ease) .45s forwards;
}
.hero h1 .accent{ color:var(--gold); }
.hero-sub{
  max-width:600px; margin:0 auto 46px;
  color:var(--muted); font-size:17px; font-weight:300;
  opacity:0;
  animation:fadeUp 1.1s var(--ease) .7s forwards;
}
.hero-actions{
  display:flex; gap:20px; justify-content:center; flex-wrap:wrap;
  opacity:0;
  animation:fadeUp 1.1s var(--ease) .95s forwards;
}
.hero-scroll{
  position:absolute; bottom:36px; left:50%; transform:translateX(-50%);
  z-index:2; display:flex; flex-direction:column; align-items:center; gap:10px;
  color:var(--muted-dim); font-size:10px; letter-spacing:0.3em; text-transform:uppercase;
  opacity:0; animation:fadeUp 1s var(--ease) 1.3s forwards;
}
.hero-scroll .line{ width:1px; height:38px; background:linear-gradient(var(--gold),transparent); animation:scrollLine 2.2s ease-in-out infinite; }

@keyframes fadeUp{ from{opacity:0; transform:translateY(26px);} to{opacity:1; transform:translateY(0);} }
@keyframes scrollLine{ 0%{ transform:scaleY(0); transform-origin:top;} 50%{transform:scaleY(1); transform-origin:top;} 51%{transform-origin:bottom;} 100%{transform:scaleY(0); transform-origin:bottom;} }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(34px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-stagger.in > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay:.05s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay:.12s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay:.19s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay:.26s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay:.33s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay:.40s; }
.reveal-stagger.in > *:nth-child(7){ transition-delay:.47s; }
.reveal-stagger.in > *:nth-child(8){ transition-delay:.54s; }

/* ---------- About ---------- */
.about-grid{
  display:grid; grid-template-columns:0.85fr 1.15fr; gap:70px; align-items:center;
}
.about-visual{
  position:relative; aspect-ratio:4/5; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--border-card);
}
.about-visual .plate{
  position:absolute; inset:0;
  background:
    linear-gradient(160deg, #101010 0%, #050505 60%),
    repeating-linear-gradient(115deg, rgba(212,175,55,0.05) 0 2px, transparent 2px 26px);
}
.about-visual .clapper{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
}
.about-visual .founder-badge{
  position:absolute; left:24px; bottom:24px; right:24px;
  background:rgba(5,5,5,0.75); backdrop-filter:blur(8px);
  border:1px solid var(--border-card);
  padding:18px 20px; border-radius:10px;
}
.about-visual .founder-badge .name{ font-family:var(--font-display); color:var(--gold); font-size:16px; }
.about-visual .founder-badge .role{ font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--muted); margin-top:4px; }
.about-copy p{ color:var(--muted); font-size:16px; margin:0 0 22px; }
.about-copy p:last-of-type{ margin-bottom:34px; }
.about-stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.stat{ border-top:1px solid var(--border-card); padding-top:16px; }
.stat .num{ font-family:var(--font-display); font-size:34px; color:var(--gold); }
.stat .num sup{ font-size:18px; }
.stat .label{ font-size:12px; color:var(--muted); letter-spacing:0.04em; margin-top:4px; }

/* ---------- Cards / glass ---------- */
.card{
  background:var(--bg-card);
  border:1px solid var(--border-card);
  border-radius:var(--radius);
  backdrop-filter:blur(6px);
  transition:border-color .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
}
.card:hover{ border-color:var(--border-card-hover); transform:translateY(-6px); background:rgba(255,255,255,0.05); }

.grid{ display:grid; gap:26px; }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }

/* Why choose us */
.why-card{ padding:34px 26px; }
.why-card .ico{
  width:46px; height:46px; border-radius:50%;
  border:1px solid var(--border-card);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); margin-bottom:22px;
}
.why-card .ico svg{ width:22px; height:22px; }
.why-card h3{ font-size:16px; margin-bottom:10px; font-family:var(--font-body); font-weight:600; letter-spacing:0.02em; }
.why-card p{ font-size:13.5px; color:var(--muted); margin:0; }

/* ---------- Process timeline ---------- */
.process{
  display:grid; grid-template-columns:repeat(6,1fr);
  position:relative;
}
.process::before{
  content:''; position:absolute; top:26px; left:8%; right:8%; height:1px;
  background:linear-gradient(90deg,transparent,var(--gold-dim) 12%,var(--gold-dim) 88%,transparent);
}
.process-step{ text-align:center; padding:0 10px; position:relative; }
.process-step .dot{
  width:52px; height:52px; margin:0 auto 22px; border-radius:50%;
  background:var(--bg); border:1px solid var(--gold-dim);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); font-family:var(--font-display); font-size:14px;
  position:relative; z-index:2;
  transition:border-color .4s ease, box-shadow .4s ease;
}
.process-step:hover .dot{ border-color:var(--gold); box-shadow:0 0 24px -4px rgba(212,175,55,0.6); }
.process-step h4{ font-size:14.5px; margin-bottom:8px; }
.process-step p{ font-size:12px; color:var(--muted); margin:0; }

/* ---------- Industries ---------- */
.industry-marquee{ overflow:hidden; position:relative; mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.industry-track{ display:flex; gap:14px; width:max-content; animation:marquee 34s linear infinite; }
.industry-track:hover{ animation-play-state:paused; }
.industry-chip{
  padding:14px 26px; border:1px solid var(--border-card); border-radius:40px;
  font-size:13.5px; color:var(--muted); white-space:nowrap;
}
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ---------- Testimonials ---------- */
.testi-card{ padding:34px 30px; display:flex; flex-direction:column; gap:20px; }
.testi-card .stars{ color:var(--gold); letter-spacing:3px; font-size:14px; }
.testi-card p{ color:var(--white); font-size:15px; font-weight:300; opacity:.9; margin:0; }
.testi-card .who{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.testi-card .avatar{
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold-soft),var(--gold-dim));
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); color:#0a0a0a; font-size:15px;
}
.testi-card .who .n{ font-size:13.5px; color:var(--white); }
.testi-card .who .r{ font-size:11px; color:var(--muted-dim); }

/* ---------- Final CTA banners ---------- */
.cta-banner{
  position:relative; text-align:center; border-radius:20px; overflow:hidden;
  padding:clamp(50px,8vw,100px) clamp(20px,6vw,60px);
  border:1px solid var(--border-card);
  background:
    radial-gradient(ellipse 70% 90% at 50% 0%, rgba(212,175,55,0.14), transparent 65%),
    #0a0a0a;
}
.cta-banner h2{ font-size:clamp(28px,4vw,44px); margin-bottom:18px; }
.cta-banner p{ color:var(--muted); max-width:520px; margin:0 auto 38px; font-size:15.5px; }

/* ---------- Footer ---------- */
footer{ border-top:1px solid var(--border-card); padding:64px 0 28px; background:var(--bg-elevated); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1.2fr; gap:50px; margin-bottom:50px; }
.footer-brand .brand-name{ font-size:22px; }
.footer-brand p{ color:var(--muted); font-size:14px; margin-top:14px; max-width:280px; }
.footer-col h5{ font-family:var(--font-body); font-size:12px; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:20px; }
.footer-col a, .footer-col li{ display:block; color:var(--muted); font-size:14px; margin-bottom:12px; transition:color .3s; }
.footer-col a:hover{ color:var(--gold); }
.social-row{ display:flex; gap:12px; margin-top:18px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--border-card);
  display:flex; align-items:center; justify-content:center; color:var(--muted);
  transition:.3s;
}
.social-row a:hover{ border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }
.social-row svg{ width:16px; height:16px; }
.footer-bottom{
  border-top:1px solid var(--border-card); padding-top:26px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:12.5px; color:var(--muted-dim);
}

/* ---------- Floating WhatsApp + Back to top ---------- */
.float-stack{ position:fixed; right:24px; bottom:24px; z-index:150; display:flex; flex-direction:column; gap:14px; align-items:center; }
.fab{
  width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 30px -8px rgba(0,0,0,0.6);
  transition:transform .35s var(--ease);
  border:none;
}
.fab:hover{ transform:scale(1.08); }
.fab-wa{ background:#25D366; color:#050505; }
.fab-wa svg{ width:28px; height:28px; }
.fab-top{
  width:44px; height:44px; background:rgba(255,255,255,0.06); color:var(--gold);
  border:1px solid var(--border-card);
  opacity:0; pointer-events:none; transform:translateY(10px);
  transition:opacity .3s ease, transform .3s ease;
}
.fab-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
.fab-top svg{ width:18px; height:18px; }
.wa-pulse{ position:relative; }
.wa-pulse::after{
  content:''; position:absolute; inset:0; border-radius:50%;
  border:2px solid #25D366; animation:pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing{ 0%{ transform:scale(1); opacity:.7;} 100%{ transform:scale(1.7); opacity:0;} }

/* ---------- Page banner (services/contact) ---------- */
.page-banner{
  position:relative; padding:200px 0 90px; text-align:center; overflow:hidden;
}
.page-banner::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 60% at 50% 0%, rgba(212,175,55,0.12), transparent 65%);
}
.page-banner .breadcrumb{
  position:relative; z-index:1;
  font-size:12px; letter-spacing:0.2em; text-transform:uppercase; color:var(--muted-dim); margin-bottom:20px;
}
.page-banner .breadcrumb a{ color:var(--muted); }
.page-banner .breadcrumb a:hover{ color:var(--gold); }
.page-banner h1{ position:relative; z-index:1; font-size:clamp(34px,5.6vw,64px); }

/* ---------- Services page ---------- */
.service-card{ padding:36px 30px; }
.service-card .ico{
  width:50px; height:50px; border-radius:12px;
  background:linear-gradient(135deg, rgba(212,175,55,0.14), rgba(212,175,55,0.02));
  border:1px solid var(--border-card);
  display:flex; align-items:center; justify-content:center; color:var(--gold);
  margin-bottom:24px;
}
.service-card .ico svg{ width:24px; height:24px; }
.service-card h3{ font-size:19px; margin-bottom:12px; font-family:var(--font-display); }
.service-card p{ color:var(--muted); font-size:14px; margin:0 0 18px; }
.service-card ul li{ font-size:13px; color:var(--muted); padding:6px 0; border-top:1px solid rgba(255,255,255,0.05); display:flex; gap:8px; align-items:baseline; }
.service-card ul li::before{ content:'—'; color:var(--gold-dim); }

/* ---------- Gallery ---------- */
.gallery-filters{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:40px; }
.gfilter{
  padding:10px 20px; border-radius:30px; border:1px solid var(--border-card);
  font-size:12.5px; letter-spacing:0.05em; color:var(--muted); background:transparent; transition:.3s;
}
.gfilter.active, .gfilter:hover{ border-color:var(--gold); color:var(--gold); }
.masonry{ columns:4 220px; column-gap:18px; }
.g-item{
  break-inside:avoid; margin-bottom:18px; border-radius:10px; overflow:hidden; position:relative;
  border:1px solid var(--border-card); cursor:pointer;
  opacity:0; transform:translateY(20px); transition:opacity .6s var(--ease), transform .6s var(--ease);
}
.g-item.in{ opacity:1; transform:translateY(0); }
.g-item .plate{
  width:100%; aspect-ratio:var(--ar, 1/1.2);
  background:linear-gradient(155deg,#141414,#050505);
  position:relative; overflow:hidden;
}
.g-item .plate::before{
  content:''; position:absolute; inset:0;
  background-image:repeating-linear-gradient(135deg, rgba(212,175,55,0.06) 0 2px, transparent 2px 20px);
}
.g-item .plate svg{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:34px; height:34px; color:var(--gold-dim); opacity:.6; transition:.4s; }
.g-item:hover .plate svg{ color:var(--gold); opacity:1; transform:translate(-50%,-50%) scale(1.15); }
.g-item .caption{
  position:absolute; left:0; right:0; bottom:0; padding:16px;
  background:linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  font-size:12.5px; letter-spacing:0.04em; color:var(--white);
  transform:translateY(8px); opacity:0; transition:.35s;
}
.g-item:hover .caption{ transform:translateY(0); opacity:1; }
.lightbox{
  position:fixed; inset:0; z-index:300; background:rgba(5,5,5,0.95);
  display:flex; align-items:center; justify-content:center; padding:40px;
  opacity:0; pointer-events:none; transition:opacity .3s ease;
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox .lb-box{ max-width:640px; width:100%; text-align:center; }
.lightbox .lb-plate{
  aspect-ratio:16/10; border-radius:12px; border:1px solid var(--border-card);
  background:linear-gradient(155deg,#141414,#050505);
  display:flex; align-items:center; justify-content:center; color:var(--gold-dim); margin-bottom:20px;
}
.lightbox .lb-plate svg{ width:48px; height:48px; }
.lightbox .lb-close{
  position:absolute; top:28px; right:34px; color:var(--muted); font-size:14px; letter-spacing:0.2em; text-transform:uppercase;
  display:flex; gap:8px; align-items:center; background:none; border:none;
}
.lightbox .lb-close:hover{ color:var(--gold); }

/* ---------- Contact page ---------- */
.contact-grid{ display:grid; grid-template-columns:0.9fr 1.3fr; gap:50px; align-items:start; }
.contact-card{ padding:26px 24px; display:flex; gap:16px; align-items:flex-start; }
.contact-card .ico{
  width:44px; height:44px; flex-shrink:0; border-radius:10px;
  background:rgba(212,175,55,0.08); border:1px solid var(--border-card);
  display:flex; align-items:center; justify-content:center; color:var(--gold);
}
.contact-card .ico svg{ width:20px; height:20px; }
.contact-card h4{ font-size:12px; text-transform:uppercase; letter-spacing:0.14em; color:var(--muted-dim); font-family:var(--font-body); margin-bottom:6px; }
.contact-card p{ margin:0; font-size:15px; color:var(--white); }
.contact-stack{ display:flex; flex-direction:column; gap:16px; margin-bottom:26px; }
.map-frame{
  border-radius:var(--radius); overflow:hidden; border:1px solid var(--border-card);
  filter:grayscale(0.4) invert(0.92) contrast(0.88);
  height:230px;
}
.map-frame iframe{ width:100%; height:100%; border:0; display:block; }
.hours-card{ padding:24px; margin-top:16px; }
.hours-row{ display:flex; justify-content:space-between; padding:10px 0; border-top:1px solid rgba(255,255,255,0.06); font-size:13.5px; }
.hours-row:first-of-type{ border-top:none; }
.hours-row span:last-child{ color:var(--muted); }
.hours-row.closed span:last-child{ color:#c17c6b; }

.form-card{ padding:clamp(28px,4vw,48px); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.field{ margin-bottom:22px; }
.field label{ display:block; font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted-dim); margin-bottom:9px; }
.field input, .field select, .field textarea{
  width:100%; background:rgba(255,255,255,0.03); border:1px solid var(--border-card);
  border-radius:8px; padding:14px 16px; color:var(--white); font-family:var(--font-body); font-size:14.5px;
  transition:border-color .3s ease, background .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--gold); background:rgba(212,175,55,0.05);
}
.field textarea{ resize:vertical; min-height:120px; }
.field select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; }
.field select option{ background:#111; color:#fff; }
.form-note{ font-size:12px; color:var(--muted-dim); margin-top:14px; text-align:center; }

/* ---------- Responsive ---------- */
@media (max-width:1080px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .about-grid{ grid-template-columns:1fr; }
  .about-visual{ aspect-ratio:16/9; }
  .process{ grid-template-columns:repeat(3,1fr); row-gap:44px; }
  .process::before{ display:none; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .masonry{ columns:3 200px; }
}
@media (max-width:860px){
  .nav-links, .nav-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .grid-4, .grid-3, .grid-2{ grid-template-columns:1fr 1fr; }
  .process{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr; gap:36px; }
  .form-row{ grid-template-columns:1fr; }
  .masonry{ columns:2 180px; }
}
@media (max-width:560px){
  .grid-4, .grid-3, .grid-2{ grid-template-columns:1fr; }
  .hero-actions{ flex-direction:column; width:100%; }
  .hero-actions .btn{ width:100%; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .about-stats{ grid-template-columns:1fr; }
  .masonry{ columns:1; }
  .brand .brand-tag{ display:none; }
  .brand img{ height:36px; }
  .navbar{ padding:16px 0; }
  .navbar.scrolled{ padding:11px 0; }
  .page-banner{ padding:150px 0 60px; }
}

/* =========================================================
   UPDATE PACK 2 — logo nav, upcoming projects, merged contact,
   standalone gallery page enhancements
   ========================================================= */

/* ---------- Upcoming Projects ---------- */
.project-card{ padding:0; overflow:hidden; }
.project-card .shot{
  position:relative; aspect-ratio:16/10; overflow:hidden;
  background:linear-gradient(155deg,#141414,#050505);
}
.project-card .shot img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s var(--ease); }
.project-card:hover .shot img{ transform:scale(1.07); }
.project-card .shot .fallback-ico{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:var(--gold-dim);
}
.project-card .status{
  position:absolute; top:16px; right:16px; z-index:2;
  background:rgba(5,5,5,0.75); border:1px solid var(--gold-dim); color:var(--gold-soft);
  font-size:10px; letter-spacing:0.14em; text-transform:uppercase; padding:6px 14px; border-radius:20px;
}
.project-card .info{ padding:26px; }
.project-card .info .cat{ font-size:11px; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.project-card .info h3{ font-size:19px; margin-bottom:10px; }
.project-card .info p{ font-size:13.5px; color:var(--muted); margin:0; }

/* ---------- Contact: merged phone + WhatsApp card ---------- */
.contact-primary{ padding:28px 26px; display:flex; flex-direction:column; gap:20px; }
.contact-primary .row{ display:flex; align-items:center; gap:16px; }
.contact-primary .number{ font-family:var(--font-display); font-size:21px; color:var(--white); }
.contact-primary .sub{ font-size:12px; color:var(--muted-dim); margin-top:4px; letter-spacing:0.04em; }
.contact-primary .actions{ display:flex; gap:12px; }
.contact-primary .actions a{
  flex:1; display:flex; align-items:center; justify-content:center; gap:9px;
  padding:14px; border-radius:10px; font-size:12.5px; letter-spacing:0.08em; text-transform:uppercase; font-weight:600;
  transition:transform .3s var(--ease), filter .3s ease, border-color .3s ease, color .3s ease;
}
.contact-primary .actions svg{ width:17px; height:17px; }
.contact-primary .call-btn{ border:1px solid var(--border-card); color:var(--white); background:rgba(255,255,255,0.02); }
.contact-primary .call-btn:hover{ border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }
.contact-primary .wa-btn{ background:#25D366; color:#06210f; }
.contact-primary .wa-btn:hover{ filter:brightness(1.08); transform:translateY(-2px); }

/* ---------- Gallery page (standalone, redesigned) ---------- */
.gallery-hero{
  position:relative; padding:170px 0 60px; text-align:center; overflow:hidden;
}
.gallery-hero::before{
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 65% 65% at 50% 0%, rgba(212,175,55,0.14), transparent 65%);
}
.reel-strip{ overflow:hidden; margin:0 0 var(--gap-section); mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); }
.reel-track{ display:flex; gap:14px; width:max-content; animation:reelScroll 40s linear infinite; }
.reel-track:hover{ animation-play-state:paused; }
.reel-frame{
  width:220px; aspect-ratio:3/4; border-radius:10px; overflow:hidden; position:relative;
  border:1px solid var(--border-card); flex-shrink:0; background:linear-gradient(155deg,#141414,#050505);
}
.reel-frame img{ width:100%; height:100%; object-fit:cover; display:block; }
@keyframes reelScroll{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

.gfilter.active{
  background:linear-gradient(135deg,var(--gold-soft),var(--gold) 60%,#b3872a);
  color:#0a0a0a; border-color:transparent; font-weight:600;
}
.g-item .frame{
  position:relative; width:100%; aspect-ratio:var(--ar, 1/1.2); overflow:hidden;
  background:linear-gradient(155deg,#141414,#050505);
}
.g-item .frame img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .7s var(--ease), filter .5s ease;
  filter:saturate(0.92) contrast(1.04);
}
.g-item:hover .frame img{ transform:scale(1.1); }
.g-item .frame .fallback-ico{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:var(--gold-dim);
  transition:.4s;
}
.g-item:hover .frame .fallback-ico{ color:var(--gold); opacity:1; transform:scale(1.1); }
.g-item .tag{
  position:absolute; top:14px; left:14px; z-index:2;
  padding:6px 13px; border-radius:20px;
  background:rgba(5,5,5,0.62); backdrop-filter:blur(4px);
  border:1px solid var(--border-card);
  font-size:10px; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold-soft);
}
.g-item .frame::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 45%);
  opacity:0; transition:opacity .4s ease;
}
.g-item:hover .frame::after{ opacity:1; }

.lightbox .lb-plate{ position:relative; overflow:hidden; }
.lightbox .lb-plate img{ width:100%; height:100%; object-fit:cover; display:block; }
.lb-arrow{
  position:fixed; top:50%; transform:translateY(-50%); z-index:301;
  width:48px; height:48px; border-radius:50%;
  border:1px solid var(--border-card); background:rgba(255,255,255,0.04); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .3s ease, border-color .3s ease;
}
.lightbox.open .lb-arrow{ opacity:1; pointer-events:auto; }
.lb-arrow:hover{ border-color:var(--gold); }
.lb-prev{ left:28px; } .lb-next{ right:28px; }
.lb-counter{ font-size:12px; color:var(--muted-dim); margin-top:16px; letter-spacing:0.1em; }

@media (max-width:640px){
  .lb-arrow{ width:38px; height:38px; }
  .lb-prev{ left:10px; } .lb-next{ right:10px; }
}
