/* ──────────────────────────────────────────────────────────
   SIGNALCRAFT — LUXURY DARK THEME
   ────────────────────────────────────────────────────────── */

:root {
  --bg:        #07090F;
  --bg2:       #0C1018;
  --bg3:       #111827;
  --bg4:       #161D2B;
  --gold:      #C9A44C;
  --gold2:     #E8C97A;
  --gold-dim:  rgba(201,164,76,0.15);
  --gold-b:    rgba(201,164,76,0.25);
  --white:     #F0F4FF;
  --muted:     rgba(240,244,255,0.55);
  --border:    rgba(240,244,255,0.07);
  --shadow:    0 20px 60px rgba(0,0,0,0.6);
  --tr:        0.38s cubic-bezier(.25,.46,.45,.94);
  --r:         14px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }
-webkit-tap-highlight-color: transparent;

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 80px);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.sec-label {
  display: block;
  font-size: .7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
.sec-header { margin-bottom: clamp(48px, 7vw, 80px); text-align: center; }
.sec-header.light { text-align: center; }
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto 0;
}
.gold-rule.cx { margin: 24px auto 0; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  transition: var(--tr);
  cursor: pointer;
}
.btn-lg { padding: 16px 36px; font-size: .88rem; }
.btn-gold {
  background: var(--gold);
  color: #080B12;
  box-shadow: 0 6px 28px rgba(201,164,76,.35);
}
.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,164,76,.45);
}
.btn-outline {
  background: rgba(255,255,255,.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-2px);
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--tr);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  transition: var(--tr);
}
.navbar.scrolled .nav-inner {
  padding: 14px 0;
}
.navbar.scrolled {
  background: rgba(7,9,15,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links li a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240,244,255,.75);
  transition: color .3s;
}
.nav-links li a:hover { color: var(--gold); }
.nav-phone {
  background: var(--gold) !important;
  color: #080B12 !important;
  padding: 10px 22px !important;
  border-radius: 99px !important;
  font-weight: 700 !important;
  letter-spacing: .5px !important;
  transition: var(--tr) !important;
}
.nav-phone:hover {
  background: var(--gold2) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,164,76,.4);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--tr);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,9,15,.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  transition: color .3s;
}
.mobile-overlay a:hover { color: var(--gold); }
.overlay-phone {
  background: var(--gold) !important;
  color: #080B12 !important;
  padding: 14px 32px !important;
  border-radius: 99px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: .9rem !important;
}
.overlay-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  will-change: transform;
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,9,15,.88) 0%,
    rgba(7,9,15,.72) 50%,
    rgba(7,9,15,.82) 100%
  );
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .04;
  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)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: flex; justify-content: center; }
.hero-content { max-width: 780px; width: 100%; text-align: center; }
.hero-actions { justify-content: center; }
.hero-trust { justify-content: center; }
.hero-sub { margin-left: auto; margin-right: auto; }
.hero-badge {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-b);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 99px;
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 620px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(240,244,255,.7);
  font-weight: 500;
  letter-spacing: .5px;
}
.trust-item i { color: var(--gold); font-size: .8rem; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(240,244,255,.3);
  font-size: .6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollpulse 2.2s ease infinite;
}
@keyframes scrollpulse {
  0%,100% { opacity:.3; transform:scaleY(.8); }
  50%      { opacity:1;  transform:scaleY(1.2); }
}

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 16px;
}
.stat-item + .stat-item { border-left: 1px solid var(--border); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  color: var(--gold);
}
.stat-lbl {
  display: block;
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .08s; }
.reveal:nth-child(6) { transition-delay: .16s; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--tr);
  position: relative;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .4s ease;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-b);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 40px var(--gold-dim);
}
.svc-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform .7s ease;
  filter: brightness(.85) saturate(1.1);
}
.svc-card:hover .svc-img { transform: scale(1.05); }
.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg3) 0%, transparent 60%);
}
.svc-body { padding: 28px 28px 32px; }
.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  opacity: .22;
  line-height: 1;
  margin-bottom: 12px;
}
.svc-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.svc-body p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 18px;
  line-height: 1.75;
}
.svc-list {
  margin-bottom: 22px;
}
.svc-list li {
  padding: 5px 0 5px 20px;
  font-size: .84rem;
  color: rgba(240,244,255,.65);
  position: relative;
  line-height: 1.5;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .3s;
}
.svc-link:hover { gap: 14px; }

/* ── CTA STRIP ────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(52px, 7vw, 80px) 0;
}
.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 6px;
}
.cta-text p { color: var(--muted); font-size: 1rem; }

/* ── WHY US ───────────────────────────────────────────────── */
.why-us {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--bg2);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 32px;
  text-align: center;
  transition: var(--tr);
}
.why-card:hover {
  border-color: var(--gold-b);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-b);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--tr);
}
.why-card:hover .why-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.why-icon i {
  font-size: 1.6rem;
  color: var(--gold);
  transition: color .3s;
}
.why-card:hover .why-icon i { color: #080B12; }
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.why-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── PROJECTS ─────────────────────────────────────────────── */
.projects {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--bg);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.proj-card {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 16/10;
}
.proj-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease, filter .4s ease;
  filter: brightness(.75) saturate(1.1);
}
.proj-card:hover .proj-img {
  transform: scale(1.06);
  filter: brightness(.55) saturate(1.3);
}
.proj-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(to top, rgba(7,9,15,.85) 0%, transparent 60%);
}
.proj-tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-b);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 99px;
  font-size: .62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  align-self: flex-start;
}
.proj-overlay h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.proj-overlay p {
  font-size: .85rem;
  color: rgba(240,244,255,.75);
  margin-bottom: 12px;
}
.proj-hint {
  font-size: .68rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity .4s;
}
.proj-card:hover .proj-hint { opacity: 1; }

/* Image Popup */
.img-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}
.img-popup.active { display: flex; }
.popup-wrap {
  position: relative;
  max-width: 92%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-wrap img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.popup-close {
  position: absolute;
  top: -56px; right: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 2.4rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: var(--tr);
}
.popup-close:hover { background: rgba(255,255,255,.16); transform: rotate(90deg); }
.popup-nav {
  position: absolute;
  width: calc(100% + 120px);
  left: -60px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.popup-prev, .popup-next {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-size: 2.5rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: var(--tr);
  line-height: 1;
}
.popup-prev:hover, .popup-next:hover { background: rgba(255,255,255,.18); transform: scale(1.1); }
.popup-nav.show-nav .popup-prev,
.popup-nav.show-nav .popup-next { display: flex; }
.popup-counter {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: .85rem;
  background: rgba(0,0,0,.4);
  padding: 6px 16px;
  border-radius: 20px;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--bg2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 36px;
  margin-top: 20px;
  line-height: 1.85;
  max-width: 460px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--tr);
  color: var(--white);
}
.contact-item:hover {
  border-color: var(--gold-b);
  transform: translateX(6px);
}
.contact-ico {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-ico i { color: var(--gold); font-size: .95rem; }
.contact-detail strong {
  display: block;
  font-size: .78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
  font-weight: 600;
}
.contact-detail span {
  font-size: .92rem;
  color: rgba(240,244,255,.8);
}
.contact-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 32px;
}
.contact-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 28px;
  filter: brightness(.9) saturate(1.1);
}
.contact-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-box > p {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 24px;
  line-height: 1.75;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.cta-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 12px;
  transition: var(--tr);
  font-size: .9rem;
}
.cta-btn i { font-size: 1.4rem; flex-shrink: 0; }
.cta-btn > div { display: flex; flex-direction: column; gap: 2px; }
.cta-btn strong { font-size: 1rem; font-weight: 600; }
.cta-btn span { font-size: .82rem; opacity: .8; }
.cta-text-btn {
  background: var(--gold-dim);
  border: 1px solid var(--gold-b);
  color: var(--white);
}
.cta-text-btn i { color: var(--gold); }
.cta-text-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #080B12;
  transform: translateY(-2px);
}
.cta-text-btn:hover i { color: #080B12; }
.cta-call-btn {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #080B12;
}
.cta-call-btn i { color: #080B12; }
.cta-call-btn:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,164,76,.4);
}
.text-tips {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
}
.tips-title {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.text-tips ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.text-tips li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: var(--muted);
}
.text-tips li i { color: var(--gold); font-size: .75rem; }
.response-note {
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #040507;
  border-top: 1px solid var(--border);
  padding: clamp(52px, 7vw, 80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  filter: brightness(1.1);
}
.footer-tagline {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #080B12;
  padding: 10px 22px;
  border-radius: 99px;
  font-weight: 700;
  font-size: .85rem;
  transition: var(--tr);
}
.footer-phone:hover { background: var(--gold2); transform: translateY(-1px); }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: .5px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col li a {
  font-size: .85rem;
  color: var(--muted);
  transition: color .3s;
}
.footer-col li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  text-align: center;
  color: rgba(240,244,255,.25);
  font-size: .75rem;
  letter-spacing: .5px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .stat-item + .stat-item:nth-child(odd) { border-left: none; }
  .stat-item { padding: 20px 12px; border-bottom: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 16px; }
  .popup-nav { width: 100%; left: 0; }
  .popup-prev, .popup-next { width: 44px; height: 44px; font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .btn-lg { padding: 14px 28px; }
  .svc-body { padding: 22px 20px 26px; }
  .contact-box { padding: 26px 20px; }
  .proj-card { aspect-ratio: 4/3; }
}

/* ── GOOGLE REVIEWS ───────────────────────────────────────── */
.reviews {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--bg);
}
.rev-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 16px 0 0;
  font-size: 1.4rem;
  color: var(--gold);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--tr);
}
.review-card:hover {
  border-color: var(--gold-b);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.review-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: .9rem;
}
.review-text {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #080B12;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: .9rem;
  color: var(--white);
  font-weight: 600;
}
.review-author span {
  font-size: .78rem;
  color: var(--muted);
}
.reviews-cta {
  text-align: center;
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ── LEAD FORM ────────────────────────────────────────────── */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: .9rem;
  font-family: inherit;
  width: 100%;
  transition: border-color .3s, box-shadow .3s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A44C' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,244,255,.3); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: .9rem;
}
.form-submit:disabled { opacity: .65; cursor: not-allowed; transform: none !important; }
.form-success,
.form-error {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 10px;
  font-size: .9rem;
}
.form-success {
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.3);
  color: #4ade80;
}
.form-success i { font-size: 1.4rem; flex-shrink: 0; }
.form-success strong { display: block; margin-bottom: 2px; }
.form-success span { font-size: .84rem; opacity: .8; }
.form-error {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.25);
  color: #f87171;
}
.form-error a { color: var(--gold); text-decoration: underline; }
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ── STICKY CALL BUTTON (mobile) ─────────────────────────── */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 950;
  background: var(--gold);
  color: #080B12;
  font-weight: 700;
  font-size: .92rem;
  padding: 15px 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: .5px;
  box-shadow: 0 -4px 20px rgba(201,164,76,.3);
  transition: background .3s;
}
.sticky-call:hover { background: var(--gold2); }
.sticky-call i { font-size: 1rem; }
@media (max-width: 768px) {
  .sticky-call { display: flex; }
  body { padding-bottom: 56px; }
}
