:root{
  --bg: #070707;
  --surface: rgba(255,255,255,0.04);
  --text: rgba(255,255,255,0.88);
  --muted: rgba(255,255,255,0.72);
  --radius: 18px;

  --silver-ink: #e8e8ea;
  --silver-mid: #b9bcc2;
  --silver-dark: #7b7f87;

  --silver-grad: linear-gradient(
    115deg,
    #f7f7f9 0%,
    #cfd2d9 18%,
    #ffffff 35%,
    #a9adb5 55%,
    #f5f5f7 75%,
    #8a8f98 100%
  );

  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif;
  --font-head: "Cambria Math", Cambria, "STIX Two Math", "Times New Roman", serif;

  /* Safety: if old code references --gold, it becomes silver */
  --gold: var(--silver-ink);
}

*{ box-sizing:border-box; margin:0; }
body{
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: 0.2px;
  line-height: 1.55;
}

a{ color: var(--silver-ink); text-decoration:none; }
a:hover{ opacity: 0.95; }

/* Shiny silver text utility */
.silver,
.accent,
.gold,
.nav-cta,
.btn,
.button{
  background: var(--silver-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 8px 22px rgba(0,0,0,0.55),
    0 0 18px rgba(255,255,255,0.06);
}

/* Buttons: keep readable */
.btn, .button, .nav-cta{
  color: #0b0b0b !important;
  background: var(--silver-grad) !important;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

/* Headings */
h1, h2, h3, .section-title, .hero-title{
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--silver-ink);
}

h1, .hero-title{
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  text-shadow:
    0 10px 30px rgba(0,0,0,0.55),
    0 0 24px rgba(255,255,255,0.08);
}

h2, .section-title{
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.18;
  margin-bottom: 12px;
}

p, li, .subtext{
  color: var(--muted);
  font-size: 1.03rem;
}

}

/* NAV */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,13,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}
.brand{
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-link{
  text-decoration:none;
  font-weight: 700;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.nav-link:hover{
  color: var(--gold);
  border-color: rgba(201,166,107,0.35);
}
.nav-link.is-active{
  color: var(--silver);
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}

/* HERO */
.hero{
  background: linear-gradient(180deg, var(--charcoal), var(--black));
  padding: 86px 20px 64px;
  border-bottom: 1px solid var(--border);
}
.hero-inner{ max-width: 1100px; margin: 0 auto; text-align:center; }
.kicker{
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 12px;
}
h1{
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  color: var(--gold);
  letter-spacing: .01em;
  line-height: 1.1;
}
.hero-sub{
  margin: 14px auto 0;
  max-width: 860px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}
.hero-cta{
  margin-top: 22px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-block;
  background: var(--gold);
  color: var(--black);
  text-decoration:none;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{ color: var(--black); filter: brightness(1.03); transform: translateY(-1px); }
.btn-outline{
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--border);
}
.btn-outline:hover{ color: var(--gold); filter:none; transform: translateY(-1px); }

/* PAGE HERO */
.page-hero{
  background: linear-gradient(180deg, var(--charcoal), var(--black));
  padding: 56px 20px 38px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner{ max-width: 1100px; margin: 0 auto; text-align:center; }

/* LAYOUT */
.section{ padding: 56px 20px; max-width: 1200px; margin: 0 auto; }
h2{ text-align:center; font-size: clamp(1.5rem, 2.2vw, 2rem); letter-spacing:.01em; }
.section-sub{
  margin: 10px auto 0;
  max-width: 860px;
  text-align:center;
  color: var(--muted);
  line-height: 1.7;
}
.center{ display:flex; justify-content:center; margin-top: 18px; }
.sep{ border:none; border-top:1px solid var(--border); margin:0; }

/* STAT BAR */
.statbar{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align:center;
}
.stat-num{ color: var(--gold); font-weight: 900; font-size: 1.05rem; }
.stat-label{ margin-top: 6px; color: var(--muted); line-height: 1.5; font-size: .92rem; }
@media (max-width: 900px){ .statbar{ grid-template-columns: 1fr; } }

/* GALLERY */
.gallery{
  margin-top: 24px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.gallery--tight{ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.gitem{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease;
}
.gitem:hover{ transform: translateY(-2px); border-color: rgba(201,166,107,0.35); }
.gitem img{ width:100%; height: 240px; object-fit: cover; display:block; }
@media (max-width: 900px){ .gitem img{ height: 210px; } }

/* SIMPLE CARDS */
.cards{
  margin-top: 24px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.card h3{ margin-top: 6px; font-size: 1.1rem; }
.card p{ margin-top: 8px; color: var(--muted); line-height: 1.7; }
@media (max-width: 900px){ .cards{ grid-template-columns: 1fr; } }

/* SERVICES LIST (image + content) */
.services{ margin-top: 24px; display:grid; gap: 16px; }
.svc{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
}
.svc-media img{ width:100%; height:100%; object-fit: cover; display:block; min-height: 220px; }
.svc-body{ padding: 16px; }
.svc-body h3{ margin-top: 4px; font-size: 1.2rem; }
.svc-body p{ margin-top: 8px; color: var(--muted); line-height: 1.7; }
@media (max-width: 900px){
  .svc{ grid-template-columns: 1fr; }
  .svc-media img{ min-height: 220px; }
}

/* BEFORE/AFTER */
.compare-wrap{ background: linear-gradient(180deg, var(--black), var(--charcoal)); }
.compare{
  position:relative;
  max-width: 980px;
  margin: 26px auto 0;
  height: 520px;
  overflow:hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.compare img{ width:100%; height:100%; object-fit:cover; display:block; }
.compare .after{ position:absolute; inset:0; }
.compare .before{ position:absolute; inset:0; width:50%; overflow:hidden; }
.slider{
  position:absolute;
  bottom: 16px;
  left:50%;
  transform: translateX(-50%);
  width: 84%;
  accent-color: var(--gold);
  z-index: 5;
}
.handle{
  position:absolute;
  top:0; bottom:0;
  left:50%;
  width:2px;
  background: rgba(255,255,255,0.75);
  transform: translateX(-1px);
  box-shadow: 0 0 0 8px rgba(201,166,107,0.14);
  z-index: 4;
  pointer-events:none;
}
.labels{
  display:flex;
  justify-content:space-between;
  max-width: 980px;
  margin: 10px auto 0;
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .10em;
  text-transform: uppercase;
}
@media (max-width: 900px){ .compare{ height: 420px; } }

/* CONTACT */
.contact-card{
  margin: 22px auto 0;
  max-width: 980px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.contact-item{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.contact-item a{ display:inline-block; margin-top: 8px; text-decoration:none; font-weight: 800; }
.contact-text{ margin-top: 8px; font-weight: 800; }
@media (max-width: 900px){ .contact-card{ grid-template-columns: 1fr; } }

/* FOOTER */
.footer{
  border-top: 1px solid var(--border);
  text-align:center;
  padding: 26px 16px;
  color: var(--muted);
  font-size: .9rem;
}

/* LIGHTBOX */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 999;
}
.lightbox.is-open{ display:flex; }
.lightbox-img{
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
}
.lightbox-close{
  position: fixed;
  top: 14px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--silver);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover{
  border-color: rgba(201,166,107,0.4);
  color: var(--gold);
}
/* ===== Global spacing + layout polish ===== */
:root{
  --bg: #0b0b0d;
  --panel: rgba(255,255,255,0.06);
  --text: rgba(255,255,255,0.86);
  --muted: rgba(255,255,255,0.68);
  --line: rgba(255,255,255,0.12);
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,0.55);
}

body{
  background: var(--bg);
  color: var(--text);
  margin: 0;
}

.container{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* ===== Top Bar / Logo ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10,10,12,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo{
  height: 54px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.65));
  transform: translateZ(0);
}

/* Logo “stand out” hover */
.brand:hover .brand-logo{
  transform: scale(1.03);
}

/* ===== Nav ===== */
.nav{
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link{
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.4px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.nav-link:hover{
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.95);
  transform: translateY(-1px);
}

.nav-cta{
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover{
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

/* ===== Section spacing ===== */
section{
  padding: 72px 0;
}

.section-title{
  margin: 0 0 14px;
}

.section-subtitle{
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 70ch;
}

/* Responsive topbar */
@media (max-width: 860px){
  .topbar-inner{ flex-direction: column; align-items: flex-start; }
  .nav{ flex-wrap: wrap; gap: 10px; }
  .brand-logo{ height: 46px; }
}
/* ===== Scroll-in animations ===== */
[data-animate]{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

[data-animate="fade"]{
  transform: translateY(0);
}

[data-animate="up"]{
  transform: translateY(16px);
}

[data-animate="left"]{
  transform: translateX(-18px);
}

[data-animate="right"]{
  transform: translateX(18px);
}

.in-view{
  opacity: 1;
  transform: translate(0,0);
}

/* Subtle hover lift for cards/images */
.hover-lift{
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.hover-lift:hover{
  transform: translateY(-3px);
  filter: brightness(1.03);
}
/* ===== LOGO HERO SECTION ===== */
.logo-hero{
  padding: 90px 0 70px;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.08),
    rgba(0,0,0,0.92) 65%
  );
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.logo-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BIG logo */
.hero-logo-xl{
  width: min(900px, 90vw);
  max-width: 100%;
  height: auto;

  /* Metallic depth */
  filter:
    drop-shadow(0 22px 45px rgba(0,0,0,0.75))
    drop-shadow(0 0 28px rgba(255,255,255,0.18));

  /* Animation */
  animation: logoFloat 6s ease-in-out infinite;
  transform-origin: center;
}

/* Subtle floating motion */
@keyframes logoFloat{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Subtle light sweep (metal shimmer) */
.hero-logo-xl::after{
  content: "";
}

/* Hover polish (desktop only) */
@media (hover:hover){
  .hero-logo-xl:hover{
    filter:
      drop-shadow(0 28px 60px rgba(0,0,0,0.85))
      drop-shadow(0 0 38px rgba(255,255,255,0.25));
    transform: scale(1.015);
  }
}

/* Mobile tuning */
@media (max-width: 768px){
  .logo-hero{
    padding: 60px 0 50px;
  }
  .hero-logo-xl{
    width: 92vw;
  }
}
/* ===== PREMIUM LOGO EFFECT: REVEAL + METAL SWEEP ===== */

.logo-sweep{
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 18px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
}

/* Big logo reveal */
.hero-logo-xl{
  width: min(980px, 92vw);
  height: auto;
  display: block;

  filter:
    drop-shadow(0 26px 60px rgba(0,0,0,0.85))
    drop-shadow(0 0 26px rgba(255,255,255,0.18));

  opacity: 0;
  transform: translateY(14px) scale(0.985);
  animation: logoIn 900ms ease-out forwards;
  animation-delay: 120ms;
}

/* Light sweep overlay */
.logo-sweep::after{
  content:"";
  position:absolute;
  top:-25%;
  left:-60%;
  width: 55%;
  height: 160%;

  background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.08) 25%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0.08) 75%,
    rgba(255,255,255,0) 100%
  );

  transform: rotate(12deg);
  filter: blur(1px);
  opacity: 0.9;

  animation: sweep 3.6s ease-in-out infinite;
  animation-delay: 1.1s;
  pointer-events:none;
}

/* Optional glow pulse behind logo */
.logo-sweep::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at center,
    rgba(255,255,255,0.14),
    rgba(255,255,255,0) 60%
  );
  opacity: 0.25;
  animation: glowPulse 5s ease-in-out infinite;
  pointer-events:none;
}

/* Animations */
@keyframes logoIn{
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sweep{
  0%   { left: -70%; opacity: 0.0; }
  10%  { opacity: 0.9; }
  50%  { left: 120%; opacity: 0.9; }
  60%  { opacity: 0.0; }
  100% { left: 120%; opacity: 0.0; }
}

@keyframes glowPulse{
  0%,100% { opacity: 0.18; }
  50%     { opacity: 0.32; }
}

/* Hover: more premium shine (desktop only) */
@media (hover:hover){
  .logo-sweep:hover::after{
    animation-duration: 2.4s;
  }
  .logo-sweep:hover{
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.03);
  }
}

/* ===== Layout helpers to reduce "empty" feel ===== */
.container{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.logo-center{
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap: 14px;
}

.logo-tagline{
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .9rem;
  margin-top: 6px;
}

/* More filled sections */
.section{
  padding: 64px 0;
}

/* Two-column split */
.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items:start;
}

@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; }
}

/* Premium panel cards */
.panel{
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.65);
  padding: 18px;
}

/* Bullet list */
.bullets{
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display:grid;
  gap: 10px;
}
.bullets li{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text);
}

/* Video styling */
.video-block{
  padding: 20px;
}
.service-video{
  width: 100%;
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 26px 70px rgba(0,0,0,0.75);
  display:block;
  background: #000;
}

/* Make headings/sections feel less sparse */
.section-subtitle{
  margin-top: 10px;
  line-height: 1.7;
  max-width: 75ch;
}

/* Optional: tighten large top padding if needed */
.logo-hero{
  padding: 68px 0 46px;
}
