/* ═══════════════════════════════════════════
   VANTA STUDIO — style.css
   Defined by MAQ | Design · Build · Transform
═══════════════════════════════════════════ */

:root {
  --gold:         #C6A46C;
  --gold-light:   #DFC28E;
  --gold-dark:    #A8843A;
  --gold-dim:     rgba(198,164,108,0.10);
  --gold-border:  rgba(198,164,108,0.25);
  --obsidian:     #0A0A0A;
  --obsidian-mid: #111111;
  --obsidian-soft:#181818;
  --text-muted:   #9CA3AF;
  --wa-green:     #25D366;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  background:var(--obsidian);
  color:#EAEAEA;
  font-family:'Poppins',sans-serif;
  overflow-x:hidden;
}
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--obsidian); }
::-webkit-scrollbar-thumb { background:var(--gold-dark); border-radius:10px; }

/* ── LOADER ── */
#loader {
  position:fixed; inset:0; z-index:9999;
  background:var(--obsidian);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  transition:opacity .6s ease, visibility .6s ease;
}
#loader.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.loader-ring { animation:lspin 1.4s linear infinite; }
@keyframes lspin { to { transform:rotate(360deg); } }
.loader-arc {
  stroke-dasharray:226;
  stroke-linecap:round;
  animation:larc 1.4s ease-in-out infinite;
}
@keyframes larc {
  0%,100%{ stroke-dashoffset:200; }
  50%    { stroke-dashoffset:30; }
}

/* ── HEADER ── */
#header {
  position:fixed; top:0; left:0; right:0; z-index:200;
  transition:background .4s, box-shadow .4s, border-color .4s;
  border-bottom:1px solid transparent;
}
#header.scrolled {
  background:rgba(10,10,10,0.96);
  backdrop-filter:blur(20px);
  border-color:var(--gold-border);
  box-shadow:0 4px 40px rgba(0,0,0,0.6);
}
.header-inner {
  max-width:1280px; margin:auto;
  padding:0 2.5rem;
  height:78px;
  display:flex; align-items:center; justify-content:space-between;
}

/* Logo */
.logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.logo-mark svg { width:36px; height:36px; }
.logo-text {
  font-family:'Cinzel',serif;
  font-size:1.15rem; letter-spacing:5px;
  color:var(--gold); transition:color .3s;
}
.logo:hover .logo-text { color:var(--gold-light); }

/* Nav */
.desktop-nav { display:flex; gap:2.5rem; }
.desktop-nav a {
  font-size:.68rem; letter-spacing:3px; text-transform:uppercase;
  color:var(--text-muted); text-decoration:none;
  position:relative; padding-bottom:3px; transition:color .3s;
}
.desktop-nav a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:1px; background:var(--gold);
  transition:width .3s ease;
}
.desktop-nav a:hover { color:var(--gold); }
.desktop-nav a:hover::after { width:100%; }

/* Buttons */
.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--gold); color:#000;
  font-weight:700; font-size:.82rem; letter-spacing:1px;
  padding:12px 26px; border-radius:6px;
  text-decoration:none; border:none; cursor:pointer;
  transition:transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s, filter .3s;
}
.btn-primary:hover {
  transform:scale(1.06);
  box-shadow:0 14px 36px rgba(198,164,108,.4);
  filter:brightness(1.1);
}
.btn-primary:active { transform:scale(.95); }

.btn-secondary {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:var(--gold);
  font-weight:700; font-size:.82rem; letter-spacing:1px;
  padding:11px 26px; border-radius:6px;
  border:1.5px solid var(--gold);
  text-decoration:none; cursor:pointer;
  transition:all .3s cubic-bezier(.34,1.56,.64,1);
}
.btn-secondary:hover {
  background:var(--gold); color:#000;
  transform:scale(1.06);
  box-shadow:0 14px 36px rgba(198,164,108,.35);
}

/* Hamburger */
.hamburger {
  display:none; flex-direction:column; gap:5px;
  padding:6px; cursor:pointer; background:none; border:none;
}
.hamburger span {
  display:block; width:22px; height:1.5px;
  background:var(--gold); border-radius:2px;
  transition:all .35s ease;
}
.hamburger.open span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
#mobileNav {
  display:none; background:rgba(10,10,10,.98);
  backdrop-filter:blur(20px);
  border-top:1px solid var(--gold-border);
  padding:1.5rem 2rem 2rem;
}
#mobileNav.open { display:block; animation:slideD .3s ease-out; }
@keyframes slideD {
  from{opacity:0;transform:translateY(-10px)}
  to{opacity:1;transform:translateY(0)}
}
#mobileNav a {
  display:block; font-size:.72rem; letter-spacing:4px; text-transform:uppercase;
  color:var(--text-muted); text-decoration:none;
  padding:13px 0; border-bottom:1px solid rgba(255,255,255,.05);
  transition:color .3s;
}
#mobileNav a:hover { color:var(--gold); }
#mobileNav .btn-primary { width:100%; justify-content:center; margin-top:1.2rem; }
@media(max-width:768px){
  .hamburger{display:flex;}
  .desktop-nav,.header-cta{display:none!important;}
}

/* ── TICKER ── */
.ticker-wrap { overflow:hidden; background:var(--gold); padding:9px 0; }
.ticker-track {
  display:flex; width:max-content;
  animation:ticker 35s linear infinite;
}
@keyframes ticker {
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.ticker-item {
  white-space:nowrap; font-size:.65rem;
  font-weight:700; letter-spacing:5px; color:#000;
  padding:0 2.5rem; text-transform:uppercase;
}
.ticker-dot { color:rgba(0,0,0,.35); font-size:.4rem; align-self:center; }

/* ── HERO ── */
.hero-section {
  position:relative; height:100vh; min-height:600px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.hero-bg { position:absolute; inset:0; animation:zoomBg 28s ease-in-out infinite alternate; }
@keyframes zoomBg { from{transform:scale(1)} to{transform:scale(1.1)} }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(10,10,10,.88) 0%,rgba(10,10,10,.5) 60%,rgba(10,10,10,.75) 100%);
  z-index:2;
}
.hero-grid {
  position:absolute; inset:0; z-index:3;
  background-image:
    linear-gradient(rgba(198,164,108,.03) 1px, transparent 1px),
    linear-gradient(90deg,rgba(198,164,108,.03) 1px, transparent 1px);
  background-size:90px 90px;
  pointer-events:none;
}
.hero-content {
  position:relative; z-index:4;
  text-align:center; max-width:820px; padding:0 1.5rem;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--gold-border); border-radius:100px;
  padding:8px 22px; margin-bottom:2rem;
  opacity:0; animation:fadeUp .8s .3s ease-out forwards;
}
.hero-badge-dot {
  width:6px; height:6px; border-radius:50%;
  background:var(--gold); animation:pdot 2s infinite;
}
@keyframes pdot{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(1.6)}}
.hero-badge-text {
  font-size:.62rem; letter-spacing:4px; color:rgba(198,164,108,.8); text-transform:uppercase;
}

.hero-title {
  font-family:'Cinzel',serif;
  font-size:clamp(3.5rem,10vw,7.5rem);
  font-weight:900; letter-spacing:10px; line-height:.9;
  color:#fff; margin-bottom:.4rem;
  opacity:0; animation:fadeUp .9s .5s ease-out forwards;
}
.hero-studio {
  display:block; font-size:clamp(1.4rem,4vw,3rem);
  letter-spacing:14px; margin-top:.4rem;
  background:linear-gradient(135deg,#C6A46C,#DFC28E,#A8843A,#C6A46C);
  background-size:300% auto;
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:shimT 5s linear infinite;
}
@keyframes shimT{ from{background-position:0% center} to{background-position:300% center} }

.hero-divider {
  width:60px; height:1px; background:var(--gold);
  margin:1.8rem auto;
  opacity:0; animation:fadeIn 1s .8s ease-out forwards;
}
.hero-desc {
  font-size:clamp(.88rem,2vw,1.05rem);
  color:rgba(255,255,255,.65); font-weight:300; line-height:1.9;
  max-width:560px; margin:0 auto 1rem;
  opacity:0; animation:fadeUp .8s .9s ease-out forwards;
}
.hero-subdesc {
  font-size:.78rem; color:rgba(198,164,108,.6);
  letter-spacing:1px; line-height:1.8;
  max-width:480px; margin:0 auto 2.5rem;
  font-style:italic;
  opacity:0; animation:fadeUp .8s 1s ease-out forwards;
}
.hero-ctas {
  display:flex; gap:1rem; justify-content:center; flex-wrap:wrap;
  opacity:0; animation:fadeUp .8s 1.1s ease-out forwards;
}

.scroll-hint {
  position:absolute; bottom:2rem; left:50%; transform:translateX(-50%);
  z-index:4; display:flex; flex-direction:column; align-items:center; gap:6px;
  opacity:0; animation:fadeIn 1s 1.8s ease-out forwards;
}
.scroll-hint span {
  font-size:.5rem; letter-spacing:4px;
  color:rgba(198,164,108,.4); text-transform:uppercase;
}
.scroll-line {
  width:1px; height:40px;
  background:linear-gradient(180deg,var(--gold),transparent);
  animation:spulse 2s ease-in-out infinite;
}
@keyframes spulse{0%,100%{opacity:.3}50%{opacity:1}}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from{opacity:0;transform:translateY(35px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.fade-up { opacity:0; transform:translateY(30px); transition:opacity .8s ease, transform .8s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }
.fade-up[data-delay="1"] { transition-delay:.1s; }
.fade-up[data-delay="2"] { transition-delay:.2s; }
.fade-up[data-delay="3"] { transition-delay:.3s; }
.fade-up[data-delay="4"] { transition-delay:.4s; }

/* ── SECTION BASE ── */
.section { padding:6rem 1.5rem; }
.section-inner { max-width:1280px; margin:auto; }
.section-label {
  display:inline-block; font-size:.6rem; letter-spacing:5px;
  color:var(--gold); text-transform:uppercase;
  margin-bottom:.8rem; border-left:2px solid var(--gold); padding-left:12px;
}
.section-title {
  font-family:'Cinzel',serif;
  font-size:clamp(1.7rem,4vw,2.8rem);
  letter-spacing:4px; color:var(--gold);
  text-transform:uppercase; margin-bottom:1.2rem;
}
.section-line {
  width:48px; height:1px; background:var(--gold); margin-bottom:1.5rem;
}
.section-center { text-align:center; }
.section-center .section-line { margin-left:auto; margin-right:auto; }

/* ── STATS BAR ── */
.stats-bar {
  background:var(--obsidian-mid);
  border-top:1px solid var(--gold-border);
  border-bottom:1px solid var(--gold-border);
  padding:3.5rem 1.5rem;
}
.stats-grid {
  max-width:1280px; margin:auto;
  display:grid; grid-template-columns:repeat(4,1fr); gap:2rem;
}
@media(max-width:640px){ .stats-grid{grid-template-columns:repeat(2,1fr);} }
.stat-item { text-align:center; }
.stat-num {
  font-family:'Cinzel',serif;
  font-size:clamp(2rem,5vw,3.5rem);
  font-weight:700; color:var(--gold); line-height:1;
}
.stat-suffix { color:var(--gold-dark); }
.stat-label {
  font-size:.6rem; letter-spacing:3px;
  color:var(--text-muted); text-transform:uppercase; margin-top:.5rem;
}

/* ── IMAGE PLACEHOLDER ── */
.img-ph {
  position:relative; background:var(--obsidian-soft);
  border:1px solid var(--gold-border); border-radius:12px;
  overflow:hidden; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:10px;
  transition:border-color .3s, box-shadow .3s;
}
.img-ph:hover {
  border-color:var(--gold);
  box-shadow:0 0 28px rgba(198,164,108,.12);
}
.img-ph-icon { font-size:2.2rem; color:var(--gold-dark); opacity:.65; }
.img-ph-label {
  font-size:.6rem; letter-spacing:2px;
  color:var(--gold-dark); text-transform:uppercase; text-align:center; padding:0 1rem;
}
.img-ph-size { font-size:.52rem; letter-spacing:1px; color:rgba(198,164,108,.3); }
.img-ph-corner {
  position:absolute; width:18px; height:18px;
  border-color:var(--gold); border-style:solid; opacity:.35;
}
.img-ph-corner.tl{top:8px;left:8px;border-width:1px 0 0 1px;}
.img-ph-corner.tr{top:8px;right:8px;border-width:1px 1px 0 0;}
.img-ph-corner.bl{bottom:8px;left:8px;border-width:0 0 1px 1px;}
.img-ph-corner.br{bottom:8px;right:8px;border-width:0 1px 1px 0;}

/* ── ABOUT ── */
.about-section { background:var(--obsidian-mid); }
.about-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:5rem; align-items:center;
}
@media(max-width:900px){ .about-grid{grid-template-columns:1fr;gap:3rem;} }
.about-img-wrap { position:relative; }
.about-img-main { width:100%; aspect-ratio:4/5; border-radius:16px; }
.about-badge {
  position:absolute; bottom:-18px; right:-18px;
  width:110px; height:110px; border-radius:50%;
  background:var(--gold);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  box-shadow:0 8px 30px rgba(198,164,108,.4);
}
.about-badge-num {
  font-family:'Cinzel',serif; font-size:1.9rem;
  font-weight:900; color:#000; line-height:1;
}
.about-badge-text {
  font-size:.45rem; letter-spacing:2px; color:rgba(0,0,0,.6); text-transform:uppercase;
}
.about-tagline {
  font-size:.9rem; color:rgba(198,164,108,.7);
  font-style:italic; margin-bottom:1.5rem; line-height:1.8;
}
.about-feature {
  display:flex; gap:1rem; margin-bottom:1.2rem;
}
.about-feature-icon {
  width:42px; height:42px; flex-shrink:0;
  border:1px solid var(--gold-border); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); font-size:.95rem;
  transition:background .3s, border-color .3s;
}
.about-feature:hover .about-feature-icon {
  background:var(--gold); color:#000; border-color:var(--gold);
}
.about-feature-h { font-size:.82rem; font-weight:600; color:#fff; margin-bottom:2px; }
.about-feature-p { font-size:.76rem; color:var(--text-muted); line-height:1.6; }

/* ── SERVICES ── */
.services-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:1.5rem; margin-top:4rem;
}
@media(max-width:1024px){ .services-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:540px){ .services-grid{grid-template-columns:1fr;} }

.service-card {
  background:var(--obsidian-soft); border:1px solid var(--gold-border);
  border-radius:16px; overflow:hidden; display:flex; flex-direction:column;
  transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.service-card:hover {
  transform:translateY(-7px);
  box-shadow:0 24px 60px rgba(198,164,108,.15);
  border-color:var(--gold);
}
.service-img { width:100%; aspect-ratio:4/3; border-radius:0; }
.service-body { padding:1.5rem; flex:1; }
.service-icon-wrap {
  width:44px; height:44px;
  border:1px solid var(--gold-border); border-radius:9px;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); font-size:1.1rem;
  margin-bottom:.9rem;
  transition:background .3s, border-color .3s, color .3s;
}
.service-card:hover .service-icon-wrap {
  background:var(--gold); color:#000; border-color:var(--gold);
}
.service-title {
  font-family:'Cinzel',serif; font-size:.88rem;
  letter-spacing:2px; color:#fff; margin-bottom:.5rem;
  transition:color .3s;
}
.service-card:hover .service-title { color:var(--gold); }
.service-desc { font-size:.76rem; color:var(--text-muted); line-height:1.8; }

/* ── WHY VANTA ── */
.why-section { background:var(--obsidian-mid); }
.why-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:2rem; margin-top:4rem;
}
@media(max-width:900px){ .why-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:540px){ .why-grid{grid-template-columns:1fr;} }
.why-card {
  padding:2rem 1.5rem; text-align:center;
  border:1px solid var(--gold-border); border-radius:14px;
  background:var(--obsidian-soft);
  transition:all .4s ease;
}
.why-card:hover {
  background:rgba(198,164,108,.06); border-color:var(--gold);
  transform:translateY(-5px);
}
.why-icon { font-size:2rem; color:var(--gold); margin-bottom:1rem; display:block; }
.why-title {
  font-family:'Cinzel',serif; font-size:.82rem;
  letter-spacing:2px; color:#fff; margin-bottom:.7rem;
}
.why-desc { font-size:.76rem; color:var(--text-muted); line-height:1.85; }

/* ── PORTFOLIO ── */
.portfolio-filter {
  display:flex; gap:.75rem; flex-wrap:wrap;
  justify-content:center; margin:2.5rem 0;
}
.filter-btn {
  font-size:.62rem; letter-spacing:3px; text-transform:uppercase;
  padding:9px 20px; border-radius:100px;
  border:1px solid var(--gold-border); background:transparent;
  color:var(--text-muted); cursor:pointer; transition:all .3s ease;
  font-family:'Poppins',sans-serif;
}
.filter-btn:hover,.filter-btn.active {
  background:var(--gold); color:#000; border-color:var(--gold);
}

.portfolio-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem;
}
@media(max-width:900px){ .portfolio-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:540px){ .portfolio-grid{grid-template-columns:1fr;} }

.portfolio-item {
  position:relative; border-radius:12px;
  overflow:hidden; aspect-ratio:1; cursor:pointer;
}
.portfolio-item .img-ph { border-radius:0; height:100%; border:none; }
.portfolio-overlay {
  position:absolute; inset:0;
  background:rgba(10,10,10,.85);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:10px;
  opacity:0; transition:opacity .4s ease; z-index:5;
}
.portfolio-item:hover .portfolio-overlay { opacity:1; }
.portfolio-overlay-cat {
  font-size:.55rem; letter-spacing:4px;
  color:rgba(255,255,255,.45); text-transform:uppercase;
}
.portfolio-overlay-title {
  font-family:'Cinzel',serif; font-size:.88rem;
  letter-spacing:2px; color:var(--gold); text-align:center; padding:0 1rem;
}
.portfolio-overlay-btn {
  font-size:.62rem; letter-spacing:2px; text-transform:uppercase;
  padding:8px 20px; border:1px solid var(--gold); border-radius:100px;
  color:var(--gold); background:transparent; cursor:pointer;
  transition:all .3s; text-decoration:none; display:inline-block;
}
.portfolio-overlay-btn:hover { background:var(--gold); color:#000; }

/* Lightbox */
#lightbox {
  position:fixed; inset:0; z-index:9000;
  background:rgba(0,0,0,.95);
  display:none; align-items:center; justify-content:center;
  flex-direction:column; gap:1.2rem;
}
#lightbox.open { display:flex; animation:fadeIn .3s ease; }
#lightboxContent { max-width:560px; width:90vw; border-radius:14px; overflow:hidden; }
#lightboxContent .img-ph { aspect-ratio:4/3; border-radius:0; border:none; height:auto; min-height:280px; }
#lightboxTitle {
  font-family:'Cinzel',serif; font-size:.85rem;
  letter-spacing:3px; color:var(--gold);
}
#lightboxClose {
  position:absolute; top:1.5rem; right:1.5rem;
  font-size:1.4rem; color:var(--gold);
  cursor:pointer; background:none; border:none; transition:transform .3s;
}
#lightboxClose:hover { transform:rotate(90deg) scale(1.2); }

/* ── PROCESS ── */
.process-section { background:var(--obsidian-mid); }
.process-list { max-width:700px; margin:4rem auto 0; }
.process-step {
  display:grid; grid-template-columns:64px 1fr;
  gap:2rem; padding-bottom:3rem; position:relative;
}
.process-step:not(:last-child)::after {
  content:''; position:absolute;
  left:31px; top:56px;
  width:1px; height:calc(100% - 28px);
  background:linear-gradient(180deg,var(--gold-border),transparent);
}
.process-num {
  width:52px; height:52px; flex-shrink:0; border-radius:50%;
  border:1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:'Cinzel',serif; font-size:1.1rem; font-weight:700;
  color:var(--gold); background:var(--obsidian-soft);
  position:relative; z-index:1;
  transition:all .4s ease;
}
.process-step:hover .process-num {
  background:var(--gold); color:#000;
  box-shadow:0 0 24px rgba(198,164,108,.4);
}
.process-content { padding-top:.7rem; }
.process-title {
  font-family:'Cinzel',serif; font-size:.95rem;
  letter-spacing:2px; color:var(--gold); margin-bottom:.6rem;
}
.process-desc { font-size:.78rem; color:var(--text-muted); line-height:1.9; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:2rem; margin-top:4rem;
}
@media(max-width:900px){ .testimonials-grid{grid-template-columns:1fr 1fr;} }
@media(max-width:540px){ .testimonials-grid{grid-template-columns:1fr;} }
.testimonial-card {
  background:var(--obsidian-soft); border:1px solid var(--gold-border);
  border-radius:16px; padding:2rem;
  transition:border-color .4s, transform .4s, box-shadow .4s;
}
.testimonial-card:hover {
  border-color:var(--gold); transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(198,164,108,.1);
}
.testimonial-quote {
  font-size:3rem; color:var(--gold); opacity:.2;
  font-family:Georgia,serif; line-height:1; margin-bottom:.5rem;
}
.testimonial-stars { display:flex; gap:3px; margin-bottom:1rem; }
.testimonial-stars i { color:var(--gold); font-size:.75rem; }
.testimonial-text {
  font-size:.8rem; color:#ccc; line-height:1.9;
  font-style:italic; margin-bottom:1.5rem;
}
.testimonial-author { font-size:.78rem; font-weight:600; color:var(--gold); }
.testimonial-loc { font-size:.68rem; color:var(--text-muted); margin-top:2px; }

/* ── SERVICE AREAS ── */
.areas-wrap {
  display:flex; flex-wrap:wrap;
  justify-content:center; gap:.75rem; margin-top:3rem;
}
.area-pill {
  display:inline-block; padding:10px 22px;
  border:1.5px solid var(--gold-border); border-radius:100px;
  font-size:.68rem; letter-spacing:2px; color:var(--gold);
  text-transform:uppercase; background:var(--gold-dim);
  transition:all .3s cubic-bezier(.34,1.56,.64,1); cursor:default;
}
.area-pill:hover {
  background:var(--gold); color:#000; border-color:var(--gold);
  transform:scale(1.08);
  box-shadow:0 8px 20px rgba(198,164,108,.25);
}

/* ── CTA ── */
.cta-section {
  background:linear-gradient(135deg,#0f0d09 0%,#1a1508 50%,#0f0d09 100%);
  border-top:1px solid var(--gold-border);
  border-bottom:1px solid var(--gold-border);
  padding:7rem 1.5rem; text-align:center; position:relative; overflow:hidden;
}
.cta-glow {
  position:absolute; width:700px; height:700px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(198,164,108,.07) 0%,transparent 70%);
  top:50%; left:50%; transform:translate(-50%,-50%);
  pointer-events:none;
}
.cta-title {
  font-family:'Cinzel',serif;
  font-size:clamp(1.8rem,4vw,3.2rem);
  letter-spacing:5px; color:var(--gold); margin-bottom:1.2rem;
}
.cta-sub {
  font-size:.95rem; color:var(--text-muted);
  max-width:480px; margin:0 auto 2.8rem; line-height:1.9;
}
.cta-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ── FOOTER ── */
footer { background:#000; border-top:1px solid var(--gold-border); padding:5rem 1.5rem 0; }
.footer-grid {
  max-width:1280px; margin:auto;
  display:grid; grid-template-columns:2fr 1fr 1fr;
  gap:4rem; margin-bottom:4rem;
}
@media(max-width:900px){ .footer-grid{grid-template-columns:1fr 1fr;gap:3rem;} }
@media(max-width:540px){ .footer-grid{grid-template-columns:1fr;gap:2rem;} }
.footer-logo-text {
  font-family:'Cinzel',serif; font-size:1.05rem;
  letter-spacing:5px; color:var(--gold); display:block; margin-bottom:1rem;
}
.footer-about { font-size:.76rem; color:var(--text-muted); line-height:1.9; max-width:280px; }
.footer-h {
  font-size:.6rem; letter-spacing:4px; color:var(--gold);
  text-transform:uppercase; margin-bottom:1.4rem; font-weight:700;
}
.footer-link {
  display:flex; align-items:center; gap:10px;
  font-size:.76rem; color:var(--text-muted); text-decoration:none;
  margin-bottom:.85rem; transition:color .3s;
}
.footer-link i { color:var(--gold); width:16px; font-size:.72rem; }
.footer-link:hover { color:var(--gold); }
.footer-social { display:flex; gap:.65rem; margin-top:.5rem; }
.social-ico {
  width:36px; height:36px; border:1px solid var(--gold-border);
  border-radius:8px; display:flex; align-items:center; justify-content:center;
  color:var(--text-muted); font-size:.82rem; text-decoration:none;
  transition:all .3s ease;
}
.social-ico:hover {
  background:var(--gold); color:#000; border-color:var(--gold);
  transform:translateY(-2px);
}

.footer-bottom {
  max-width:1280px; margin:auto;
  border-top:1px solid rgba(198,164,108,.1);
  padding:1.8rem 0;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem;
}
.footer-copy { font-size:.68rem; color:rgba(156,163,175,.45); letter-spacing:1px; }
.footer-maq { font-size:.62rem; letter-spacing:3px; color:rgba(198,164,108,.35); text-transform:uppercase; }
.footer-maq strong { color:var(--gold); }

/* Design Build Transform bar */
.dbt-bar {
  background:var(--obsidian-mid);
  border-top:1px solid var(--gold-border);
  padding:.9rem 1rem; text-align:center;
}
.dbt-text {
  font-size:.58rem; letter-spacing:8px; color:var(--gold);
  text-transform:uppercase; font-family:'Cinzel',serif;
}
.dbt-dot { color:var(--gold-dark); margin:0 1rem; font-size:.4rem; vertical-align:middle; }

/* ── FLOATING & MOBILE ── */
.wa-fab {
  position:fixed; bottom:2rem; right:2rem;
  width:56px; height:56px; border-radius:50%;
  background:var(--wa-green); color:#fff; font-size:1.4rem;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
  box-shadow:0 8px 28px rgba(37,211,102,.5); z-index:500;
  transition:transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.wa-fab:hover { transform:scale(1.15); box-shadow:0 12px 38px rgba(37,211,102,.6); }
@media(max-width:768px){ .wa-fab{bottom:5.5rem;right:1rem;width:50px;height:50px;font-size:1.3rem;} }

.mobile-bar {
  display:none; position:fixed; bottom:0; left:0; right:0; z-index:400;
  background:rgba(10,10,10,.97); border-top:1px solid var(--gold-border);
  padding:.7rem 1rem .9rem; gap:.7rem;
}
@media(max-width:768px){ .mobile-bar{display:flex;} body{padding-bottom:68px;} }
.mobile-bar a {
  flex:1; text-align:center; padding:12px;
  border-radius:8px; font-size:.76rem; font-weight:700;
  text-decoration:none; transition:all .3s;
  display:flex; align-items:center; justify-content:center; gap:6px;
}
.mb-wa { background:var(--wa-green); color:#fff; }
.mb-call { background:transparent; color:var(--gold); border:1.5px solid var(--gold); }
.mb-call:hover { background:var(--gold); color:#000; }