/* ============================================================
   GLX HANDYMAN — Global Styles
   Direction: Bold Challenger × Industrial Craft
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:        #090909;
  --surface:      #111111;
  --surface-2:    #1A1A1A;
  --accent:       #C9A84C;
  --accent-bright:#E0C068;
  --accent-dim:   rgba(201,168,76,0.12);
  --accent-glow:  rgba(201,168,76,0.25);
  --silver:       #A8A8A8;
  --silver-dim:   #6B6B6B;
  --text:         #F0EDED;
  --text-dim:     #9A9A9A;
  --text-muted:   #555555;
  --border:       #222222;
  --border-light: #333333;
  --white:        #FAFAFA;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Outfit', sans-serif;

  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1300px;
  --gap:         clamp(16px, 2.5vw, 36px);

  --ease:        cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur:         0.45s;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Page Load Veil ────────────────────────────────────────── */
.page-veil {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  transform-origin: top;
  animation: veilLift 0.8s var(--ease-out) 0.15s forwards;
}
@keyframes veilLift {
  to { transform: scaleY(0); }
}

/* ── Noise Overlay ─────────────────────────────────────────── */
body::after {
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.55;
}

/* ── Custom Cursor ─────────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  transition: transform 0.1s var(--ease), opacity 0.3s;
}
.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  transition: transform 0.18s var(--ease), width 0.3s var(--spring), height 0.3s var(--spring), opacity 0.3s;
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

/* ── Typography ────────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: var(--text);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.94;
  letter-spacing: 0.01em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 0.97;
  letter-spacing: 0.02em;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 40px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.body-lg { font-size: clamp(17px, 1.5vw, 20px); font-weight: 300; line-height: 1.7; color: var(--text-dim); }
.body-md { font-size: clamp(15px, 1.2vw, 17px); font-weight: 300; line-height: 1.65; color: var(--text-dim); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.35s var(--ease-out);
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { gap: 18px; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 100%);
  color: var(--black);
}
.btn-primary::before { background: var(--white); }
.btn-primary:hover { color: var(--black); }

.btn-outline {
  border: 1px solid var(--border-light);
  color: var(--text);
}
.btn-outline::before { background: var(--accent); }
.btn-outline:hover { border-color: var(--accent); color: var(--black); }

.btn-icon {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  flex-shrink: 0;
}
.btn-icon::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-right: 5px solid currentColor;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  width: 0; height: 0;
  border-left: none;
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: padding var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9,9,9,0.96);
  backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--text);
}
.nav-logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  transition: color var(--dur);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--dur) var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--text); }
.nav-link.active::after { width: 100%; }

.nav-cta { font-size: 11px; padding: 12px 24px; }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.nav-mobile-menu.open {
  display: flex;
  opacity: 1;
}
.nav-mobile-menu .nav-link {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.05em;
  color: var(--text);
}
.nav-mobile-menu .nav-link::after { bottom: -6px; height: 2px; }

/* ── Divider ───────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}
.divider-accent {
  background: linear-gradient(to right, var(--accent), transparent);
  height: 1px;
  width: 80px;
  margin: 16px 0 32px;
}

/* ── Section Labels ────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Ticker ────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(90deg, #A8862A 0%, var(--accent) 30%, var(--accent-bright) 50%, var(--accent) 70%, #A8862A 100%);
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 60px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--black);
  white-space: nowrap;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  padding: 32px 48px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  color: var(--text);
  letter-spacing: 0.02em;
}
.stat-num span { color: var(--accent); }
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ── Service Grid ──────────────────────────────────────────── */
.service-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 32px;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  position: relative;
}
.service-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.5s var(--ease-out);
}
.service-item:hover::after { width: 100%; }
.service-item:hover .service-title { color: var(--accent); }
.service-item:hover .service-arrow { transform: translateX(8px); color: var(--accent); }

.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.service-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  letter-spacing: 0.03em;
  color: var(--text);
  transition: color var(--dur) var(--ease);
}
.service-arrow {
  font-size: 24px;
  color: var(--text-muted);
  transition: all var(--dur) var(--ease);
}

/* ── Before/After Slider ───────────────────────────────────── */
.ba-slider {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  border: 1px solid var(--border);
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent);
  transform: translateX(-50%);
  z-index: 10;
}
.ba-handle::before, .ba-handle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  border-radius: 50%;
}
.ba-handle::before {
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-labels {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 11;
  pointer-events: none;
}
.ba-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(0,0,0,0.7);
  color: var(--text);
  backdrop-filter: blur(8px);
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial-item {
  padding: 52px;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color var(--dur) var(--ease);
}
.testimonial-item:hover { border-color: var(--border-light); }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.testimonial-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  position: absolute;
  top: 32px;
  right: 36px;
  opacity: 0.25;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.testimonial-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.05em;
}
.stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* ── CTA Band ──────────────────────────────────────────────── */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 48px;
  align-items: start;
}
.footer-logo-main {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.05em;
  color: var(--text);
}
.footer-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 8px;
}
.footer-logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 220px;
  line-height: 1.6;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 14px;
  color: var(--text-dim);
  transition: color var(--dur) var(--ease);
}
.footer-link:hover { color: var(--text); }
.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-input, .form-select, .form-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  background: var(--surface-2);
}
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 140px; }

/* ── Service Page Cards ────────────────────────────────────── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 2px;
  transition: border-color var(--dur) var(--ease);
}
.service-block:hover { border-color: var(--border-light); }
.service-block-content {
  padding: 56px;
  border-right: 1px solid var(--border);
}
.service-block-visual {
  background: var(--surface);
  min-height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-block-icon {
  font-size: 80px;
  opacity: 0.08;
  position: absolute;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--text);
}
.service-block-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity var(--dur) var(--ease), transform 0.6s var(--ease);
}
.service-block:hover .service-block-img {
  opacity: 0.8;
  transform: scale(1.03);
}

/* ── About Page ────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 8px;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--black), 0 0 0 4px var(--accent);
}
.timeline-year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.timeline-text {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ── Process Steps ─────────────────────────────────────────── */
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.process-num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  letter-spacing: -0.02em;
}
.process-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 12px;
}
.process-text {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 480px;
}

/* ── Gallery Grid ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
  opacity: 0.75;
}
.gallery-item:hover img { transform: scale(1.05); opacity: 1; }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--dur) var(--ease);
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

/* ── Image Placeholder ─────────────────────────────────────── */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px dashed var(--border);
  text-align: center;
  padding: 20px;
}
.img-placeholder svg { opacity: 0.3; }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding-top: 160px;
  padding-bottom: var(--section-pad);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Accent Card ───────────────────────────────────────────── */
.accent-band {
  background: var(--accent);
  padding: 24px 36px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.accent-band-text {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--black);
  letter-spacing: 0.05em;
}

/* ── Mobile Animations ────────────────────────────────────── */
@keyframes mobileSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mobileFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes mobileSlideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes mobileScaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 24px; }
  .service-block { grid-template-columns: 1fr; }
  .service-block-content { border-right: none; border-bottom: 1px solid var(--border); padding: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* ── Nav Mobile ── */
  .nav { padding: 16px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; min-height: 44px; min-width: 44px; justify-content: center; align-items: center; }
  .nav-logo-img { width: 36px; height: 36px; }
  .nav-logo-main { font-size: 22px; }
  .nav-logo-sub { font-size: 8px; letter-spacing: 0.2em; }
  .nav-logo { gap: 8px; }

  /* ── Mobile Menu Overhaul ── */
  .nav-mobile-menu {
    padding: 100px 32px 60px;
    gap: 0;
    justify-content: flex-start;
  }
  .nav-mobile-menu .nav-link {
    font-size: 42px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-align: left;
    opacity: 0;
    transform: translateX(-20px);
    min-height: 64px;
    display: flex;
    align-items: center;
  }
  .nav-mobile-menu.open .nav-link {
    animation: mobileSlideInLeft 0.5s var(--ease-out) forwards;
  }
  .nav-mobile-menu.open .nav-link:nth-child(1) { animation-delay: 0.1s; }
  .nav-mobile-menu.open .nav-link:nth-child(2) { animation-delay: 0.18s; }
  .nav-mobile-menu.open .nav-link:nth-child(3) { animation-delay: 0.26s; }
  .nav-mobile-menu.open .nav-link:nth-child(4) { animation-delay: 0.34s; }
  .nav-mobile-menu.open .btn {
    opacity: 0;
    animation: mobileSlideUp 0.5s var(--ease-out) 0.45s forwards;
    min-height: 52px;
  }

  /* ── Container ── */
  .container { padding-inline: 20px; }

  /* ── Typography ── */
  .display-xl { font-size: clamp(40px, 12vw, 56px); }
  .display-lg { font-size: clamp(32px, 8vw, 42px); }
  .display-md { font-size: clamp(26px, 6vw, 32px); }
  .display-sm { font-size: clamp(20px, 5vw, 24px); }

  /* ── Gradient Orbs — Mobile Performance ── */
  .gradient-orb {
    display: none;
  }
  .floating-line, .floating-cross {
    display: none;
  }
  /* Keep one subtle orb per major section on tablet+ */
  .hero .gradient-orb:first-of-type {
    display: block;
    width: 250px !important;
    height: 250px !important;
    filter: blur(80px);
    opacity: 0.6;
  }

  /* ── Section Mesh — Simplified for mobile ── */
  .section-mesh::before {
    opacity: 0.5;
  }

  /* ── Stats ── */
  .stats-bar { padding: 40px 0; }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .stat-item {
    border-right: 1px solid var(--border);
    border-bottom: none;
    padding: 16px 12px;
    text-align: center;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-size: clamp(28px, 7vw, 40px); }
  .stat-label { font-size: 9px; letter-spacing: 0.1em; margin-top: 4px; }

  /* ── Services ── */
  .service-item {
    grid-template-columns: 32px 1fr auto;
    gap: 12px;
    padding: 24px 0;
    min-height: 60px;
  }
  .service-num { font-size: 11px; }
  .service-title { font-size: clamp(18px, 4.5vw, 24px); }
  .service-arrow { font-size: 18px; }
  .service-item:hover { padding-left: 0; } /* Disable padding shift on mobile */

  /* ── Bento Grid Mobile ── */
  .services-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    gap: 3px;
  }
  .bento-lg { grid-row: span 1; }
  .bento-wide { grid-column: span 2; }
  .bento-content { padding: 16px; }
  .bento-title { font-size: 16px; }
  .bento-num { font-size: 10px; margin-bottom: 4px; }
  .bento-arrow { display: none; }
  .bento-card img { opacity: 0.55; }
  .bento-card::before {
    background: linear-gradient(to top, rgba(9,9,9,0.95) 0%, rgba(9,9,9,0.4) 50%, transparent 80%);
  }

  /* ── Gallery ── */
  .gallery-grid { grid-template-columns: 1fr; }

  /* ── Testimonials ── */
  .testimonial-item {
    padding: 28px 24px;
    border: 1px solid var(--border);
  }
  .testimonial-mark { font-size: 48px; top: 16px; right: 20px; }
  .testimonial-quote { font-size: clamp(15px, 3.8vw, 18px); margin-bottom: 20px; }

  /* ── Process ── */
  .process-step { grid-template-columns: 1fr; gap: 16px; }
  .process-num { font-size: 48px; }

  /* ── How It Works Mobile ── */
  .hiw-step:hover { background: transparent; }
  .hiw-connector { display: none; }

  /* ── CTA Mobile ── */
  .cta-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    text-align: center;
  }
  .cta-inner > div { text-align: center !important; }
  .cta-inner .btn { width: 100%; justify-content: center; }
  .cta-phone { font-size: clamp(24px, 7vw, 36px); }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-logo-img { width: 48px; height: 48px; }
  .footer-logo-main { font-size: 28px; }
  .footer-tagline { font-size: 12px; margin-top: 8px; }
  .footer-col-title { margin-bottom: 12px; }
  .footer-link { font-size: 14px; min-height: 36px; display: flex; align-items: center; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 32px;
    padding-top: 20px;
  }

  /* ── Service Blocks (services page) ── */
  .service-block-content { padding: 28px 20px; }
  .service-block-visual { min-height: 200px; }

  /* ── Section spacing ── */
  :root { --section-pad: clamp(48px, 8vw, 80px); }
  .section-label { margin-bottom: 28px; }
  .divider-accent { margin: 12px 0 20px; }

  /* ── Page Hero ── */
  .page-hero { padding-top: 120px; padding-bottom: clamp(40px, 8vw, 80px); }

  /* ── Buttons — Touch Targets ── */
  .btn { min-height: 48px; padding: 14px 28px; font-size: 12px; }

  /* ── Before/After Mobile ── */
  .ba-container { padding: 2px; }
  .ba-wrapper { gap: 16px; }

  /* ── Featured Work Header ── */
  .featured-header { gap: 16px; margin-bottom: 32px; }

  /* ── Chatbot Adjustments ── */
  .chatbot-toggle { width: 52px; height: 52px; }
  .chatbot-window { max-height: 420px; }

  /* ── Scroll Progress — thinner on mobile ── */
  .scroll-progress { height: 2px; }

  /* ── Card Glow — Disable on mobile to save GPU ── */
  .card-glow:hover {
    box-shadow: none;
    transform: none;
  }

  /* ── Prevent horizontal overflow from any absolutely positioned elements ── */
  section, .hero, .testi-carousel, .featured-work, .services-preview, .how-it-works, .cta-section {
    overflow-x: clip;
  }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 12px 8px; }
  .stat-num { font-size: clamp(24px, 6vw, 32px); }
  .stat-label { font-size: 8px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .testimonial-item { padding: 24px 18px; }

  .btn { padding: 14px 24px; font-size: 12px; min-height: 48px; }

  /* ── Bento Single Column on Small Phone ── */
  .services-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }
  .bento-wide { grid-column: span 1; }
  .bento-content { padding: 14px 16px; }
  .bento-title { font-size: 18px; }

  /* ── CTA Section Tighter ── */
  .cta-section { padding: clamp(40px, 8vw, 60px) 0; }

  /* ── Services Page Value Row ── */
  .services-value-row { grid-template-columns: 1fr 1fr; }

  /* ── Mobile Menu Font Size ── */
  .nav-mobile-menu .nav-link { font-size: 36px; }

  /* ── Hero — Cap height so user isn't stuck scrolling forever ── */
  .hero { min-height: auto; }
  .hero-content { padding-top: 100px; padding-bottom: 40px; }
  .hero-visual { max-height: 280px; }

  /* ── Chatbot — Full width on small screens ── */
  .chatbot-window {
    right: 8px;
    left: 8px;
    bottom: 72px;
    width: auto;
    max-height: 65vh;
  }
  .chatbot-toggle { bottom: 16px; right: 16px; width: 48px; height: 48px; }

  /* ── Tighter section padding on small phones ── */
  .testi-carousel { padding: 40px 16px; }
  .how-it-works { padding: 48px 0; }
  .hiw-grid { gap: 32px; }

  /* ── Before/After — Tighter on mobile ── */
  .ba-slider { aspect-ratio: 3/2 !important; }

  /* ── Service blocks on services page — Tighter ── */
  .sfb-content { padding: 24px 20px !important; }
  .sfb-visual { min-height: 180px !important; }
  .sfb-tags { gap: 4px; }
  .sfb-tag { font-size: 9px; padding: 4px 8px; }
}

/* ── Chatbot Widget ───────────────────────────────────────── */
.chatbot-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #A8862A 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
  transition: transform 0.3s var(--spring), box-shadow 0.3s;
}
.chatbot-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(201,168,76,0.45);
}
.chatbot-toggle svg { width: 24px; height: 24px; fill: var(--black); }
.chatbot-toggle .chat-close { display: none; }
.chatbot-toggle.open .chat-open { display: none; }
.chatbot-toggle.open .chat-close { display: block; }

.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 8999;
  width: 360px;
  max-height: 480px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}
.chatbot-window.open { display: flex; }

.chatbot-header {
  background: linear-gradient(135deg, var(--accent) 0%, #A8862A 100%);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-header-dot {
  width: 10px;
  height: 10px;
  background: #2ECC71;
  border-radius: 50%;
  flex-shrink: 0;
}
.chatbot-header-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.03em;
}
.chatbot-header-sub {
  font-size: 11px;
  color: rgba(0,0,0,0.5);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  max-height: 320px;
}

.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
}
.chat-msg.bot {
  background: var(--surface-2);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-radius: 0 12px 12px 12px;
}
.chat-msg.user {
  background: var(--accent);
  color: var(--black);
  align-self: flex-end;
  border-radius: 12px 0 12px 12px;
  font-weight: 500;
}

.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 16px;
}
.chatbot-quick-btn {
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border: 1px solid var(--border-light);
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.chatbot-quick-btn:hover {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.chatbot-input-row {
  display: flex;
  border-top: 1px solid var(--border);
}
.chatbot-input {
  flex: 1;
  background: var(--surface-2);
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 14px 16px;
  outline: none;
}
.chatbot-input::placeholder { color: var(--text-muted); }
.chatbot-send {
  background: var(--accent);
  border: none;
  padding: 0 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.chatbot-send:hover { background: var(--accent-bright); }
.chatbot-send svg { width: 18px; height: 18px; fill: var(--black); }

@media (max-width: 480px) {
  .chatbot-window { right: 12px; left: 12px; width: auto; bottom: 90px; }
  .chatbot-toggle { bottom: 20px; right: 20px; }
}

/* ── Gold Gradient Accent Touches ─────────────────────────── */
.nav-logo-main {
  background: linear-gradient(135deg, #E0C068 0%, #C9A84C 50%, #A8862A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-logo-main {
  background: linear-gradient(135deg, #E0C068 0%, #C9A84C 50%, #A8862A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   PREMIUM DESIGN SYSTEM — Visual Enhancement Layer
   ============================================================ */

/* ── Gradient Orbs (Ambient Background Blobs) ─────────────── */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.orb-gold {
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, rgba(201,168,76,0.08) 40%, transparent 70%);
  filter: blur(60px);
}
.orb-warm {
  background: radial-gradient(circle, rgba(180,100,40,0.18) 0%, rgba(160,80,30,0.05) 40%, transparent 70%);
  filter: blur(80px);
}
.orb-cool {
  background: radial-gradient(circle, rgba(100,140,200,0.1) 0%, transparent 70%);
  filter: blur(90px);
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 25px) scale(1.08); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  40% { transform: translate(25px, 30px); }
  80% { transform: translate(-15px, -10px); }
}

/* ── Glassmorphism ────────────────────────────────────────── */
.glass {
  background: rgba(17,17,17,0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201,168,76,0.08);
}

/* ── Text Gradient ────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, #f5e6b8 0%, #E0C068 25%, #C9A84C 50%, #ffffff 75%, #E0C068 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 4s linear infinite;
}
@keyframes textShine {
  to { background-position: 200% center; }
}

/* ── Glow Effects ─────────────────────────────────────────── */
.glow-gold {
  box-shadow: 0 0 20px rgba(201,168,76,0.2), 0 0 60px rgba(201,168,76,0.08);
}
.glow-gold-hover:hover {
  box-shadow: 0 4px 30px rgba(201,168,76,0.35), 0 0 80px rgba(201,168,76,0.12);
}
.btn-primary {
  box-shadow: 0 2px 20px rgba(201,168,76,0.2);
  transition: all var(--dur) var(--ease), box-shadow 0.3s;
}
.btn-primary:hover {
  box-shadow: 0 4px 40px rgba(201,168,76,0.4), 0 0 80px rgba(201,168,76,0.15);
  transform: translateY(-2px);
}
.btn-outline:hover {
  box-shadow: 0 4px 30px rgba(201,168,76,0.2);
  transform: translateY(-2px);
}

/* ── Enhanced Reveals ─────────────────────────────────────── */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Bento Services Grid ──────────────────────────────────── */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 4px;
}
.bento-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  isolation: isolate;
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,0.95) 0%, rgba(9,9,9,0.3) 40%, transparent 70%);
  z-index: 1;
  transition: background 0.5s var(--ease);
}
.bento-card:hover::before {
  background: linear-gradient(to top, rgba(9,9,9,0.85) 0%, rgba(9,9,9,0.15) 50%, transparent 80%);
}
.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.6s var(--ease), transform 0.8s var(--ease);
}
.bento-card:hover img {
  opacity: 0.75;
  transform: scale(1.08);
}
.bento-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}
.bento-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.bento-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.03em;
  color: var(--text);
  transition: color 0.3s;
}
.bento-card:hover .bento-title {
  color: var(--accent);
}
.bento-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--accent);
  font-size: 18px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(8px);
}
.bento-card:hover .bento-arrow {
  opacity: 1;
  transform: translateY(0);
}
.bento-lg {
  grid-row: span 2;
}
.bento-wide {
  grid-column: span 2;
}
@media (max-width: 768px) {
  .services-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .bento-lg { grid-row: span 1; }
  .bento-wide { grid-column: span 2; }
  .bento-content { padding: 16px; }
  .bento-title { font-size: 16px; }
  .bento-num { font-size: 10px; margin-bottom: 4px; }
  .bento-arrow { display: none; }
  .bento-card:active {
    transform: scale(0.98);
  }
  .bento-card:active img {
    opacity: 0.7;
  }
}
@media (max-width: 480px) {
  .services-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }
  .bento-wide { grid-column: span 1; }
  .bento-content { padding: 14px 16px; }
  .bento-title { font-size: 18px; }
}

/* ── Card Glow Hover ──────────────────────────────────────── */
.card-glow {
  transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease), border-color 0.4s;
}
.card-glow:hover {
  box-shadow: 0 8px 40px rgba(201,168,76,0.12), 0 0 0 1px rgba(201,168,76,0.08);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.2) !important;
}

/* ── Diagonal Section Divider ─────────────────────────────── */
.section-angle {
  position: relative;
  z-index: 1;
}
.section-angle::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 50px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: -1;
}

/* ── Accent Line Animation ────────────────────────────────── */
.accent-line-anim {
  position: relative;
}
.accent-line-anim::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-bright), var(--accent));
  animation: accentPulse 2s ease-in-out infinite;
}
@keyframes accentPulse {
  0%, 100% { width: 60px; opacity: 1; }
  50% { width: 100px; opacity: 0.7; }
}

/* ── Floating Accent Shapes ───────────────────────────────── */
.floating-line {
  position: absolute;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.3), transparent);
  pointer-events: none;
  animation: floatLine 6s ease-in-out infinite;
}
@keyframes floatLine {
  0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scaleY(1.2); opacity: 0.6; }
}

.floating-cross {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  opacity: 0.15;
}
.floating-cross::before, .floating-cross::after {
  content: '';
  position: absolute;
  background: var(--accent);
}
.floating-cross::before {
  width: 100%;
  height: 1px;
  top: 50%;
}
.floating-cross::after {
  width: 1px;
  height: 100%;
  left: 50%;
}

/* ── Stagger Animation Utility ────────────────────────────── */
.stagger-1 { transition-delay: 0.05s !important; }
.stagger-2 { transition-delay: 0.1s !important; }
.stagger-3 { transition-delay: 0.15s !important; }
.stagger-4 { transition-delay: 0.2s !important; }
.stagger-5 { transition-delay: 0.25s !important; }
.stagger-6 { transition-delay: 0.3s !important; }

/* ── Enhanced Nav — Always Glass ──────────────────────────── */
.nav {
  background: rgba(9,9,9,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.05);
}
.nav.scrolled {
  background: rgba(9,9,9,0.92);
  border-bottom-color: rgba(201,168,76,0.1);
}

/* ── Enhanced Testimonial Cards ───────────────────────────── */
.testi-card {
  background: rgba(17,17,17,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.06);
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}
.testi-card:hover {
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 8px 32px rgba(201,168,76,0.1);
  transform: translateY(-2px);
}

/* ── Hero Enhancement ─────────────────────────────────────── */
.hero-line:nth-child(3) {
  background: linear-gradient(135deg, #f5e6b8 0%, #E0C068 30%, #C9A84C 60%, #fff 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 3s linear infinite;
}

/* ── Horizontal Rule Glow ─────────────────────────────────── */
.divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3) 20%, rgba(201,168,76,0.5) 50%, rgba(201,168,76,0.3) 80%, transparent);
}

/* ── Section Background Patterns ──────────────────────────── */
.section-mesh {
  position: relative;
  overflow: hidden;
}
.section-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(100,140,200,0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(180,100,40,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Image Tilt Container ─────────────────────────────────── */
.tilt-card {
  transition: transform 0.3s var(--ease);
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* ── Magnetic Button ──────────────────────────────────────── */
.btn-magnetic {
  transition: all var(--dur) var(--ease);
}

/* ── Keyframe: Pulse Ring ─────────────────────────────────── */
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

/* ── How It Works Enhancement ─────────────────────────────── */
.hiw-step {
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.hiw-step:hover {
  background: rgba(201,168,76,0.03);
}
.hiw-num::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin-top: 12px;
  transition: width 0.4s var(--ease);
}
.hiw-step:hover .hiw-num::after {
  width: 48px;
}

/* ── Enhanced CTA Section ─────────────────────────────────── */
.cta-glow-wrap {
  position: relative;
  overflow: hidden;
}
.cta-glow-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Enhanced Footer ──────────────────────────────────────── */
footer {
  background: linear-gradient(to top, rgba(17,17,17,0.5) 0%, var(--black) 100%);
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

/* ── Scroll Progress Indicator ────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  z-index: 10001;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ── Service Item Enhancement (list style) ────────────────── */
.service-item:hover {
  background: rgba(201,168,76,0.02);
  padding-left: 12px;
}

/* ── Enhanced Before/After ────────────────────────────────── */
.ba-container {
  border: 1px solid rgba(201,168,76,0.08);
  padding: 4px;
  background: var(--surface);
  transition: border-color 0.4s;
}
.ba-container:hover {
  border-color: rgba(201,168,76,0.2);
}

/* ── Trust Stats ──────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-stat { text-align: center; }
.trust-stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}

/* ── Project Gallery ─────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 4px;
}
.gallery-item.gallery-wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.4s;
  opacity: 0.7;
}
.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-wide { grid-column: span 1; }
}
