/* ============================================================
   OLYMPIA Remodeling & Repair — Premium Website Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --black: #090909;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --gold: #c9a84c;
  --gold-light: #e0bc6a;
  --gold-dark: #9a7b2e;
  --gold-muted: rgba(201,168,76,0.15);
  --white: #ffffff;
  --off-white: #f0ece4;
  --gray: #888888;
  --gray-light: #cccccc;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 80px;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.12);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
}

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

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 500; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.05em; }
p { font-size: 1rem; color: var(--gray-light); }

/* ─── GOLD LINE ACCENT ─── */
.gold-line {
  display: inline-block;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 1.2rem;
}
.gold-line.centered { display: block; margin: 0 auto 1.2rem; }

/* ─── SECTION LABEL ─── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

/* ─── CONTAINER ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ─── SECTIONS ─── */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover { box-shadow: 0 6px 30px rgba(201,168,76,0.55); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  align-items: center;
}
.navbar.scrolled {
  background: rgba(9,9,9,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 12px; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 1100;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
.hamburger span:nth-child(2) { width: 16px; }
.hamburger:hover span { background: var(--gold); }
.hamburger.open span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 24px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── PREMIUM MOBILE MENU ─── */
.mobile-menu {
  display: flex !important;
  position: fixed;
  inset: 0;
  z-index: 999;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}

/* Layered background */
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(201,168,76,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(201,168,76,0.05) 0%, transparent 45%),
    linear-gradient(160deg, #0e0e0e 0%, #090909 50%, #0c0b08 100%);
  z-index: 0;
}
/* Grain texture */
.mobile-menu::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

/* Inner layout */
.mobile-menu-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

/* Menu header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.mobile-menu-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease 0.15s, transform 0.5s cubic-bezier(0.16,1,0.3,1) 0.15s;
}
.mobile-menu.open .mobile-menu-logo {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: rotate(-45deg) scale(0.8);
  transition: opacity 0.4s ease 0.2s, transform 0.4s cubic-bezier(0.16,1,0.3,1) 0.2s, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.mobile-menu.open .mobile-menu-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.mobile-menu-close:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold);
}

/* Nav links area */
.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 40px;
  gap: 0;
}

/* Individual nav links */
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 2.8rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateX(-32px);
}
.mobile-menu-nav a::after {
  content: '→';
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-8px);
}
.mobile-menu-nav a:hover {
  color: var(--white);
  padding-left: 8px;
}
.mobile-menu-nav a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-nav a:last-child { border-bottom: none; }

/* Stagger animation for links */
.mobile-menu.open .mobile-menu-nav a:nth-child(1) { animation: menuLinkIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.15s both; }
.mobile-menu.open .mobile-menu-nav a:nth-child(2) { animation: menuLinkIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.22s both; }
.mobile-menu.open .mobile-menu-nav a:nth-child(3) { animation: menuLinkIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.29s both; }
.mobile-menu.open .mobile-menu-nav a:nth-child(4) { animation: menuLinkIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.36s both; }

@keyframes menuLinkIn {
  to { opacity: 1; transform: translateX(0); }
}

/* Small line number accents */
.mobile-menu-nav a .link-num {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(201,168,76,0.5);
  letter-spacing: 0.15em;
  font-weight: 500;
  align-self: flex-start;
  margin-top: 12px;
}

/* Bottom CTA area */
.mobile-menu-footer {
  padding: 24px 40px 36px;
  border-top: 1px solid rgba(201,168,76,0.12);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s cubic-bezier(0.16,1,0.3,1) 0.4s;
}
.mobile-menu.open .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}
.mobile-menu-footer-cta:hover {
  box-shadow: 0 6px 24px rgba(201,168,76,0.5);
  transform: translateY(-1px);
}
.mobile-menu-footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu-footer-phone a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}
.mobile-menu-footer-phone a:hover { color: var(--gold); }
.mobile-menu-footer-phone span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* Gold corner accents */
.mobile-menu-corner {
  position: absolute;
  width: 40px; height: 40px;
  z-index: 1;
  pointer-events: none;
}
.mobile-menu-corner.tl { top: 80px; left: 20px; border-top: 1px solid rgba(201,168,76,0.25); border-left: 1px solid rgba(201,168,76,0.25); }
.mobile-menu-corner.br { bottom: 20px; right: 20px; border-bottom: 1px solid rgba(201,168,76,0.25); border-right: 1px solid rgba(201,168,76,0.25); }

/* Hide on desktop */
@media (min-width: 769px) {
  .hamburger { display: none !important; }
}


/* ─── HERO — CINEMATIC ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slow zoom on BG */
.hero-bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  animation: heroKen 14s ease-out forwards;
  will-change: transform;
}
@keyframes heroKen {
  0%   { transform: scale(1.12) translateX(0); }
  100% { transform: scale(1.0) translateX(-1%); }
}

/* Multi-layer cinematic overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(9,9,9,0.92) 0%, rgba(9,9,9,0.50) 60%, rgba(9,9,9,0.65) 100%),
    linear-gradient(to top,    rgba(9,9,9,0.80) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(9,9,9,0.55) 0%, transparent 25%);
}

/* Vignette ring */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}

/* Thin gold horizontal accent line */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.5) 30%, rgba(201,168,76,0.8) 50%, rgba(201,168,76,0.5) 70%, transparent 100%);
  z-index: 3;
  animation: fadeIn 1s 1.8s both;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: calc(var(--nav-h) + 60px) 24px 100px;
}

/* Gold eyebrow line above badge */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroSlideDown 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hero-eyebrow-line {
  flex: 0 0 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow-line.right {
  background: linear-gradient(90deg, var(--gold), transparent);
  flex: 0 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  padding: 7px 18px;
  backdrop-filter: blur(8px);
}
.hero-badge span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.4)} }

/* Title enters line by line */
.hero-title {
  margin-bottom: 28px;
  overflow: hidden;
}
.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: heroLineUp 1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-title-line:nth-child(1) { animation-delay: 0.45s; }
.hero-title-line:nth-child(2) { animation-delay: 0.62s; }
.hero-title-line:nth-child(3) { animation-delay: 0.79s; }

@keyframes heroLineUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Gold word shimmer */
.hero-title .gold {
  color: var(--gold);
  font-style: italic;
  position: relative;
}
.hero-title .gold::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
  animation: goldUnderline 1s cubic-bezier(0.16,1,0.3,1) 1.1s both;
  transform: scaleX(0);
  transform-origin: left;
}
@keyframes goldUnderline { to { transform: scaleX(1); } }

/* Subtitle */
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 48px;
  opacity: 0;
  animation: heroFadeRise 1s cubic-bezier(0.16,1,0.3,1) 1s both;
}
@keyframes heroFadeRise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* CTA buttons — refined and smaller */
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  animation: heroFadeRise 0.9s cubic-bezier(0.16,1,0.3,1) 1.2s both;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(201,168,76,0.4), 0 0 0 0 rgba(201,168,76,0.3);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-110%) skewX(-12deg);
  transition: transform 0.5s ease;
}
.btn-hero-primary:hover::before { transform: translateX(110%) skewX(-12deg); }
.btn-hero-primary:hover {
  box-shadow: 0 6px 32px rgba(201,168,76,0.6), 0 0 0 3px rgba(201,168,76,0.15);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover {
  border-color: rgba(201,168,76,0.6);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeIn 1s 2.2s both;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out 2.2s infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ─── SERVICES OVERVIEW ─── */
.services-overview { background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
}
.service-card {
  background: var(--dark2);
  padding: 40px 32px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--dark3); }
.service-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  border-color: var(--gold);
  background: var(--gold-muted);
}
.service-card h3 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ─── WHY OLYMPIA ─── */
.why-section { background: var(--black); position: relative; }
.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-image-stack { position: relative; }
.why-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.why-accent-img {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--dark);
  box-shadow: var(--shadow-card);
}
.why-badge {
  position: absolute;
  top: -16px; left: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.why-badge .big { display: block; font-size: 2rem; font-family: var(--font-display); line-height: 1; }
.why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-muted);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
}
.why-point-text h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 4px; }
.why-point-text p { font-size: 0.88rem; color: var(--gray); }

/* ─── FEATURED PROJECTS ─── */
.featured-projects { background: var(--dark); }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.featured-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark3);
}
.featured-item:nth-child(1) { grid-column: span 7; grid-row: span 1; }
.featured-item:nth-child(2) { grid-column: span 5; grid-row: span 1; }
.featured-item:nth-child(3) { grid-column: span 4; }
.featured-item:nth-child(4) { grid-column: span 4; }
.featured-item:nth-child(5) { grid-column: span 4; }
.featured-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-item:nth-child(1) .featured-img { height: 420px; }
.featured-item:hover .featured-img { transform: scale(1.04); }
.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.featured-item:hover .featured-overlay { opacity: 1; }
.featured-label {
  background: var(--gold);
  color: var(--black);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ─── VIDEO SECTION ─── */
.video-section { background: var(--black); position: relative; overflow: hidden; }
.video-section::before {
  content: 'OLYMPIA';
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 700;
  color: rgba(201,168,76,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.15);
  max-width: 900px;
  margin: 0 auto;
}
.video-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--dark2);
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9,9,9,0.3);
  cursor: pointer;
  transition: background var(--transition);
}
.video-play-overlay.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--black);
  box-shadow: 0 8px 40px rgba(201,168,76,0.5);
  transition: transform var(--transition);
}
.video-play-overlay:hover .play-btn { transform: scale(1.1); }

/* ─── SERVICE AREAS ─── */
.areas-section { background: var(--dark); }
.areas-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: center; }
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.area-tag {
  padding: 8px 18px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--gray-light);
  transition: var(--transition);
}
.area-tag:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-muted); }
.areas-map-placeholder {
  aspect-ratio: 16/10;
  background: var(--dark3);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.areas-map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.areas-map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: rgba(9,9,9,0.5);
}
.areas-map-overlay span {
  font-size: 3rem;
}
.areas-map-overlay p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  text-align: center;
}

/* ─── TRUST SECTION ─── */
.trust-section { background: var(--dark2); position: relative; overflow: hidden; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.trust-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}
.trust-card:hover {
  border-color: rgba(201,168,76,0.35);
  background: var(--dark3);
  transform: translateY(-4px);
}
.trust-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-card h4 { font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.trust-card p { font-size: 0.88rem; color: var(--gray); }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 20px; }
.cta-section p { max-width: 500px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone { display: flex; align-items: center; gap: 12px; margin-top: 32px; justify-content: center; }
.cta-phone a { color: var(--gold); font-size: 1.1rem; font-weight: 600; transition: opacity var(--transition); }
.cta-phone a:hover { opacity: 0.8; }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--gray); max-width: 260px; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--gray); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact-item a { font-size: 0.88rem; color: var(--gray); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-icon { color: var(--gold); font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gray); }
.footer-bottom a { color: var(--gold); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-light);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-muted); }

/* ─── CHAT WIDGET ─── */
.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.chat-popup {
  width: 320px;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.1);
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.chat-popup.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.chat-popup-header {
  background: linear-gradient(135deg, #151515, #1e1e1e);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  position: relative;
}
.chat-logo {
  width: 48px; height: 48px;
  border-radius: 12px;
  object-fit: contain;
  background: var(--black);
  padding: 4px;
}
.chat-header-info { flex: 1; }
.chat-header-info strong {
  font-size: 0.9rem;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.chat-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #4ade80;
}
.chat-online-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
.chat-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}
.chat-close:hover { background: rgba(201,168,76,0.2); color: var(--gold); }
.chat-popup-body { padding: 20px; }
.chat-message {
  background: var(--dark3);
  border-radius: 12px 12px 12px 4px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.chat-message strong { color: var(--white); }
.chat-actions { display: flex; flex-direction: column; gap: 8px; }
.chat-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  text-decoration: none;
}
.chat-btn:hover { background: var(--gold-muted); border-color: rgba(201,168,76,0.4); color: var(--gold); }
.chat-btn-icon { font-size: 1.1rem; flex-shrink: 0; }
.chat-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--black);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.chat-toggle:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(201,168,76,0.6); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,0.9) 0%, rgba(9,9,9,0.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 60px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 { margin-bottom: 12px; }
.page-hero-content p { font-size: 1.05rem; max-width: 500px; }

/* ─── SERVICES PAGE ─── */
.services-detail { background: var(--black); }
.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-section:last-child { border-bottom: none; }
.service-section.reverse { direction: rtl; }
.service-section.reverse > * { direction: ltr; }
.service-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.service-detail-text { }
.service-detail-text .section-label { margin-bottom: 8px; }
.service-detail-text h2 { margin-bottom: 20px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.service-detail-text p { margin-bottom: 28px; }

/* Process section */
.process-section { background: var(--dark); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  background: var(--dark2);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: background var(--transition);
}
.process-step:hover { background: var(--dark3); }
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(201,168,76,0.15);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon { font-size: 1.6rem; margin-bottom: 12px; }
.process-step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.process-step p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }

/* ─── GALLERY PAGE ─── */
.gallery-page { background: var(--black); }
.gallery-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--dark2);
}
.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,0.85), rgba(9,9,9,0.2));
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-item-label {
  background: var(--gold);
  color: var(--black);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}
.gallery-zoom {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--black); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--gold); color: var(--black); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* Before/After */
.before-after-section { background: var(--dark); }
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ba-item { position: relative; overflow: hidden; border-radius: var(--radius); }
.ba-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ba-label {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}
.ba-label.before { background: rgba(0,0,0,0.7); color: var(--gray-light); border: 1px solid rgba(255,255,255,0.2); }
.ba-label.after { background: var(--gold); color: var(--black); }

/* ─── CONTACT PAGE ─── */
.contact-page { background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.contact-form-wrap { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--dark2); }
.form-submit { width: 100%; padding: 16px; font-size: 0.9rem; margin-top: 8px; }

.contact-info-wrap { }
.contact-info-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  margin-bottom: 20px;
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-item:last-child { margin-bottom: 0; }
.info-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--gold-muted);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.info-text h4 { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.info-text a, .info-text p { font-size: 0.95rem; color: var(--gray-light); display: block; }
.info-text a:hover { color: var(--gold); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; margin-top: 8px; }
.hours-item { font-size: 0.88rem; color: var(--gray); }
.hours-item strong { color: var(--gray-light); }

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ─── DIVIDERS ─── */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

/* ─── PROJECT TYPES MOBILE ─── */
@media (max-width: 768px) {
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  [style*="grid-template-columns: 1fr 1fr; gap: 80px"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  [style*="grid-template-columns: 1fr 1.2fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  [style*="grid-template-columns: 1fr 1fr; gap: 10px"] {
    display: none !important;
  }
  [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  [style*="grid-template-columns: repeat(5, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
  [style*="grid-template-columns: 1fr 1fr; gap: 12px"] {
    grid-template-columns: 1fr !important;
  }
  .faq-q { font-size: 0.9rem !important; }
}
@media (max-width: 480px) {
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
  [style*="grid-template-columns: repeat(5, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}
.gallery-item.hidden { display: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-stack { display: none; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .areas-inner { grid-template-columns: 1fr; }
  .areas-map-placeholder { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero-content { padding-top: calc(var(--nav-h) + 24px); }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-item { grid-column: span 1 !important; }
  .featured-img, .featured-item:nth-child(1) .featured-img { height: 260px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image-stack { display: none; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-steps { grid-template-columns: 1fr; }
  .service-section { grid-template-columns: 1fr; gap: 36px; }
  .service-section.reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .chat-popup { width: calc(100vw - 48px); }
  .before-after-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FIXES & POLISH — v3
   ============================================================ */

/* ─── MOBILE NAV Z-INDEX FIXES ─── */
.navbar { z-index: 1000; }
.mobile-menu {
  z-index: 999;
  display: flex !important; /* always in DOM, toggled by opacity+pointer-events */
}
.chat-widget { z-index: 9000; }
.lightbox { z-index: 9100; }

/* ─── VIDEO ─── */
.video-wrapper video { border-radius: var(--radius-lg); }
.video-wrapper { max-width: 860px; }

/* ─── GALLERY ITEM DISPLAY NONE FIX ─── */
.gallery-item[style*="display: none"] { display: none !important; }

/* ─── STATS BAR MOBILE ─── */
@media (max-width: 640px) {
  .stat-number { font-size: 2.2rem !important; }
}

/* ─── CHAT WIDGET MOBILE ─── */
@media (max-width: 480px) {
  .chat-widget { bottom: 16px; right: 16px; }
  .chat-popup { width: calc(100vw - 32px); max-width: 340px; }
  .chat-toggle { width: 52px; height: 52px; font-size: 1.2rem; }
}

/* ─── SECTION TITLE POLISH ─── */
.section-header h2 {
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header h2 .gold,
h1 .gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── GALLERY HOVER SMOOTH ─── */
.gallery-hover {
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ─── BUTTON HOVER POLISH ─── */
.btn { white-space: nowrap; }
.btn-gold:active { transform: translateY(0); }

/* ─── PAGE HERO PADDING TOP FIX ─── */
.page-hero { padding-top: var(--nav-h) !important; }
.page-hero-content { padding-bottom: 56px; }

/* ─── FORM SELECT ARROW ─── */
.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 fill='%23c9a84c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* ─── FOOTER BRAND IMG FIX ─── */
.footer-brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 8px;
}

/* ─── WHY POINTS ON MOBILE ─── */
@media (max-width: 768px) {
  .why-points { gap: 16px; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .page-hero { min-height: 280px; }
  .process-step { padding: 28px 16px; }
  section { padding: 60px 0; }
}

/* ─── REMOVE AWKWARD GAPS ─── */
.services-detail > .container { padding-top: 60px; padding-bottom: 60px; }
.service-section:first-child { padding-top: 20px; }

/* ─── PREMIUM GOLD HOVER ON WHY POINTS ─── */
.why-point { transition: transform 0.3s ease; }
.why-point:hover { transform: translateX(6px); }
.why-point-icon { transition: var(--transition); }
.why-point:hover .why-point-icon { background: var(--gold-muted); border-color: var(--gold); }

/* ─── MOBILE STATS GRID ─── */
@media (max-width: 540px) {
  [style*="grid-template-columns: repeat(4, 1fr); gap: 24px"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
}

/* ============================================================
   HERO & MOBILE MENU — RESPONSIVE POLISH v4
   ============================================================ */

/* ─── HERO MOBILE ─── */
@media (max-width: 768px) {
  .hero { align-items: flex-start; }
  .hero-content {
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 80px;
    max-width: 100%;
  }
  .hero-title { margin-bottom: 20px; }
  .hero-title-line:nth-child(1) { font-size: clamp(2.6rem, 11vw, 3.8rem); }
  .hero-title-line:nth-child(2) { font-size: clamp(2.6rem, 11vw, 3.8rem); }
  .hero-title-line:nth-child(3) { font-size: clamp(2.6rem, 11vw, 3.8rem); }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 36px; }
  .hero-subtitle br { display: none; }
  .hero-actions { gap: 10px; }
  .btn-hero-primary, .btn-hero-secondary { font-size: 0.72rem; padding: 10px 20px; }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero-scroll { display: none; }
  /* Hero image — favor upper portion on mobile */
  .hero-bg { background-position: center 20%; }
}

@media (max-width: 420px) {
  .hero-content { padding-top: calc(var(--nav-h) + 20px); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 8px; }
  .btn-hero-primary, .btn-hero-secondary { width: auto; }
}

/* ─── MOBILE MENU RESPONSIVE ─── */
@media (max-width: 768px) {
  .hamburger { display: flex !important; }
  .nav-links, .nav-cta { display: none !important; }
  .mobile-menu-nav a { font-size: clamp(1.8rem, 8vw, 2.6rem); padding: 15px 0; }
  .mobile-menu-nav { padding: 24px 32px; }
  .mobile-menu-footer { padding: 20px 32px 32px; }
  .mobile-menu-header { padding: 18px 24px; }
  .mobile-menu-logo { height: 44px; }
}

@media (max-width: 380px) {
  .mobile-menu-nav a { font-size: 1.7rem; }
  .mobile-menu-corner { display: none; }
}

/* ─── HERO BACKGROUND — subtle parallax class ─── */
.hero-bg { will-change: transform; }

/* ─── ACTIVE NAV LINK IN MOBILE MENU ─── */
.mobile-menu-nav a.active { color: var(--white); }
.mobile-menu-nav a.active .link-num { color: var(--gold); }
