/* ===========================================
   Bélair Aménagement — Global Stylesheet v3
   =========================================== */

/* ===========================================
   RESET & BASE
   =========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background-color: #000; color-scheme: dark; }

:root {
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm:   clamp(0.875rem, 0.825rem + 0.25vw, 0.9375rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lg:   clamp(1.0625rem, 0.95rem + 0.56vw, 1.25rem);
  --text-xl:   clamp(1.25rem, 1.05rem + 1vw, 1.5rem);
  --text-2xl:  clamp(1.5rem, 1.15rem + 1.75vw, 2rem);
  --text-3xl:  clamp(1.875rem, 1.35rem + 2.63vw, 2.5rem);
  --text-4xl:  clamp(2.25rem, 1.5rem + 3.75vw, 3.5rem);
  --text-hero: clamp(2.75rem, 1.5rem + 6.25vw, 5rem);
  --text-stat: clamp(5rem, 3rem + 10vw, 10rem);

  --space-xs:  clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  --space-sm:  clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --space-md:  clamp(0.75rem, 0.6rem + 0.75vw, 1.25rem);
  --space-lg:  clamp(1rem, 0.75rem + 1.25vw, 2rem);
  --space-xl:  clamp(1.5rem, 1rem + 2.5vw, 3rem);
  --space-2xl: clamp(2rem, 1.25rem + 3.75vw, 4.5rem);
  --space-3xl: clamp(3rem, 1.75rem + 6.25vw, 7rem);

  --black: #0a0a0a;
  --black-deep: #050505;
  --gold-100: #f3cb9f;
  --gold-200: #d4ad74;
  --gold-300: #c9974e;
  --gold-400: #a0754b;
  --gold-500: #8a6235;
  --gold-600: #6e4216;
  --gold-grad: linear-gradient(135deg, #8a6235 0%, #c9974e 25%, #f3cb9f 45%, #c9974e 65%, #a0754b 80%, #6e4216 100%);
  --n400: #a3a3a3;
  --n500: #737373;
  --n600: #525252;
  --n700: #404040;
  --n800: #262626;
  --n900: #171717;

  --radius: 4px;
  --ease-out: cubic-bezier(.16,1,.3,1);
}

body {
  background-color: #000;
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a, button { min-height: 48px; display: inline-flex; align-items: center; }
button { cursor: pointer; border: none; background: none; color: inherit; font: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }
.section { padding: var(--space-3xl) 0; position: relative; }
.heading { font-family: 'Rajdhani', sans-serif; line-height: 1.15; font-weight: 700; }
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===========================================
   VISUAL TEXTURE — grain overlay
   =========================================== */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Diagonal gold accent line (decorative) ── */
.diagonal-accent {
  position: absolute;
  width: 1px; height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold-300), transparent);
  opacity: 0.2;
  transform: rotate(25deg);
  pointer-events: none;
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn-gold {
  background: var(--gold-grad); color: #000; font-weight: 700; font-size: var(--text-sm);
  padding: 12px 28px; border-radius: var(--radius); letter-spacing: 0.03em;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
  text-transform: none;
}
.btn-gold:hover { transform: translateY(-1px); filter: brightness(1.1); box-shadow: 0 4px 24px rgba(201,151,78,0.3); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.12); color: #fff; font-weight: 500; font-size: var(--text-sm);
  padding: 12px 28px; border-radius: var(--radius); gap: 8px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.25); }

.eyebrow {
  display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-md);
}
.eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--gold-grad); flex-shrink: 0; }
.eyebrow span { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-300); }

.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.eyebrow--center::after { content: ''; width: 48px; height: 2px; background: var(--gold-grad); position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); }
.eyebrow--center { position: relative; padding-bottom: var(--space-md); }

/* ===========================================
   ANIMATIONS
   =========================================== */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.slide-in-left { opacity: 0; transform: translateX(-48px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.slide-in-right { opacity: 0; transform: translateX(48px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.92); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.scale-in.visible { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .slide-in-left, .slide-in-right, .scale-in { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none !important; }
}

/* ===========================================
   TOP BAR
   =========================================== */
#site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: #000; padding-top: env(safe-area-inset-top, 0px);  }

/* iOS Safari safe area cover */
body::before {
  /* iOS Safari status bar cover */
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: env(safe-area-inset-top, 0px);
  background: #000;
  z-index: 9998;
  pointer-events: none;
}
.topbar {
  background: #000; border-bottom: 1px solid rgba(255,255,255,0.04);
  max-height: 60px; transition: max-height 0.3s ease, padding 0.3s ease;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; padding: var(--space-sm) var(--space-lg); font-size: var(--text-xs); color: var(--n500); }
.topbar__left { display: flex; align-items: center; gap: var(--space-lg); }
.topbar__phone { display: inline-flex; align-items: center; gap: 6px; color: inherit; min-height: 48px; }
.topbar__phone:hover { color: #fff; }
.topbar__loc { display: none; align-items: center; gap: 6px; }
@media (min-width: 640px) { .topbar__loc { display: inline-flex; } }
.topbar__lang { display: flex; align-items: center; gap: 8px; min-height: 48px; }
.topbar__lang-active { color: #fff; font-weight: 700; }

/* ===========================================
   NAVIGATION
   =========================================== */
.nav {
  background: rgba(10,10,10,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: var(--space-sm) var(--space-lg); }
.nav__logo { height: clamp(36px, 4vw, 50px); object-fit: contain; }
.nav__links { display: none; align-items: center; gap: clamp(1rem, 2vw, 2rem); font-size: var(--text-sm); }
@media (min-width: 768px) { .nav__links { display: flex; } }
.nav__link { color: var(--n500); padding: var(--space-xs) var(--space-sm); font-weight: 400; transition: color 0.2s; letter-spacing: 0.02em; }
.nav__link:hover, .nav__link--active { color: #fff; }
.hamburger { display: flex; min-height: 48px; min-width: 48px; justify-content: center; font-size: 1.5rem; color: var(--n400); }
@media (min-width: 768px) { .hamburger { display: none; } }

/* Nav active indicator */
.nav__link--active { position: relative; }
.nav__link--active::after { content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); width: 16px; height: 2px; background: var(--gold-300); border-radius: 1px; }

/* Mega menu */
.nav__svc-trigger { position: relative; }
.mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: max(600px, 50vw); max-width: 720px; background: rgba(10,10,10,0.97); backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px); border: 1px solid rgba(255,255,255,0.06); border-top: 2px solid var(--gold-300); border-radius: 0 0 8px 8px; padding: var(--space-xl); opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(8px); transition: opacity 0.25s ease, transform 0.25s ease; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); z-index: 60; }
.nav__svc-trigger:hover .mega-menu, .mega-menu:hover { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.mega-item { display: flex; gap: var(--space-md); padding: var(--space-md); border-radius: var(--radius); transition: background 0.2s; min-height: auto; }
.mega-item:hover { background: rgba(255,255,255,0.04); }
.mega-item__img { width: 64px; height: 48px; border-radius: 3px; overflow: hidden; flex-shrink: 0; }
.mega-item__img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.mega-item__title { font-size: var(--text-sm); font-weight: 600; color: #fff; margin-bottom: 2px; }
.mega-item__sub { font-size: var(--text-xs); color: var(--n500); line-height: 1.4; }
.mega-item--current .mega-item__title { background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mega-item--all { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,0.06); padding-top: var(--space-md); margin-top: var(--space-xs); justify-content: center; font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-300); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100; background: rgba(5,5,5,0.98);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__close { position: absolute; top: var(--space-lg); right: var(--space-lg); min-height: 48px; min-width: 48px; justify-content: center; font-size: 1.8rem; color: var(--n400); z-index: 2; }
.mobile-menu__inner { display: flex; flex-direction: column; min-height: 100vh; min-height: 100dvh; padding: var(--space-3xl) var(--space-xl) var(--space-xl); }
.mobile-menu__logo { height: 56px; object-fit: contain; margin-bottom: var(--space-2xl); align-self: flex-start; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 0; flex: 1; }
.mobile-menu__nav > a {
  font-size: var(--text-xl); font-weight: 600; color: #fff;
  padding: var(--space-md) 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu__nav > a:hover { color: var(--gold-300); }

/* Accordion */
.mobile-menu__accordion { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu__trigger {
  width: 100%; font-size: var(--text-xl); font-weight: 600; color: #fff;
  padding: var(--space-md) 0; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer; min-height: 56px; font-family: inherit;
}
.mobile-menu__trigger:hover { color: var(--gold-300); }
.mobile-menu__chevron {  flex-shrink: 0; color: var(--gold-300); }
.mobile-menu__trigger[aria-expanded="true"] .mobile-menu__chevron { transform: rotate(180deg); }

.mobile-menu__panel {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 var(--space-md);
}
.mobile-menu__panel.open { max-height: 400px; padding-bottom: var(--space-md); }

.mobile-menu__sublink {
  display: flex; align-items: center; font-size: var(--text-base); font-weight: 400; color: var(--n400);
  padding: var(--space-sm) var(--space-md); min-height: 44px;
  border-left: 2px solid rgba(255,255,255,0.06); transition: color 0.2s, border-color 0.2s;
}
.mobile-menu__sublink:hover { color: #fff; border-left-color: var(--gold-300); }
.mobile-menu__sublink--active { color: var(--gold-300); border-left-color: var(--gold-300); }
.mobile-menu__sublink--all { font-size: var(--text-xs); font-weight: 600; color: var(--gold-300); letter-spacing: 0.1em; text-transform: uppercase; margin-top: var(--space-xs); border-left-color: transparent; }

/* Bottom section */
.mobile-menu__bottom { margin-top: auto; padding-top: var(--space-2xl); display: flex; flex-direction: column; align-items: center; gap: var(--space-md); }
.mobile-menu__phone { color: var(--gold-300); font-size: var(--text-base); display: inline-flex; align-items: center; gap: 8px; min-height: 48px; }
.mobile-menu__location { font-size: var(--text-xs); color: var(--n600); display: inline-flex; align-items: center; gap: 6px; min-height: auto; }

/* ===========================================
   HERO (Homepage full-height) — LESS OPAQUE
   =========================================== */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7) saturate(0.9); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.3) 45%, transparent 75%);
}
.hero__content { position: relative; max-width: 680px; padding: var(--space-3xl) 0; }
.hero__title { font-size: var(--text-hero); font-weight: 700; line-height: 1.1; margin-bottom: var(--space-xl); }
.hero__desc { font-size: var(--text-lg); color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 520px; margin-bottom: var(--space-2xl); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-md); }
@media (min-width: 768px) {
  .hero__content { max-width: 50%; }
}
.hero__scroll { position: absolute; bottom: var(--space-xl); left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll span { font-size: var(--text-xs); color: var(--n600); letter-spacing: 0.2em; text-transform: uppercase; }
.hero__scroll::after { content: ''; width: 1px; height: 32px; background: linear-gradient(to bottom, var(--gold-300), transparent); }

/* Diagonal accent on hero */
.hero .diagonal-accent { right: 15%; top: 20%; }

/* ===========================================
   PAGE HERO (Service & inner pages) — LESS OPAQUE
   =========================================== */
.page-hero {
  position: relative; min-height: clamp(340px, 45vw, 520px);
  display: flex; align-items: flex-end; overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) saturate(0.85); }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black) 0%, rgba(10,10,10,0.25) 50%, rgba(10,10,10,0.1) 100%);
}
.page-hero__content { position: relative; padding-bottom: var(--space-2xl); }
.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: var(--text-xs); color: var(--n500); margin-bottom: var(--space-lg);
}
.page-hero__breadcrumb a { color: var(--n500); transition: color 0.2s; min-height: auto; }
.page-hero__breadcrumb a:hover { color: var(--gold-300); }
.page-hero__breadcrumb span { color: var(--n700); }
.page-hero__title { font-size: var(--text-4xl); line-height: 1.1; margin-bottom: var(--space-md); }
.page-hero__desc { font-size: var(--text-lg); color: rgba(255,255,255,0.75); max-width: 600px; line-height: 1.6; }

/* ===========================================
   EDITORIAL HERO (Services hub)
   =========================================== */
.ed-hero { position: relative; overflow: hidden; background: var(--black); }
.ed-hero__grid { display: grid; gap: var(--space-xl); padding: var(--space-3xl) 0; }
@media (min-width: 768px) { .ed-hero__grid { grid-template-columns: 1fr 1fr; align-items: center; min-height: 75vh; } }
.ed-hero__text { position: relative; z-index: 2; }
.ed-hero__label { font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-300); display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-xl); }
.ed-hero__label::before { content: ''; width: 40px; height: 2px; background: var(--gold-grad); }
.ed-hero__title { font-size: var(--text-hero); font-weight: 700; line-height: 0.95; margin-bottom: var(--space-xl); letter-spacing: -0.02em; }
.ed-hero__title em { font-style: normal; display: block; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ed-hero__desc { font-size: var(--text-lg); color: var(--n400); line-height: 1.7; max-width: 440px; margin-bottom: var(--space-2xl); }
.ed-hero__stats { display: flex; gap: var(--space-2xl); padding-top: var(--space-xl); border-top: 1px solid rgba(255,255,255,0.06); }
.ed-hero__stat-num { font-family: 'Rajdhani', sans-serif; font-size: var(--text-3xl); font-weight: 700; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.ed-hero__stat-label { font-size: var(--text-xs); color: var(--n500); margin-top: 4px; display: block; }
.ed-hero__visual { position: relative; }
.ed-hero__img-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; position: relative; }
.ed-hero__img-main img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8) saturate(0.9); }
.ed-hero__img-main::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--black) 0%, transparent 30%); pointer-events: none; }
.ed-hero__img-float { position: absolute; bottom: -32px; left: -40px; width: clamp(140px, 18vw, 220px); aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; border: 3px solid var(--black); box-shadow: 0 20px 60px rgba(0,0,0,0.5); display: none; }
@media (min-width: 768px) { .ed-hero__img-float { display: block; } }
.ed-hero__img-float img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75); }

/* ===========================================
   SUB-PAGE HERO (Service detail pages)
   =========================================== */
.sub-hero { position: relative; overflow: hidden; background: var(--black); }
.sub-hero__grid { display: grid; gap: 0; position: relative; }
.sub-hero__text { display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-3xl) var(--space-lg) var(--space-2xl); position: relative; z-index: 2; min-height: clamp(420px, 70vh, 600px); }
.sub-hero__back { font-size: var(--text-xs); color: rgba(255,255,255,0.6); font-weight: 500; letter-spacing: 0.08em; margin-bottom: auto; display: inline-flex; align-items: center; gap: 8px; min-height: 40px; transition: color 0.2s; }
.sub-hero__back:hover { color: var(--gold-300); }
.sub-hero__title { font-size: var(--text-4xl); font-weight: 700; line-height: 0.95; margin-bottom: var(--space-lg); letter-spacing: -0.02em; }
.sub-hero__desc { font-size: var(--text-base); color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 480px; margin-bottom: var(--space-xl); }
.sub-hero__tags { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.sub-hero__num { display: none; }
.sub-hero__visual { position: absolute; inset: 0; z-index: 0; }
.sub-hero__visual.slide-in-right { opacity: 1; transform: none; }
.sub-hero__visual img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.4) saturate(0.85); }
.sub-hero__visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--black) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.2) 100%); pointer-events: none; }
.corner-accent { position: absolute; top: 0; right: 0; width: 80px; height: 80px; pointer-events: none; z-index: 3; display: none; }
@media (min-width: 768px) {
  .sub-hero__grid { min-height: 80vh; }
  .sub-hero__text { justify-content: center; min-height: auto; }
  .sub-hero__text .sub-hero__title,
  .sub-hero__text .sub-hero__desc,
  .sub-hero__text .sub-hero__tags,
  .sub-hero__text .sub-hero__back { max-width: 50%; }
  .sub-hero__title { font-size: var(--text-hero); }
  .sub-hero__back { margin-bottom: var(--space-xl); }
  .sub-hero__visual img { filter: brightness(0.55) saturate(0.85); }
  .sub-hero__visual::after { background: linear-gradient(to right, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.25) 40%, transparent 70%); }
  .corner-accent { display: block; }
  .corner-accent::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 2px; background: var(--gold-grad); }
  .corner-accent::after { content: ''; position: absolute; top: 0; right: 0; height: 100%; width: 2px; background: var(--gold-grad); }
}

/* ===========================================
   SERVICE ROW — Hub alternating layout
   =========================================== */
.svc-section { position: relative; overflow: hidden; }
.svc-row { display: grid; gap: var(--space-xl); position: relative; }
@media (min-width: 768px) { .svc-row { grid-template-columns: 1fr 1fr; align-items: center; } .svc-row--flip .svc-row__img { order: 2; } }
.svc-row__img { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.svc-row__img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75) saturate(0.9); transition: transform 0.8s var(--ease-out); }
.svc-row:hover .svc-row__img img { transform: scale(1.05); }
.svc-row__img-badge { position: absolute; top: var(--space-md); left: var(--space-md); font-family: 'Rajdhani', sans-serif; font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; background: var(--gold-grad); color: #000; padding: 6px 14px; border-radius: 2px; z-index: 1; }
.svc-row__content { position: relative; }
.svc-row__num { font-family: 'Rajdhani', sans-serif; font-size: clamp(6rem, 10vw, 10rem); font-weight: 700; line-height: 0.85; color: rgba(255,255,255,0.03); position: absolute; top: -20px; right: 0; pointer-events: none; }
.svc-row__title { font-size: var(--text-3xl); font-weight: 700; margin-bottom: var(--space-md); position: relative; }
.svc-row__text { font-size: var(--text-base); color: var(--n400); line-height: 1.75; margin-bottom: var(--space-lg); }
.svc-row__tags { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-xl); }
.svc-row__decor { font-family: 'Rajdhani', sans-serif; font-size: clamp(4rem, 8vw, 7rem); font-weight: 700; color: rgba(255,255,255,0.02); line-height: 1; position: absolute; bottom: -10px; left: -10px; pointer-events: none; white-space: nowrap; }

/* Light service section overrides */
.svc-section--light { background: #f5f0eb; color: var(--black); }
.svc-section--light .heading { color: var(--black); }
.svc-section--light .gold-text { background: linear-gradient(135deg, #6e4216 0%, #8a6235 30%, #a0754b 50%, #8a6235 70%, #6e4216 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.svc-section--light .eyebrow span { color: var(--gold-500); }
.svc-section--light .eyebrow::before { background: var(--gold-500); }
.svc-section--light .svc-row__text { color: var(--n600); }
.svc-section--light .svc-row__num { color: rgba(0,0,0,0.03); }
.svc-section--light .subsvc-tag { color: var(--gold-600); border-color: rgba(138,98,53,0.3); }
.svc-section--light .btn-outline { border-color: var(--gold-500); color: var(--gold-600); }
.svc-section--light .btn-outline:hover { background: rgba(0,0,0,0.04); }
.svc-section--light .svc-row__decor { color: rgba(0,0,0,0.03); }
.svc-section--light .subsvc-row__text { color: var(--n600); }
.svc-section--light .subsvc-row__num { color: var(--gold-500); }
.svc-section--light .subsvc-row__decor { color: rgba(0,0,0,0.03); }

/* ===========================================
   SUB-SERVICE ROWS (alternating detail pages)
   =========================================== */
.subsvc-row { display: grid; gap: var(--space-xl); position: relative; }
@media (min-width: 768px) { .subsvc-row { grid-template-columns: 1fr 1fr; align-items: center; } .subsvc-row--flip .subsvc-row__img { order: 2; } }
.subsvc-row__img { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.subsvc-row__img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.75) saturate(0.9); transition: transform 0.8s var(--ease-out); }
.subsvc-row:hover .subsvc-row__img img { transform: scale(1.05); }
.subsvc-row__content { position: relative; }
.subsvc-row__num { font-family: monospace; font-size: var(--text-xs); color: var(--gold-300); letter-spacing: 0.15em; margin-bottom: var(--space-sm); }
.subsvc-row__title { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-md); }
.subsvc-row__text { font-size: var(--text-base); color: var(--n400); line-height: 1.75; margin-bottom: var(--space-lg); }
.subsvc-row__tags { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.subsvc-row__decor { font-family: 'Rajdhani', sans-serif; font-size: clamp(4rem, 8vw, 7rem); font-weight: 700; color: rgba(255,255,255,0.02); line-height: 1; position: absolute; bottom: -10px; right: -10px; pointer-events: none; white-space: nowrap; }

/* ===========================================
   INTRO SPLIT + STAT CARDS
   =========================================== */
.intro-split { display: grid; gap: var(--space-2xl); }
@media (min-width: 768px) { .intro-split { grid-template-columns: 1.3fr 1fr; align-items: start; } }
.stat-stack { display: flex; flex-direction: column; gap: var(--space-md); }
.stat-card { display: flex; align-items: center; gap: var(--space-lg); padding: var(--space-lg) var(--space-xl); border-radius: var(--radius); position: relative; overflow: hidden; transition: transform 0.3s var(--ease-out); }
.stat-card:hover { transform: translateY(-2px); }
.stat-card--dark { border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02); }
.stat-card--light { border: 1px solid rgba(0,0,0,0.06); background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.stat-card__num { font-family: 'Rajdhani', sans-serif; font-size: var(--text-3xl); font-weight: 700; line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-card--light .stat-card__num { background: linear-gradient(135deg, #6e4216 0%, #a0754b 50%, #6e4216 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-card__label { font-size: var(--text-sm); color: var(--n400); line-height: 1.4; }
.stat-card--light .stat-card__label { color: var(--n600); }

/* ===========================================
   GALLERY SLIDER (Full-width carousel)
   =========================================== */
.gallery-section { overflow: hidden; }
.gallery-section__header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: var(--space-md); margin-bottom: var(--space-xl); }
.gallery__nav { display: flex; gap: var(--space-sm); }
.gallery__btn { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: center; font-size: 1.3rem; color: #fff; transition: border-color 0.2s, background 0.2s; }
.gallery__btn:hover { border-color: var(--gold-300); background: rgba(201,151,78,0.1); }
.gallery__track { display: flex; gap: clamp(12px, 1.5vw, 20px); overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; cursor: grab; padding-bottom: var(--space-md); }
.gallery__track:active { cursor: grabbing; }
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__slide { flex: 0 0 auto; scroll-snap-align: start; width: clamp(260px, 30vw, 380px); position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery__slide--tall { aspect-ratio: 3/4; }
.gallery__slide--wide { aspect-ratio: 4/3; }
.gallery__slide img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7) saturate(0.9); transition: transform 0.7s var(--ease-out), filter 0.4s; }
.gallery__slide:hover img { transform: scale(1.06); filter: brightness(0.5); }
.gallery__info { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--space-lg); display: flex; flex-direction: column; background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 100%); transform: translateY(8px); opacity: 0; transition: opacity 0.3s, transform 0.3s; }
.gallery__slide:hover .gallery__info { opacity: 1; transform: translateY(0); }
.gallery__loc { font-size: var(--text-xs); color: var(--gold-300); letter-spacing: 0.1em; text-transform: uppercase; }
.gallery__title { font-size: var(--text-base); font-weight: 600; margin-top: 4px; }
.gallery__counter { font-family: 'Rajdhani', sans-serif; font-size: var(--text-xs); color: var(--n600); letter-spacing: 0.1em; margin-top: var(--space-lg); text-align: right; }

/* ===========================================
   TICKER
   =========================================== */
.ticker { background: var(--gold-grad); overflow: hidden; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker 40s linear infinite; padding: clamp(10px, 1.2vw, 16px) 0; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { margin: 0 clamp(12px, 2vw, 24px); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.2em; color: var(--black); flex-shrink: 0; }
.ticker-dot { margin: 0 clamp(12px, 2vw, 24px); opacity: 0.4; color: var(--black); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===========================================
   SERVICES (Homepage cards)
   =========================================== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: clamp(0.75rem, 0.5rem + 1vw, 1.25rem); }
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; aspect-ratio: 4/3; }
@media (min-width: 640px) { .svc-card { aspect-ratio: auto; min-height: clamp(280px, 25vw, 400px); } }
.svc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); filter: brightness(0.55) saturate(0.9); }
.svc-card:hover img { transform: scale(1.08); }
.svc-card__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-lg);
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.15) 55%, transparent 100%);
}
.svc-card__num { font-size: var(--text-xs); font-family: monospace; color: var(--gold-300); margin-bottom: var(--space-sm); letter-spacing: 0.15em; }
.svc-card__title { font-size: var(--text-2xl); font-weight: 700; margin-bottom: 4px; }
.svc-card__sub { font-size: var(--text-xs); color: var(--n500); letter-spacing: 0.04em; margin-bottom: var(--space-sm); }
.svc-card__desc { font-size: var(--text-sm); color: var(--n400); line-height: 1.6; max-width: 420px; }
.svc-card__more { margin-top: var(--space-md); font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-300); opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s; }
.svc-card:hover .svc-card__more { opacity: 1; transform: translateY(0); }
.svc-card__corner { position: absolute; top: 0; right: 0; width: 48px; height: 48px; opacity: 0; transition: opacity 0.4s; }
.svc-card:hover .svc-card__corner { opacity: 1; }
.svc-card__corner::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 1px; background: var(--gold-grad); }
.svc-card__corner::after { content: ''; position: absolute; top: 0; right: 0; height: 100%; width: 1px; background: var(--gold-grad); }

/* ===========================================
   SERVICES HUB PAGE
   =========================================== */
.services-hub { display: grid; gap: var(--space-3xl); }
.service-row {
  display: grid; gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
@media (min-width: 768px) {
  .service-row { grid-template-columns: 1fr 1fr; align-items: center; }
  .service-row:nth-child(even) .service-row__img { order: 2; }
}
.service-row:last-child { border-bottom: none; padding-bottom: 0; }
.service-row__img {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 16/10;
}
.service-row__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) saturate(0.85);
  transition: transform 0.7s var(--ease-out);
}
.service-row:hover .service-row__img img { transform: scale(1.04); }
.service-row__num {
  font-family: 'Rajdhani', sans-serif; font-size: var(--text-4xl); font-weight: 700;
  background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: var(--space-sm);
}
.service-row__title { font-size: var(--text-3xl); font-weight: 700; margin-bottom: var(--space-md); }
.service-row__text { font-size: var(--text-base); color: var(--n400); line-height: 1.7; margin-bottom: var(--space-lg); }
.service-row__tags { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-lg); }

/* ===========================================
   SUB-SERVICE CARDS (Service detail pages)
   =========================================== */
.subsvc { display: grid; gap: var(--space-2xl); }
.subsvc-card {
  display: grid; gap: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.04); padding-bottom: var(--space-2xl);
}
@media (min-width: 768px) {
  .subsvc-card { grid-template-columns: 1fr 1fr; align-items: center; }
  .subsvc-card:nth-child(even) .subsvc-card__img { order: 2; }
}
.subsvc-card:last-child { border-bottom: none; padding-bottom: 0; }
.subsvc-card__img { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 16/10; }
.subsvc-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) saturate(0.9);
  transition: transform 0.7s var(--ease-out);
}
.subsvc-card:hover .subsvc-card__img img { transform: scale(1.04); }
.subsvc-card__num { font-family: monospace; font-size: var(--text-xs); color: var(--gold-300); letter-spacing: 0.15em; margin-bottom: var(--space-sm); }
.subsvc-card__title { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-md); }
.subsvc-card__text { font-size: var(--text-base); color: var(--n400); line-height: 1.7; }
.subsvc-card__tags { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-lg); }
.subsvc-tag {
  font-size: var(--text-xs); color: var(--gold-300);
  border: 1px solid rgba(201,151,78,0.25); padding: 6px 14px; border-radius: 2px;
  letter-spacing: 0.04em; display: inline-flex; min-height: auto;
}

/* ===========================================
   INTRO GRID (Service detail pages)
   =========================================== */
.intro-grid { display: grid; gap: var(--space-xl); }
@media (min-width: 768px) { .intro-grid { grid-template-columns: 1.2fr 1fr; align-items: start; } }
.intro__text { font-size: var(--text-base); color: var(--n400); line-height: 1.8; }
.intro__text p { margin-bottom: var(--space-lg); }

/* ===========================================
   PROCESS STEPS (Service detail pages)
   =========================================== */
.process-grid { display: grid; gap: var(--space-lg); counter-reset: step; }
@media (min-width: 640px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid rgba(255,255,255,0.04); border-radius: var(--radius);
  position: relative; transition: border-color 0.3s;
}
.process-step:hover { border-color: rgba(201,151,78,0.2); }
.process-step__num {
  font-family: 'Rajdhani', sans-serif; font-size: var(--text-3xl); font-weight: 700;
  background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: var(--space-md); line-height: 1;
}
.process-step__title { font-size: var(--text-sm); font-weight: 700; margin-bottom: var(--space-sm); letter-spacing: 0.03em; }
.process-step__desc { font-size: var(--text-xs); color: var(--n500); line-height: 1.7; }

/* ===========================================
   SERVICE GALLERY — grid for service pages
   =========================================== */
.svc-gallery {
  display: grid; gap: clamp(0.375rem, 0.25rem + 0.5vw, 0.75rem);
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: clamp(160px, 15vw + 60px, 280px);
}
@media (min-width: 768px) { .svc-gallery { grid-template-columns: repeat(3, 1fr); } }
.svc-gallery__item { position: relative; overflow: hidden; border-radius: 3px; cursor: pointer; }
.svc-gallery__item--large { grid-column: span 2; grid-row: span 2; }
.svc-gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) saturate(0.85);
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}
.svc-gallery__item:hover img { transform: scale(1.05); filter: brightness(0.5); }
.svc-gallery__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-md); font-size: var(--text-xs); color: var(--n400);
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.3s;
}
.svc-gallery__item:hover .svc-gallery__caption { opacity: 1; }

/* ===========================================
   GALLERY CAROUSEL (Homepage)
   =========================================== */
.gallery-carousel { position: relative; overflow: hidden; }
.gallery-carousel__track {
  display: flex; gap: clamp(0.75rem, 0.5rem + 1vw, 1.25rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 0 var(--space-lg);
  cursor: grab;
}
.gallery-carousel__track:active { cursor: grabbing; }
.gallery-carousel__track::-webkit-scrollbar { display: none; }

.gallery-carousel__slide {
  flex: 0 0 auto;
  width: clamp(280px, 35vw, 420px);
  aspect-ratio: 3/4;
  position: relative; overflow: hidden; border-radius: var(--radius);
  scroll-snap-align: start;
}
.gallery-carousel__slide img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) saturate(0.9);
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}
.gallery-carousel__slide:hover img { transform: scale(1.06); filter: brightness(0.55); }
.gallery-carousel__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-lg); display: flex; flex-direction: column;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
  transform: translateY(8px); opacity: 0; transition: opacity 0.3s, transform 0.3s;
}
.gallery-carousel__slide:hover .gallery-carousel__info { opacity: 1; transform: translateY(0); }
.gallery-carousel__loc { font-size: var(--text-xs); color: var(--gold-300); letter-spacing: 0.1em; text-transform: uppercase; }
.gallery-carousel__title { font-size: var(--text-base); font-weight: 600; margin-top: 4px; }

/* Carousel nav arrows */
.gallery-carousel__nav {
  display: flex; justify-content: flex-end; gap: var(--space-sm);
  padding: var(--space-lg) var(--space-lg) 0;
}
.gallery-carousel__btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: center;
  font-size: 1.2rem; color: #fff; transition: border-color 0.2s, background 0.2s;
}
.gallery-carousel__btn:hover { border-color: var(--gold-300); background: rgba(201,151,78,0.1); }

/* ===========================================
   ABOUT TEASER
   =========================================== */
.about-grid { display: grid; gap: var(--space-xl); }
@media (min-width: 768px) { .about-grid { grid-template-columns: auto 1px 1fr; align-items: center; } }
.about__stat { font-family: 'Rajdhani', sans-serif; font-size: var(--text-stat); font-weight: 700; line-height: 0.9; text-align: left; }
@media (min-width: 768px) { .about__stat { text-align: center; } }
.about__label { font-size: var(--text-base); letter-spacing: 0.2em; text-transform: uppercase; color: var(--n500); margin-top: var(--space-sm); display: block; text-align: left; }
@media (min-width: 768px) { .about__label { font-size: var(--text-xs); letter-spacing: 0.3em; text-align: center; } }
.about__divider { background: linear-gradient(to bottom, transparent, var(--gold-300), transparent); display: none; }
@media (min-width: 768px) { .about__divider { display: block; } }
.about__title { font-size: var(--text-3xl); font-weight: 700; margin-bottom: var(--space-lg); }
.about__text { font-size: var(--text-base); color: var(--n400); line-height: 1.7; margin-bottom: var(--space-lg); }
.about__text--dim { color: var(--n500); }

/* ===========================================
   TRUST PILLARS
   =========================================== */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-card { text-align: center; padding: var(--space-xl) var(--space-lg); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); transition: border-color 0.3s; }
.trust-card:hover { border-color: rgba(201,151,78,0.2); }
.trust-card__icon { color: var(--gold-300); margin-bottom: var(--space-md); display: flex; justify-content: center; }
.trust-card__title { font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.05em; margin-bottom: var(--space-sm); }
.trust-card__desc { font-size: var(--text-xs); color: var(--n500); line-height: 1.6; }

/* ===========================================
   FINAL CTA
   =========================================== */
.cta-section { position: relative; overflow: hidden; padding-bottom: var(--space-2xl); }
.cta-section__bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(180,130,50,0.08) 0%, var(--black) 50%, rgba(180,130,50,0.04) 100%); }
.cta-section__line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gold-grad); opacity: 0.3; }
.cta__inner { position: relative; max-width: 640px; margin: 0 auto; text-align: center; }
.cta__title { font-size: var(--text-3xl); font-weight: 700; margin-bottom: var(--space-lg); }
.cta__desc { font-size: var(--text-base); color: var(--n400); margin-bottom: var(--space-2xl); line-height: 1.7; }
.cta__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-md); margin-bottom: var(--space-lg); }
.cta__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-md) var(--space-lg); font-size: var(--text-xs); color: var(--n600); margin-bottom: var(--space-2xl); }

/* ===========================================
   FOOTER
   =========================================== */
.footer { background: var(--black-deep); border-top: 1px solid rgba(255,255,255,0.04); padding: var(--space-3xl) 0 var(--space-xl); }
.footer-grid { display: grid; gap: var(--space-xl); margin-bottom: var(--space-2xl); }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer__logo { height: 28px; object-fit: contain; margin-bottom: var(--space-md); }
.footer__desc { font-size: var(--text-xs); color: var(--n600); line-height: 1.7; max-width: 280px; }
.footer__heading { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-300); margin-bottom: var(--space-md); }
.footer__links { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__link { font-size: var(--text-sm); color: var(--n500); min-height: 40px; display: inline-flex; align-items: center; transition: color 0.2s; }
.footer__link:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.04); padding-top: var(--space-lg); display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-xs); font-size: var(--text-xs); color: var(--n400); }
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; gap: var(--space-md); } }

/* ===========================================
   LIGHTBOX
   =========================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  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: 85vh; object-fit: contain; border-radius: var(--radius);
  transform: scale(0.95); 
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: var(--space-lg); right: var(--space-lg);
  min-height: 48px; min-width: 48px; justify-content: center; align-items: center;
  font-size: 2rem; color: #fff; background: rgba(0,0,0,0.5); border-radius: 50%;
  display: flex; cursor: pointer; border: none; transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.15); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  min-height: 56px; min-width: 56px; justify-content: center; align-items: center;
  font-size: 1.5rem; color: #fff; background: rgba(0,0,0,0.5); border-radius: 50%;
  display: flex; cursor: pointer; border: none; transition: background 0.2s;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.15); }
.lightbox__prev { left: var(--space-lg); }
.lightbox__next { right: var(--space-lg); }
.lightbox__caption {
  position: absolute; bottom: var(--space-xl); left: 50%; transform: translateX(-50%);
  text-align: center; color: #fff;
}
.lightbox__caption-title { font-size: var(--text-base); font-weight: 600; }
.lightbox__caption-loc { font-size: var(--text-xs); color: var(--n400); margin-top: 4px; }
.lightbox__counter { position: absolute; top: var(--space-lg); left: var(--space-lg); font-size: var(--text-xs); color: var(--n400); min-height: 48px; }

/* ===========================================
   LIGHT SECTION VARIANT
   =========================================== */
.section--light { background: #f5f0eb; color: var(--black); }
.section--light .heading { color: var(--black); }
.section--light .gold-text { background: linear-gradient(135deg, #6e4216 0%, #8a6235 30%, #a0754b 50%, #8a6235 70%, #6e4216 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section--light .eyebrow span { color: var(--gold-500); }
.section--light .eyebrow::before, .section--light .eyebrow--center::after { background: var(--gold-500); }
.section--light .about__text { color: var(--n600); }
.section--light .about__text--dim { color: var(--n500); }
.section--light .about__label { color: var(--n500); }
.section--light .about__divider { background: linear-gradient(to bottom, transparent, var(--gold-400), transparent); }
.section--light .btn-outline { border-color: var(--gold-500); color: var(--gold-600); }
.section--light .btn-outline:hover { background: rgba(0,0,0,0.04); }
.section--light .trust-card { border-color: rgba(0,0,0,0.08); background: #fff; }
.section--light .trust-card:hover { border-color: var(--gold-400); }
.section--light .trust-card__title { color: var(--black); }
.section--light .trust-card__desc { color: var(--n600); }
.section--light .trust-card__icon { color: var(--gold-500); }
.section--light .process-step { background: #fff; border-color: rgba(0,0,0,0.06); }
.section--light .process-step:hover { border-color: rgba(160,117,75,0.3); }
.section--light .process-step__title { color: var(--black); }
.section--light .process-step__desc { color: var(--n600); }
.section--light .cta-section__bg { background: linear-gradient(135deg, rgba(180,130,50,0.06) 0%, transparent 50%, rgba(180,130,50,0.03) 100%); }
.section--light .cta-section__line { background: var(--gold-grad); opacity: 0.2; }
.section--light .cta__title { color: var(--black); }
.section--light .cta__desc { color: var(--n600); }
.section--light .cta__badges span { color: var(--n500); }

/* ===========================================
   BEFORE / AFTER SLIDER
   =========================================== */
.ba-section__grid { display: grid; gap: var(--space-xl); }
@media (min-width: 768px) { .ba-section__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ba-section__grid { grid-template-columns: 1fr 1fr 1fr; } }

.ba-slider { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; cursor: col-resize; user-select: none; -webkit-user-select: none; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-slider__after { clip-path: inset(0 0 0 50%); }
.ba-slider__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 3;
  width: 3px; background: #fff; transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}
.ba-slider__handle::after {
  content: '⟨ ⟩'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--black); font-weight: 700; letter-spacing: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.ba-slider__label {
  position: absolute; bottom: var(--space-md); z-index: 2;
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
}
.ba-slider__label--before { left: var(--space-md); background: rgba(0,0,0,0.6); color: #fff; }
.ba-slider__label--after { right: var(--space-md); background: var(--gold-grad); color: #000; }
.ba-slider__caption { text-align: center; margin-top: var(--space-md); }
.ba-slider__caption-title { font-size: var(--text-sm); font-weight: 600; }
.ba-slider__caption-loc { font-size: var(--text-xs); color: var(--n500); margin-top: 2px; }

/* ===========================================
   REALISATIONS — Filter + Grid
   =========================================== */
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.filter-btn {
  font-family: 'DM Sans', sans-serif; font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.06em; color: var(--n400); background: transparent;
  border: 1px solid rgba(255,255,255,0.1); padding: 8px 18px; border-radius: 2px;
  cursor: pointer; transition: all 0.2s; min-height: 40px;
}
.filter-btn:hover { border-color: var(--gold-300); color: var(--gold-300); }
.filter-btn--active { background: var(--gold-grad); color: #000; border-color: transparent; }
.section--light .filter-btn { color: var(--n600); border-color: rgba(0,0,0,0.08); }
.section--light .filter-btn:hover { border-color: var(--gold-400); color: var(--gold-600); }

.real-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 1vw, 16px);
}
@media (min-width: 768px) { .real-grid { grid-template-columns: repeat(3, 1fr); } }
.real-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; cursor: pointer; }
.real-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75) saturate(0.9); transition: transform 0.6s var(--ease-out), filter 0.4s;
}
.real-item:hover img { transform: scale(1.05); filter: brightness(0.45); }
.real-item__info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: var(--space-md);
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex; flex-direction: column; opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.real-item:hover .real-item__info { opacity: 1; transform: translateY(0); }
.real-item__loc { font-size: var(--text-xs); color: var(--gold-300); letter-spacing: 0.1em; text-transform: uppercase; }
.real-item__title { font-size: var(--text-sm); font-weight: 600; color: #fff; margin-top: 2px; }

/* ===========================================
   SOUMISSION — Multi-step form
   =========================================== */
.msf { max-width: 720px; }
@media (min-width: 768px) {
  .section--light > .container:has(.msf) { display: grid; grid-template-columns: 1fr 320px; gap: var(--space-2xl); align-items: start; }
}
@media (min-width: 1024px) {
  .section--light > .container:has(.msf) { grid-template-columns: 1fr 360px; }
}

/* Progress */
.msf__progress { position: relative; margin-bottom: var(--space-2xl); }
.msf__progress-bar { position: absolute; top: 0; left: 0; height: 3px; background: var(--gold-grad); border-radius: 2px; transition: width 0.4s ease; z-index: 1; }
.msf__steps { display: flex; justify-content: space-between; border-top: 3px solid rgba(0,0,0,0.06); padding-top: var(--space-lg); }
.msf__step { display: flex; align-items: center; gap: var(--space-sm); }
.msf__step-num { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-size: var(--text-sm); font-weight: 700; color: var(--n500); transition: all 0.3s; min-height: auto; }
.msf__step--active .msf__step-num { background: var(--gold-grad); color: #000; border-color: transparent; }
.msf__step--done .msf__step-num { background: var(--gold-500); color: #fff; border-color: transparent; }
.msf__step-label { font-size: var(--text-xs); font-weight: 600; color: var(--n500); display: none; }
@media (min-width: 480px) { .msf__step-label { display: block; } }
.msf__step--active .msf__step-label { color: var(--black); }

/* Panels */
.msf__panel { display: none; }
.msf__panel--active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Service cards */
.msf__services { display: grid; grid-template-columns: 1fr; gap: var(--space-sm); }
@media (min-width: 480px) { .msf__services { grid-template-columns: 1fr 1fr; } }
.msf__svc-card {
  display: flex; flex-direction: column; gap: 4px; padding: var(--space-lg);
  border: 2px solid rgba(0,0,0,0.06); border-radius: var(--radius);
  cursor: pointer; transition: border-color 0.2s, background 0.2s; position: relative; min-height: auto;
}
.msf__svc-card:hover { border-color: var(--gold-300); }
.msf__svc-card:has(input:checked) { border-color: var(--gold-400); background: rgba(201,151,78,0.06); }
.msf__svc-card input { position: absolute; opacity: 0; width: 0; height: 0; min-height: 0; }
.msf__svc-icon { font-size: 8px; color: var(--gold-400); margin-bottom: 4px; }
.msf__svc-card:has(input:checked) .msf__svc-icon { color: var(--gold-300); }
.msf__svc-name { font-size: var(--text-sm); font-weight: 700; color: var(--black); }
.msf__svc-sub { font-size: var(--text-xs); color: var(--n500); }

/* Radio options */
.msf__budget { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.msf__radio {
  display: flex; align-items: center; cursor: pointer; min-height: auto;
  padding: 8px 16px; border: 1px solid rgba(0,0,0,0.08); border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.msf__radio:hover { border-color: var(--gold-300); }
.msf__radio:has(input:checked) { border-color: var(--gold-400); background: rgba(201,151,78,0.06); }
.msf__radio input { position: absolute; opacity: 0; width: 0; height: 0; min-height: 0; }
.msf__radio span { font-size: var(--text-sm); color: var(--n700); }

/* Fields grid */
.msf__fields-grid { display: grid; gap: 0 var(--space-lg); }
@media (min-width: 480px) { .msf__fields-grid { grid-template-columns: 1fr 1fr; } }

/* Nav */
.msf__nav { display: flex; justify-content: space-between; align-items: center; margin-top: var(--space-2xl); padding-top: var(--space-xl); border-top: 1px solid rgba(0,0,0,0.06); }

/* Error + Loading */
.msf__error { margin-top: var(--space-lg); padding: var(--space-md); background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius); color: #991b1b; font-size: var(--text-sm); }
.msf__loading { margin-top: var(--space-lg); display: flex; align-items: center; justify-content: center; gap: var(--space-md); color: var(--n600); font-size: var(--text-sm); }
.msf__spinner { width: 20px; height: 20px; border: 2px solid rgba(0,0,0,0.1); border-top-color: var(--gold-400); border-radius: 50%; animation: spin 0.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Sidebar */
.msf__sidebar { display: none; }
@media (min-width: 768px) { .msf__sidebar { display: block; position: sticky; top: 100px; } }

/* ===========================================
   SOUMISSION — Form styles
   =========================================== */
.form-grid { display: grid; gap: var(--space-2xl); }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1.4fr 1fr; align-items: start; } }

.form-group { margin-bottom: var(--space-lg); }
.form-label { display: block; font-size: var(--text-xs); font-weight: 600; color: var(--n700); letter-spacing: 0.04em; margin-bottom: var(--space-sm); }
.form-input {
  width: 100%; font-family: 'DM Sans', sans-serif; font-size: var(--text-base); color: var(--black);
  background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius);
  padding: 14px 16px; transition: border-color 0.2s, box-shadow 0.2s;
  min-height: auto; display: block;
}
.form-input:focus { outline: none; border-color: var(--gold-400); box-shadow: 0 0 0 3px rgba(201,151,78,0.12); }
.form-input::placeholder { color: var(--n400); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-checks { display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-lg); }
.form-check {
  display: flex; align-items: center; gap: 8px; font-size: var(--text-sm); color: var(--n700);
  cursor: pointer; min-height: 36px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--gold-400); cursor: pointer;
  min-height: auto;
}

.form-sidebar__card {
  background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius);
  padding: var(--space-xl); box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.form-sidebar__item { display: flex; gap: var(--space-md); align-items: flex-start; margin-bottom: var(--space-lg); font-size: var(--text-sm); color: var(--black); line-height: 1.5; }
.form-sidebar__item:last-child { margin-bottom: 0; }
.form-sidebar__badges { display: flex; flex-direction: column; gap: var(--space-sm); }
.form-sidebar__badge { font-size: var(--text-sm); color: var(--n700); display: flex; align-items: center; gap: 8px; }

/* Safe area bottom */
.bottom-safe { padding-bottom: env(safe-area-inset-bottom, 0px); }
/* ===========================================
   FAQ SECTION
   =========================================== */
.faq-section { background: var(--black); }
.faq-section__title { font-size: var(--text-3xl); text-align: center; margin-bottom: var(--space-2xl); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
  padding: var(--space-lg) 0; cursor: pointer;
  font-family: 'Rajdhani', sans-serif; font-size: var(--text-lg); font-weight: 600; color: #fff;
  list-style: none; min-height: auto;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after { content: '+'; font-size: var(--text-xl); color: var(--gold-400); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item[open] .faq-item__q::after { content: '−'; }
.faq-item__a { padding: 0 0 var(--space-lg); }
.faq-item__a p { font-size: var(--text-sm); color: var(--n400); line-height: 1.7; margin: 0; }
.faq-item[open] .faq-item__q { color: var(--gold-300); }
