*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
:root{
  --gold:#C9A84C;
  --gold-light:#E8C97A;
  --gold-dim:rgba(201,168,76,0.15);
  --black:#080808;
  --dark:#111111;
  --dark2:#161616;
  --white:#F5F0E8;
  --gray:#6B6B6B;
  --gray2:#9A9A9A;
}
html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}
body{
  background:var(--black);
  color:var(--white);
  font-family:'DM Sans',sans-serif;
  overflow-x:hidden;
  width:100%;
  position:relative;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before{
  content:'';
  position:fixed;
  inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events:none;
  z-index:99990;
  opacity:0.4;
}

/* ─── CUSTOM CURSOR (HIDE ON TOUCH DEVICES) ─── */
@media (hover: hover) and (pointer: fine) {
  .cursor{
    position:fixed;
    width:8px;
    height:8px;
    background:var(--gold);
    border-radius:50%;
    pointer-events:none;
    z-index:99999;
    transform:translate(-50%,-50%);
    transition:width 0.2s,height 0.2s,opacity 0.2s;
    mix-blend-mode:difference;
  }
  .cursor-ring{
    position:fixed;
    width:40px;
    height:40px;
    border:1px solid rgba(201,168,76,0.6);
    border-radius:50%;
    pointer-events:none;
    z-index:99998;
    transform:translate(-50%,-50%);
    transition:width 0.3s,height 0.3s,border-color 0.3s;
  }
  .cursor.hover{width:0;height:0;}
  .cursor-ring.hover{width:60px;height:60px;border-color:var(--gold);}
}
@media (hover: none) and (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ─── LOADER ─── */
.loader{
  position:fixed;
  inset:0;
  background:var(--black);
  z-index:99997;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:32px;
  transition:opacity 1s cubic-bezier(0.76,0,0.24,1),visibility 1s;
}
.loader.hidden{opacity:0;visibility:hidden;}
.loader-logo{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(40px,10vw,64px);
  color:var(--gold);
  letter-spacing:8px;
  animation:loaderPulse 2s ease infinite;
}
@keyframes loaderPulse{0%,100%{opacity:1;}50%{opacity:0.5;}}
.loader-tagline{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:clamp(11px,4vw,14px);
  color:var(--gray);
  letter-spacing:4px;
  opacity:0;
  animation:fadeIn 0.8s 0.5s forwards;
}
.loader-bar{width:180px;height:1px;background:rgba(255,255,255,0.08);position:relative;overflow:hidden;}
.loader-fill{
  position:absolute;
  left:0;
  top:0;
  height:100%;
  background:linear-gradient(to right,transparent,var(--gold),transparent);
  animation:loadBar 2s ease forwards;
}
@keyframes loadBar{from{width:0;left:0;}to{width:100%;left:0;}}
@keyframes fadeIn{to{opacity:1;}}

/* ─── NAV ─── */
nav{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  padding:20px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition:all 0.5s cubic-bezier(0.76,0,0.24,1);
}
nav.scrolled{
  background:rgba(8,8,8,0.92);
  backdrop-filter:blur(24px);
  border-bottom:1px solid rgba(201,168,76,0.08);
  padding:14px 24px;
}
.nav-logo{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(20px,6vw,26px);
  color:var(--gold);
  letter-spacing:3px;
  transition:letter-spacing 0.4s;
}
.nav-logo:hover{letter-spacing:5px;}
.nav-links{
  display:none;
  gap:30px;
  list-style:none;
}
.nav-links a{
  color:rgba(245,240,232,0.55);
  text-decoration:none;
  font-size:11px;
  font-weight:400;
  letter-spacing:2px;
  text-transform:uppercase;
  transition:color 0.3s;
  position:relative;
  padding-bottom:2px;
}
.nav-links a::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:1px;
  background:var(--gold);
  transition:width 0.3s cubic-bezier(0.76,0,0.24,1);
}
.nav-links a:hover{color:var(--white);}
.nav-links a:hover::after{width:100%;}
.nav-cta{
  background:transparent;
  color:var(--gold);
  padding:8px 20px;
  font-size:10px;
  font-weight:500;
  letter-spacing:2px;
  text-transform:uppercase;
  border:1px solid rgba(201,168,76,0.5);
  transition:all 0.4s;
  position:relative;
  overflow:hidden;
}
.nav-cta::before{
  content:'';
  position:absolute;
  inset:0;
  background:var(--gold);
  transform:translateX(-101%);
  transition:transform 0.4s cubic-bezier(0.76,0,0.24,1);
}
.nav-cta span{position:relative;z-index:1;}
.nav-cta:hover::before{transform:translateX(0);}
.nav-cta:hover{color:var(--black);}
.hamburger{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.hamburger span{
  display:block;
  width:22px;
  height:1px;
  background:var(--white);
  transition:all 0.3s;
}

/* ─── HERO ─── */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1920&q=80') center/cover no-repeat;
  filter:brightness(0.25) saturate(0.8);
  transform-origin:center;
  will-change:transform;
}
.hero-vignette{
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at center,transparent 30%,rgba(8,8,8,0.8) 100%);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(8,8,8,0.4) 0%,transparent 40%,rgba(8,8,8,0.7) 100%);
}
.hero-sweep{
  position:absolute;
  inset:0;
  background:linear-gradient(105deg,transparent 40%,rgba(201,168,76,0.04) 50%,transparent 60%);
  animation:heroSweep 6s ease-in-out infinite;
}
@keyframes heroSweep{
  0%{transform:translateX(-100%);}
  100%{transform:translateX(200%);}
}
.hero-content{
  position:relative;
  text-align:center;
  z-index:2;
  padding:0 20px;
  width:100%;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:clamp(11px,3vw,14px);
  color:var(--gold);
  letter-spacing:3px;
  margin-bottom:30px;
  opacity:0;
  animation:heroReveal 1s 2.2s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-eyebrow::before,.hero-eyebrow::after{
  content:'';
  width:30px;
  height:1px;
  background:var(--gold);
  opacity:0.5;
}
.hero-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(48px,12vw,160px);
  line-height:0.9;
  letter-spacing:2px;
  color:var(--white);
  margin-bottom:24px;
  overflow:hidden;
}
.hero-line{
  display:block;
  opacity:0;
  transform:translateY(110%);
  animation:heroLine 1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-line:nth-child(1){animation-delay:2.3s;}
.hero-line:nth-child(2){animation-delay:2.45s;color:var(--gold);}
.hero-line:nth-child(3){animation-delay:2.6s;}
@keyframes heroLine{to{opacity:1;transform:translateY(0);}}
.hero-sub{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(13px,4vw,18px);
  color:rgba(245,240,232,0.5);
  font-weight:300;
  letter-spacing:2px;
  margin-bottom:40px;
  font-style:italic;
  opacity:0;
  animation:heroReveal 1s 2.8s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes heroReveal{to{opacity:1;}}
.hero-btns{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  opacity:0;
  animation:heroReveal 1s 3s cubic-bezier(0.16,1,0.3,1) forwards;
}
.btn-gold{
  background:var(--gold);
  color:var(--black);
  padding:14px 28px;
  font-size:10px;
  font-weight:500;
  letter-spacing:2px;
  text-transform:uppercase;
  border:none;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  display:inline-block;
  transition:transform 0.3s;
}
.btn-gold::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.15);
  transform:translateX(-101%);
  transition:transform 0.4s cubic-bezier(0.76,0,0.24,1);
}
.btn-gold:hover::after{transform:translateX(0);}
.btn-gold:hover{transform:translateY(-2px);}
.btn-outline{
  background:transparent;
  color:var(--white);
  padding:14px 28px;
  font-size:10px;
  font-weight:500;
  letter-spacing:2px;
  text-transform:uppercase;
  border:1px solid rgba(245,240,232,0.2);
  text-decoration:none;
  display:inline-block;
  transition:all 0.4s;
}
.btn-outline:hover{border-color:var(--gold);color:var(--gold);transform:translateY(-2px);}
.hero-orb-1,.hero-orb-2{display:none;}
.scroll-indicator{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  opacity:0;
  animation:heroReveal 1s 3.5s forwards;
}
.scroll-indicator span{
  font-size:8px;
  letter-spacing:3px;
  color:rgba(245,240,232,0.3);
  text-transform:uppercase;
}
.scroll-line{
  width:1px;
  height:40px;
  background:linear-gradient(to bottom,rgba(201,168,76,0.8),transparent);
  animation:scrollPulse 2s ease infinite;
}
@keyframes scrollPulse{
  0%{transform:scaleY(0);transform-origin:top;opacity:1;}
  50%{transform:scaleY(1);transform-origin:top;opacity:1;}
  50.001%{transform:scaleY(1);transform-origin:bottom;}
  100%{transform:scaleY(0);transform-origin:bottom;opacity:0;}
}

/* ─── MARQUEE STRIP (FIXED OVERFLOW) ─── */
.marquee-strip{
  background:var(--gold);
  padding:12px 0;
  overflow:hidden;
  width:100%;
  position:relative;
}
.marquee-track{
  display:flex;
  gap:0;
  animation:marqueeScroll 20s linear infinite;
  white-space:nowrap;
  width:fit-content;
}
.marquee-item{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(10px,3vw,13px);
  letter-spacing:3px;
  color:var(--black);
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  gap:12px;
  white-space:nowrap;
}
.marquee-item::after{content:'✦';opacity:0.5;}
@keyframes marqueeScroll{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* ─── TRUSTED ─── */
.trusted{
  padding:40px 20px;
  background:var(--dark);
  border-bottom:1px solid rgba(201,168,76,0.06);
}
.trusted-label{
  text-align:center;
  font-size:9px;
  letter-spacing:4px;
  color:var(--gray);
  text-transform:uppercase;
  margin-bottom:32px;
}
.trusted-grid{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
}
.trusted-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  opacity:0.5;
  filter:grayscale(1);
  transition:all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.trusted-item i{font-size:20px;color:var(--gold);}
.trusted-item span{font-size:8px;letter-spacing:1px;color:var(--white);text-transform:uppercase;text-align:center;}

/* ─── SECTIONS COMMON (FIXED MOBILE PADDING) ─── */
section{padding:60px 20px;}
.section-tag{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:11px;
  letter-spacing:3px;
  color:var(--gold);
  margin-bottom:12px;
  display:block;
}
.section-title{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(36px,8vw,80px);
  letter-spacing:2px;
  color:var(--white);
  margin-bottom:16px;
  line-height:1;
}
.section-sub{
  font-size:13px;
  color:var(--gray2);
  font-weight:300;
  line-height:1.7;
  max-width:100%;
}
.gold-line{
  width:40px;
  height:1px;
  background:linear-gradient(to right,var(--gold),transparent);
  margin:20px 0;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal{opacity:0;transform:translateY(30px);transition:opacity 0.7s cubic-bezier(0.16,1,0.3,1),transform 0.7s cubic-bezier(0.16,1,0.3,1);}
.reveal.visible{opacity:1;transform:translateY(0);}
.reveal-left{opacity:0;transform:translateX(-20px);transition:opacity 0.7s cubic-bezier(0.16,1,0.3,1),transform 0.7s cubic-bezier(0.16,1,0.3,1);}
.reveal-left.visible{opacity:1;transform:translateX(0);}
.reveal-right{opacity:0;transform:translateX(20px);transition:opacity 0.7s cubic-bezier(0.16,1,0.3,1),transform 0.7s cubic-bezier(0.16,1,0.3,1);}
.reveal-right.visible{opacity:1;transform:translateX(0);}
.delay-1{transition-delay:0.1s;}
.delay-2{transition-delay:0.2s;}
.delay-3{transition-delay:0.3s;}

/* ─── SERVICES ─── */
.services{background:var(--black);}
.services-header{text-align:center;margin-bottom:50px;}
.services-header .section-sub{margin:0 auto;}
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1px;
  max-width:1200px;
  margin:0 auto;
  background:rgba(255,255,255,0.04);
}
.service-card{
  background:var(--black);
  padding:32px 24px;
  transition:all 0.5s cubic-bezier(0.16,1,0.3,1);
  position:relative;
  overflow:hidden;
}
.service-num{
  font-family:'Bebas Neue',sans-serif;
  font-size:10px;
  letter-spacing:3px;
  color:rgba(201,168,76,0.3);
  margin-bottom:24px;
}
.service-icon{font-size:24px;color:var(--gold);margin-bottom:16px;}
.service-card h3{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(22px,5vw,28px);
  letter-spacing:1px;
  color:var(--white);
  margin-bottom:10px;
}
.service-card p{font-size:12px;color:var(--gray2);line-height:1.7;}
.service-price{
  font-family:'Cormorant Garamond',serif;
  font-size:18px;
  color:var(--gold);
  margin-top:20px;
  letter-spacing:1px;
}
.service-arrow{display:none;}

/* ─── GALLERY ─── */
.gallery{background:var(--dark);padding:60px 20px;}
.gallery-header{text-align:center;margin-bottom:40px;}
.bento{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  max-width:100%;
  margin:0 auto;
}
.bento-item{
  overflow:hidden;
  position:relative;
  aspect-ratio:4/3;
}
.bento-item::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(8,8,8,0.6),transparent 50%);
  z-index:1;
}
.bento-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.75) saturate(0.9);
  transition:transform 0.6s cubic-bezier(0.16,1,0.3,1),filter 0.5s;
}
.bento-1,.bento-2,.bento-3,.bento-4{grid-column:span 1;}

/* ─── ABOUT (FIXED) ─── */
.about-section{background:var(--black);padding:60px 20px;}
.about{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
}
.about-img{position:relative;}
.about-img img{
  width:100%;
  height:auto;
  min-height:400px;
  object-fit:cover;
  filter:brightness(0.8) saturate(0.9);
  display:block;
}
.about-img-frame{display:none;}
.about-badge{
  position:absolute;
  bottom:20px;
  right:10px;
  background:var(--gold);
  color:var(--black);
  padding:16px 20px;
  text-align:center;
  box-shadow:0 20px 40px rgba(0,0,0,0.5);
}
.about-badge .num{
  font-family:'Bebas Neue',sans-serif;
  font-size:36px;
  line-height:1;
}
.about-badge .txt{
  font-size:8px;
  letter-spacing:1px;
  font-weight:500;
  margin-top:2px;
}
.about-content p{font-size:13px;color:var(--gray2);line-height:1.8;margin-bottom:16px;}

/* ─── STATS (FIXED MOBILE) ─── */
.stats{
  background:var(--dark);
  border-top:1px solid rgba(201,168,76,0.08);
  border-bottom:1px solid rgba(201,168,76,0.08);
  padding:0;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0;
  max-width:100%;
}
.stat-item{
  padding:40px 16px;
  text-align:center;
  position:relative;
  border-bottom:1px solid rgba(255,255,255,0.04);
}
.stat-item:nth-child(odd){border-right:1px solid rgba(255,255,255,0.04);}
.stat-num{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(48px,10vw,72px);
  color:var(--gold);
  line-height:1;
  letter-spacing:1px;
}
.stat-label{
  font-size:9px;
  letter-spacing:2px;
  color:var(--gray);
  text-transform:uppercase;
  margin-top:8px;
}

/* ─── TEAM (FIXED ASPECT RATIO) ─── */
.team{background:var(--black);}
.team-header{text-align:center;margin-bottom:50px;}
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:8px;
  max-width:1200px;
  margin:0 auto;
}
.team-card{
  position:relative;
  overflow:hidden;
  aspect-ratio:3/4;
}
.team-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.65) saturate(0.8);
  transition:transform 0.6s cubic-bezier(0.16,1,0.3,1),filter 0.6s;
}
.team-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:24px 20px;
  background:linear-gradient(to top,rgba(8,8,8,0.95) 0%,rgba(8,8,8,0.5) 60%,transparent 100%);
}
.team-name{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(22px,5vw,30px);
  letter-spacing:1px;
  color:var(--white);
}
.team-role{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:11px;
  color:var(--gold);
  margin-top:2px;
}
.team-socials{
  display:flex;
  gap:8px;
  margin-top:12px;
}
.team-socials a{
  width:28px;
  height:28px;
  border:1px solid rgba(201,168,76,0.35);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:10px;
  text-decoration:none;
  transition:all 0.3s;
}

/* ─── TESTIMONIALS ─── */
.testimonials{background:var(--dark);}
.test-header{text-align:center;margin-bottom:50px;}
.test-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:1px;
  background:rgba(255,255,255,0.04);
  max-width:100%;
  margin:0 auto;
}
.test-card{
  background:var(--dark);
  padding:32px 24px;
  transition:all 0.5s cubic-bezier(0.16,1,0.3,1);
  position:relative;
  overflow:hidden;
}
.test-stars{color:var(--gold);font-size:11px;letter-spacing:3px;margin-bottom:16px;}
.test-text{
  font-family:'Cormorant Garamond',serif;
  font-size:14px;
  color:rgba(245,240,232,0.75);
  line-height:1.7;
  font-style:italic;
  margin-bottom:24px;
}
.test-client{display:flex;align-items:center;gap:12px;}
.test-avatar{
  width:40px;
  height:40px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid rgba(201,168,76,0.3);
}
.test-name{font-size:12px;font-weight:500;color:var(--white);}
.test-location{font-size:10px;color:var(--gray);letter-spacing:1px;margin-top:2px;}

/* ─── PRICING (FIXED MOBILE) ─── */
.pricing{background:var(--black);}
.pricing-header{text-align:center;margin-bottom:50px;}
.pricing-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  max-width:100%;
  margin:0 auto;
}
.price-card{
  background:var(--black);
  padding:40px 24px;
  position:relative;
  transition:all 0.5s cubic-bezier(0.16,1,0.3,1);
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.05);
}
.price-card.featured{
  background:rgba(201,168,76,0.05);
  border:1px solid rgba(201,168,76,0.25);
}
.price-card.featured::after{
  content:'MOST POPULAR';
  position:absolute;
  top:-1px;
  left:50%;
  transform:translateX(-50%);
  background:var(--gold);
  color:var(--black);
  font-size:8px;
  font-weight:600;
  letter-spacing:2px;
  padding:4px 16px;
  white-space:nowrap;
}
.price-name{
  font-family:'Bebas Neue',sans-serif;
  font-size:26px;
  letter-spacing:2px;
  color:var(--white);
  margin-bottom:4px;
}
.price-desc{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:12px;
  color:var(--gray);
}
.price-amount{
  font-size:clamp(48px,10vw,60px);
  font-weight:300;
  color:var(--gold);
  line-height:1;
  margin:20px 0;
  font-family:'Cormorant Garamond',serif;
}
.price-amount sup{font-size:18px;vertical-align:top;margin-top:10px;}
.price-amount small{font-size:12px;color:var(--gray);}
.price-divider{width:100%;height:1px;background:rgba(255,255,255,0.05);margin:20px 0;}
.price-features{list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:30px;}
.price-features li{
  font-size:12px;
  color:rgba(245,240,232,0.65);
  display:flex;
  align-items:center;
  gap:10px;
}
.price-features li i{color:var(--gold);font-size:10px;}

/* ─── FAQ ─── */
.faq{background:var(--dark);}
.faq-header{text-align:center;margin-bottom:50px;}
.faq-container{max-width:100%;margin:0 auto;display:flex;flex-direction:column;gap:0;}
.faq-item{border-bottom:1px solid rgba(255,255,255,0.05);}
.faq-q{
  width:100%;
  background:transparent;
  border:none;
  color:var(--white);
  font-family:'DM Sans',sans-serif;
  font-size:14px;
  font-weight:400;
  padding:20px 0;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:color 0.3s;
}
.faq-q:hover,.faq-q.active{color:var(--gold);}
.faq-icon{
  width:26px;
  height:26px;
  border:1px solid rgba(201,168,76,0.3);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:all 0.4s;
  color:var(--gold);
  font-size:10px;
}
.faq-q.active .faq-icon{background:var(--gold);color:var(--black);transform:rotate(45deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height 0.5s cubic-bezier(0.16,1,0.3,1);}
.faq-a p{
  padding:0 0 20px;
  font-size:13px;
  color:var(--gray2);
  line-height:1.8;
  font-family:'Cormorant Garamond',serif;
}
.faq-a.open{max-height:250px;}

/* ─── BOOKING CTA (FIXED) ─── */
.booking-cta{
  position:relative;
  text-align:center;
  padding:80px 20px;
  overflow:hidden;
}
.booking-cta-bg{
  position:absolute;
  inset:0;
  background:url('https://images.unsplash.com/photo-1622286342621-4bd786c2447c?w=1920&q=80') center/cover no-repeat;
  filter:brightness(0.12) saturate(0.5);
  animation:ctaBgZoom 12s ease-in-out infinite alternate;
}
@keyframes ctaBgZoom{from{transform:scale(1);}to{transform:scale(1.05);}}
.booking-cta-glow{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:80%;
  height:80%;
  background:radial-gradient(circle,rgba(201,168,76,0.12) 0%,transparent 60%);
}
.particles{position:absolute;inset:0;overflow:hidden;display:none;}
.booking-cta-content{position:relative;z-index:2;}
.booking-cta h2{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(40px,10vw,120px);
  letter-spacing:2px;
  color:var(--white);
  line-height:1;
  margin-bottom:20px;
}
.booking-cta p{
  font-family:'Cormorant Garamond',serif;
  font-size:15px;
  color:rgba(245,240,232,0.45);
  margin-bottom:40px;
  letter-spacing:1px;
  font-style:italic;
}

/* ─── TEXT SCROLL (FIXED OVERFLOW) ─── */
.text-scroll-section{
  overflow:hidden;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,0.04);
  border-bottom:1px solid rgba(255,255,255,0.04);
  background:var(--black);
  width:100%;
}
.text-scroll-track{
  display:flex;
  gap:0;
  animation:textScrollAnim 25s linear infinite;
  width:fit-content;
}
.text-scroll-item{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(28px,8vw,80px);
  letter-spacing:2px;
  color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,0.1);
  white-space:nowrap;
  padding:0 20px;
  flex-shrink:0;
}
.text-scroll-item .highlight{
  color:var(--gold);
  -webkit-text-stroke:0;
}
@keyframes textScrollAnim{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* ─── MODAL SYSTEM (MOBILE FIXED) ─── */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 16px;
}
.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}
.modal-container {
  background: var(--dark);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.active .modal-container {
  transform: translateY(0);
}
.modal-header {
  padding: 20px 24px 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.modal-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold);
}
.modal-close {
  background: none;
  border: none;
  color: var(--gray2);
  font-size: 20px;
  transition: color 0.3s;
}
.modal-body {
  padding: 20px 24px 28px 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.service-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.service-option {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  color: var(--gray2);
}
.service-option.active {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
}
.price-preview {
  background: rgba(201, 168, 76, 0.08);
  padding: 12px 16px;
  margin: 16px 0 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.price-preview span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--gold);
}
.modal-btn {
  width: 100%;
  background: var(--gold);
  border: none;
  padding: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  transition: all 0.3s;
}
.success-message {
  text-align: center;
  padding: 30px 20px;
}
.success-message i {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}
.success-message p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 20px;
}

/* ─── FOOTER (FIXED MOBILE) ─── */
footer{
  background:var(--dark);
  border-top:1px solid rgba(201,168,76,0.08);
  padding:60px 20px 40px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  margin-bottom:50px;
}
.footer-logo{
  font-family:'Bebas Neue',sans-serif;
  font-size:30px;
  color:var(--gold);
  letter-spacing:4px;
  margin-bottom:16px;
  display:inline-block;
}
.footer-desc{
  font-size:12px;
  color:var(--gray);
  line-height:1.8;
  max-width:100%;
}
.footer-socials{
  display:flex;
  gap:12px;
  margin-top:20px;
  flex-wrap:wrap;
}
.footer-socials a{
  width:34px;
  height:34px;
  border:1px solid rgba(255,255,255,0.07);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gray);
  font-size:12px;
  text-decoration:none;
  transition:all 0.3s;
}
.footer-col h4{
  font-size:9px;
  letter-spacing:3px;
  color:var(--gold);
  text-transform:uppercase;
  margin-bottom:20px;
}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px;}
.footer-col ul li a{
  font-size:12px;
  color:var(--gray);
  text-decoration:none;
  transition:color 0.3s;
  display:inline-block;
}
.footer-col ul li{font-size:12px;color:var(--gray);line-height:1.7;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.04);
  padding-top:24px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
  text-align:center;
}
.footer-bottom p{font-size:10px;color:rgba(245,240,232,0.25);letter-spacing:1px;}
.footer-bottom span{
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:11px;
  color:var(--gold);
  letter-spacing:1px;
}

/* ─── TABLET AND UP ─── */
@media(min-width:768px){
  section{padding:80px 40px;}
  .trusted{padding:50px 40px;}
  .trusted-grid{gap:50px;}
  .bento{
    grid-template-columns:repeat(4,1fr);
    grid-template-rows:repeat(2,200px);
  }
  .bento-1{grid-column:span 2;grid-row:span 2;}
  .bento-4{grid-column:span 2;}
  .about{grid-template-columns:1fr 1fr;gap:60px;}
  .pricing-grid{grid-template-columns:repeat(3,1fr);gap:1px;}
  .test-grid{grid-template-columns:repeat(3,1fr);}
  .footer-grid{grid-template-columns:repeat(2,1fr);}
  .row-2{grid-template-columns:1fr 1fr;gap:16px;}
  .stats-grid{grid-template-columns:repeat(4,1fr);}
  .stat-item{border-right:1px solid rgba(255,255,255,0.04);border-bottom:none;}
  .stat-item:nth-child(odd){border-right:1px solid rgba(255,255,255,0.04);}
  .stat-item:last-child{border-right:none;}
}

@media(min-width:1024px){
  section{padding:100px 72px;}
  .trusted{padding:56px 72px;}
  .about{gap:100px;}
  .footer-grid{grid-template-columns:2.2fr 1fr 1fr 1fr;}
  .nav-links{display:flex;}
  .hamburger{display:none;}
  nav{padding:28px 72px;}
  nav.scrolled{padding:18px 72px;}
  .bento{grid-template-rows:repeat(2,280px);}
  .hero-orb-1,.hero-orb-2{display:block;}
  .particles{display:block;}
}
