/* ===== ROOT VARIABLES ===== */
:root {
  --bg:        #FAFAF8;
  --bg-white:  #FFFFFF;
  --surface:   #F5F0E6;
  --border:    rgba(0,0,0,0.09);
  --border-g:  rgba(184,134,45,0.22);
  --gold:      #B8862D;
  --gold-l:    #CF9C38;
  --gold-dim:  rgba(184,134,45,0.10);
  --dark:      #1A1208;
  --text:      #2D2416;
  --muted:     #7A6A58;
  --white:     #FFFFFF;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Raleway', system-ui, sans-serif;
  --r:         8px;
  --r-lg:      14px;
  --ease:      0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow:    0 2px 20px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 36px rgba(0,0,0,0.11);
  --shadow-g:  0 4px 20px rgba(184,134,45,0.22);
}

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

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.2; font-weight: 600; letter-spacing: 0.01em; }
.text-gold { color: var(--gold); }
em { font-style: italic; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 2px;
  font-weight: 500; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: all var(--ease); white-space: nowrap; font-family: var(--sans);
}
.btn-gold {
  background: var(--gold); color: #fff; border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-l); border-color: var(--gold-l); transform: translateY(-2px); box-shadow: var(--shadow-g); }

/* For dark/carousel background */
.btn-outline-w {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.55);
}
.btn-outline-w:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* For light/white background */
.btn-outline {
  background: transparent; color: var(--text); border: 1px solid rgba(0,0,0,0.25);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 0.78rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-map { gap: 8px; }

/* ===== SECTION LABELS & HEADERS ===== */
.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 14px; font-family: var(--sans);
}
.sec-label::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.sec-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 16px; font-weight: 300; color: var(--dark);
}
.sec-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.sec-header p { color: var(--muted); font-size: 1.05rem; }

/* ===== SCROLL REVEAL ===== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1 !important; transform: translate(0,0) !important; }

/* ===== PRELOADER (keep dark — looks great on load) ===== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #1A1208; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 28px; }
.pl-sr { font-family: var(--serif); font-size: 3rem; color: var(--gold); font-weight: 700; }
.pl-sep { width: 1px; height: 40px; background: rgba(184,134,45,0.3); }
.pl-text { font-size: 1.1rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.5); font-weight: 300; }
.preloader-bar { width: 180px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.preloader-fill { height: 100%; background: var(--gold); width: 0; transition: width 0.1s linear; }

/* ===== HEADER / NAV ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0; background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all var(--ease);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
.navbar { width: 100%; }
.nav-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-sr { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.logo-int { font-size: 0.68rem; letter-spacing: 0.26em; color: var(--muted); font-weight: 500; padding-top: 4px; }
.nav-menu { display: flex; gap: 36px; }
.nav-link {
  font-size: 0.86rem; letter-spacing: 0.04em; color: var(--muted);
  position: relative; padding: 4px 0; transition: color var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--dark); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); transition: all var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO CAROUSEL ===== */
.hero {
  height: 100vh; min-height: 620px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

/* Slide backgrounds */
.car-slides { position: absolute; inset: 0; }
.car-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.1s ease;
}
.car-slide--active { opacity: 1; }
.car-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.40) 60%, rgba(0,0,0,0.20) 100%);
}

/* Hero content (white text on dark slide) */
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 68px 24px 80px;
}

/* Slide-specific headlines */
.slide-headlines { margin-bottom: 36px; }
.slide-hl {
  display: none;
  animation: slideIn 0.7s ease forwards;
}
.slide-hl--active { display: block; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-chip {
  display: inline-block; border: 1px solid rgba(184,134,45,0.55);
  color: var(--gold); font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; padding: 9px 20px; border-radius: 2px; margin-bottom: 28px;
  background: rgba(184,134,45,0.08);
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.8rem); font-weight: 300; line-height: 1.05;
  margin-bottom: 22px; max-width: 700px; color: #fff; letter-spacing: -0.01em;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.12rem); color: rgba(255,255,255,0.72); max-width: 500px;
  margin-bottom: 36px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; align-items: center; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.18); padding-top: 36px; max-width: 480px;
}
.hstat { padding: 0 24px; text-align: center; }
.hstat:first-child { padding-left: 0; }
.hstat strong { display: block; font-size: 1.9rem; font-family: var(--serif); color: var(--gold); font-weight: 700; }
.hstat span { font-size: 0.75rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.hstat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.18); }

/* Carousel controls */
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  color: #fff; font-size: 1.8rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease);
}
.car-btn:hover { background: var(--gold); }
.car-prev { left: 28px; }
.car-next { right: 28px; }
.car-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.car-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); transition: all var(--ease);
  border: none;
}
.car-dot--active { background: var(--gold); transform: scale(1.3); }

/* ===== ABOUT ===== */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visuals { position: relative; }
.av-main, .av-sm {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  aspect-ratio: 4/3;
}
.av-main { width: 75%; aspect-ratio: 3/4; }
.av-sm { width: 48%; aspect-ratio: 1/1; }
.av-sm1 { position: absolute; right: 0; top: 10%; }
.av-sm2 { position: absolute; right: 8%; bottom: -5%; }
.av-bg { position: absolute; inset: 0; }
.av-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  padding: 20px 16px 14px;
}
.av-overlay p { font-size: 0.82rem; color: rgba(255,255,255,0.9); font-weight: 500; }
.av-badge {
  position: absolute; top: 50%; right: -20px;
  background: var(--gold); color: #fff; border-radius: var(--r);
  padding: 16px 20px; text-align: center;
  box-shadow: var(--shadow-g); z-index: 5;
}
.av-stars { font-size: 1rem; margin-bottom: 4px; }
.av-badge strong { display: block; font-size: 0.95rem; font-weight: 700; }
.av-badge small { font-size: 0.7rem; opacity: 0.85; }

.about-content .sec-title { margin-bottom: 20px; }
.about-content p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
.pillars { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-icon {
  width: 44px; height: 44px; flex-shrink: 0; background: var(--gold-dim);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-g);
}
.pillar-icon svg { width: 20px; height: 20px; color: var(--gold); }
.pillar strong { display: block; font-weight: 600; margin-bottom: 4px; font-size: 0.95rem; color: var(--dark); }
.pillar p { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ===== USP STRIP ===== */
.usp-strip {
  background: var(--dark); padding: 20px 0;
}
.usp-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.usp-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 28px; color: rgba(255,255,255,0.88);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  white-space: nowrap;
}
.usp-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.usp-div { width: 1px; height: 28px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ===== SERVICES ===== */
.services { background: var(--bg-white); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.svc-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: all var(--ease); box-shadow: var(--shadow);
}
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-g); }
.svc-card:hover::before { opacity: 1; }
.svc-card--featured {
  background: #FDF8EE;
  border-color: rgba(184,134,45,0.30);
  box-shadow: 0 4px 32px rgba(184,134,45,0.12);
}
.svc-card--featured::before { opacity: 1; }
.svc-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: #fff; font-size: 0.68rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.svc-num { font-family: var(--serif); font-size: 3rem; color: rgba(184,134,45,0.18); font-weight: 700; line-height: 1; margin-bottom: 16px; }
.svc-icon { width: 52px; height: 52px; background: var(--gold-dim); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; border: 1px solid var(--border-g); }
.svc-icon svg { width: 24px; height: 24px; color: var(--gold); }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 14px; color: var(--dark); }
.svc-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }
.svc-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.svc-list li { font-size: 0.85rem; color: var(--muted); padding-left: 16px; position: relative; }
.svc-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; }
.svc-link { color: var(--gold); font-size: 0.88rem; font-weight: 500; display: inline-flex; gap: 6px; align-items: center; transition: gap var(--ease); }
.svc-link:hover { gap: 12px; }

/* ===== SPECIALTIES SHOWCASE ===== */
.specialties { background: var(--bg); }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spec-card {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; height: 280px; cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease);
}
.spec-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.spec-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.70) 40%,
    rgba(0,0,0,0.25) 70%,
    rgba(0,0,0,0.08) 100%);
}
.spec-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px;
}
.spec-icon {
  width: 40px; height: 40px; background: rgba(184,134,45,0.25);
  border: 1px solid rgba(184,134,45,0.6); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.spec-icon svg { width: 20px; height: 20px; color: var(--gold); }
.spec-card h3 {
  font-size: 1.15rem; color: #fff; margin-bottom: 6px; font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9), 0 2px 12px rgba(0,0,0,0.7);
}
.spec-card p {
  font-size: 0.8rem; color: rgba(255,255,255,0.82); line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
}
.spec-card[data-filter]::after {
  content: 'View Projects →';
  position: absolute; top: 16px; right: 16px;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
  padding: 5px 10px; border-radius: 4px;
  opacity: 0; transition: opacity var(--ease);
}
.spec-card[data-filter]:hover::after { opacity: 1; }
.spec-card--cta {
  background: linear-gradient(145deg, #1a1208 0%, #2e1f0a 50%, #1a1208 100%) !important;
  border: 1px solid rgba(184,134,45,0.35);
  display: flex; align-items: center; justify-content: center; text-align: center;
  position: relative; overflow: hidden;
}
.spec-card--cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,134,45,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.spec-cta-inner { padding: 32px 24px; position: relative; z-index: 1; }
.spec-cta-inner .sec-label { color: var(--gold); opacity: 0.9; }
.spec-cta-inner h3 {
  font-size: 1.3rem; margin-bottom: 12px; color: #fff;
  font-family: var(--serif); font-weight: 600; line-height: 1.3;
}
.spec-cta-inner p { color: rgba(255,255,255,0.6); font-size: 0.83rem; line-height: 1.7; margin-bottom: 4px; }
.spec-cta-inner .btn-gold {
  margin-top: 20px; display: inline-flex;
  padding: 12px 28px; font-size: 0.72rem;
}

/* ===== GALLERY ===== */
.gallery { background: var(--bg); }
.gal-filters {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px;
}
.flt-btn {
  padding: 9px 20px; border-radius: 100px; font-size: 0.82rem; font-weight: 500;
  border: 1px solid var(--border); color: var(--muted); transition: all var(--ease); background: #fff;
  flex-shrink: 0;
}
.flt-btn:hover { border-color: var(--gold); color: var(--gold); }
.flt-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.gal-item {
  border-radius: var(--r); overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3; position: relative;
  transition: all var(--ease);
}
.gal-item:nth-child(7) { grid-column: span 2; }
.gal-item-bg { position: absolute; inset: 0; transition: transform 0.5s ease; }
.gal-item:hover .gal-item-bg { transform: scale(1.05); }
.gal-item-bg img { width: 100%; height: 100%; object-fit: cover; }
.gal-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  opacity: 0; transition: opacity var(--ease);
}
.gal-item:hover .gal-item-overlay { opacity: 1; }
.gal-item-cat {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 6px;
}
.gal-item-title { font-size: 1rem; font-family: var(--serif); font-weight: 600; color: #fff; }
.gal-item-zoom {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; opacity: 0; transition: opacity var(--ease);
}
.gal-item:hover .gal-item-zoom { opacity: 1; }
.gal-loading { grid-column: 1/-1; text-align: center; padding: 80px 0; color: var(--muted); }
.spinner {
  width: 36px; height: 36px; border: 2px solid var(--border);
  border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.gal-footer { display: flex; gap: 16px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.ig-btn { gap: 8px; }

/* ===== PROCESS (warm dark section for contrast) ===== */
.process { padding: 0; }
.process-dark {
  background: #2D1F0F;
  padding: 100px 0;
}
.process-dark .sec-label { color: var(--gold); }
.process-dark .sec-title { color: #fff; }
.process-dark .sec-header p { color: rgba(255,255,255,0.6); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 16px;
}
.proc-item { padding: 28px 20px; text-align: center; position: relative; }
.proc-item::after {
  content: ''; position: absolute; right: 0; top: 28px;
  width: 1px; height: 60px; background: rgba(184,134,45,0.2);
}
.proc-item:last-child::after, .proc-item:nth-child(4)::after { display: none; }
.proc-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 700;
  color: var(--gold); opacity: 0.35; line-height: 1; margin-bottom: 12px;
}
.proc-item h3 { font-size: 1rem; margin-bottom: 10px; color: #fff; font-weight: 600; }
.proc-item p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.proc-arrow { display: none; }

/* ===== JOB WORK ===== */
.jobwork { background: var(--bg-white); }
.jobwork-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.jobwork-content p { color: var(--muted); margin-bottom: 28px; line-height: 1.8; }
.jobwork-list { display: flex; flex-direction: column; gap: 18px; }
.jobwork-list li { display: flex; gap: 16px; align-items: flex-start; }
.jw-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--gold);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.jobwork-list strong { display: block; font-weight: 600; font-size: 0.95rem; color: var(--dark); margin-bottom: 2px; }
.jobwork-list span { font-size: 0.82rem; color: var(--muted); }
.jobwork-visual { position: relative; }
.jw-badge-wrap { position: relative; width: 100%; height: 380px; }
.jw-img {
  position: absolute; border-radius: var(--r-lg); overflow: hidden;
  display: flex; align-items: flex-end; padding: 14px;
}
.jw-img-1 { width: 65%; height: 60%; top: 0; left: 0; }
.jw-img-2 { width: 52%; height: 55%; bottom: 0; left: 0; }
.jw-img-3 { width: 48%; height: 65%; top: 8%; right: 0; }
.jw-img-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.8); letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 500;
  background: rgba(0,0,0,0.4); padding: 4px 10px; border-radius: 4px;
}
.jw-stat-box {
  position: absolute; bottom: 0; right: 0;
  background: var(--gold); color: #fff;
  border-radius: var(--r); padding: 16px 20px; text-align: center;
  box-shadow: var(--shadow-g);
}
.jw-stat-box strong { display: block; font-size: 1.6rem; font-family: var(--serif); font-weight: 700; }
.jw-stat-box span { font-size: 0.72rem; opacity: 0.88; }

/* ===== WARRANTY STRIP ===== */
.warranty-strip { background: var(--dark); padding: 36px 0; }
.warranty-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.warranty-item {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 40px; color: #fff;
}
.warranty-item svg { width: 36px; height: 36px; color: var(--gold); flex-shrink: 0; }
.warranty-item strong { display: block; font-size: 1rem; font-weight: 600; margin-bottom: 3px; }
.warranty-item span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.warranty-div { width: 1px; height: 60px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-white); }
.rating-row { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.g-stars { color: #f59e0b; font-size: 1.1rem; }
.rating-row strong { font-size: 1rem; color: var(--dark); }
.rating-row span { color: var(--muted); font-size: 0.85rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  box-shadow: var(--shadow);
  transition: all var(--ease);
}
.testi-card:hover { border-color: var(--border-g); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tc-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; }
.testi-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold-dim);
  border: 1px solid var(--border-g); display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--gold); font-size: 0.9rem; flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.tc-author small { color: var(--muted); font-size: 0.78rem; }
.tc-g { margin-left: auto; }

/* ===== CONTACT ===== */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; margin-bottom: 60px; }
.c-info { display: flex; flex-direction: column; gap: 20px; }
.c-card { display: flex; gap: 16px; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px; flex-shrink: 0; background: var(--gold-dim);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-g);
}
.c-icon svg { width: 20px; height: 20px; color: var(--gold); }
.c-card strong { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; color: var(--dark); }
.c-card p { color: var(--muted); font-size: 0.87rem; line-height: 1.7; }
.c-card a { color: var(--muted); transition: color var(--ease); }
.c-card a:hover { color: var(--gold); }
.wa-link { color: var(--gold) !important; font-weight: 500; }
.c-form-wrap {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 40px;
  box-shadow: var(--shadow);
}
.c-form h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--dark); }
.c-form > p { color: var(--muted); font-size: 0.88rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.fg label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.fg input, .fg select, .fg textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: 6px;
  padding: 12px 14px; color: var(--text); font-size: 0.9rem; width: 100%;
  transition: border-color var(--ease); outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--muted); opacity: 0.6; }
.fg select option { background: var(--bg-white); color: var(--text); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; color: var(--muted); font-size: 0.8rem; margin-top: 14px; }
.form-note a { color: var(--gold); }
.form-success { text-align: center; padding: 40px 20px; }
.success-icon { width: 64px; height: 64px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; color: #fff; font-weight: 700; }
.form-success h3 { margin-bottom: 10px; color: var(--dark); }
.form-success p { color: var(--muted); margin-bottom: 24px; }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; filter: grayscale(0.2) contrast(1.05) brightness(1.0); }

/* ===== FOOTER ===== */
.footer { background: #1A1208; padding: 80px 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 60px; }
.foot-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer .logo-sr { color: var(--gold); }
.footer .logo-int { color: rgba(255,255,255,0.4); }
.foot-brand p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.foot-social { display: flex; gap: 12px; }
.foot-social a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45);
  transition: all var(--ease);
}
.foot-social a:hover { border-color: var(--gold); color: var(--gold); }
.foot-social svg { width: 18px; height: 18px; }
.foot-links h4, .foot-contact h4 {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-family: var(--sans); font-weight: 600;
}
.foot-links ul { display: flex; flex-direction: column; gap: 10px; }
.foot-links a { color: rgba(255,255,255,0.45); font-size: 0.87rem; transition: color var(--ease); }
.foot-links a:hover { color: var(--gold); }
.foot-contact p { color: rgba(255,255,255,0.45); font-size: 0.87rem; line-height: 1.7; margin-bottom: 8px; }
.foot-contact a { color: rgba(255,255,255,0.45); transition: color var(--ease); }
.foot-contact a:hover { color: var(--gold); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.foot-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ===== WHATSAPP FAB ===== */
.wa-fab {
  position: fixed; bottom: 32px; right: 28px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all var(--ease);
}
.wa-fab svg { width: 28px; height: 28px; }
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.wa-tip {
  position: absolute; right: 68px; background: #1A1208; color: #fff;
  font-size: 0.78rem; padding: 6px 12px; border-radius: 6px; white-space: nowrap;
  opacity: 0; transform: translateX(8px); transition: all var(--ease); pointer-events: none;
}
.wa-fab:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.94); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-close {
  position: absolute; top: 20px; right: 24px;
  color: rgba(255,255,255,0.7); font-size: 2.5rem; line-height: 1;
  transition: color var(--ease); z-index: 10; background: none; border: none;
}
.lb-close:hover { color: var(--gold); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.5); font-size: 4rem; line-height: 1;
  padding: 0 20px; transition: color var(--ease); z-index: 10;
}
.lb-prev { left: 0; }
.lb-next { right: 0; }
.lb-prev:hover, .lb-next:hover { color: var(--gold); }
.lb-content { max-width: 90vw; max-height: 90vh; text-align: center; }
.lb-content img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--r); }
.lb-caption { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-top: 16px; }

/* ===== RESPONSIVE ===== */

/* --- Tablet (≤1024px) --- */
@media (max-width: 1024px) {
  .about-grid        { grid-template-columns: 1fr; gap: 48px; }
  .about-visuals     { max-width: 480px; margin: 0 auto; }
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .spec-grid         { grid-template-columns: repeat(2, 1fr); }
  .process-grid      { grid-template-columns: repeat(2, 1fr); }
  .proc-item::after  { display: none; }
  .testi-grid        { grid-template-columns: 1fr 1fr; gap: 20px; }
  .jobwork-inner     { grid-template-columns: 1fr; gap: 40px; }
  .jobwork-visual    { display: none; }
  .warranty-item     { padding: 12px 22px; }
  .contact-grid      { grid-template-columns: 1fr; }
  .foot-grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .usp-item          { padding: 8px 14px; }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }

  /* Nav */
  .nav-menu {
    position: fixed; inset: 0; top: 68px;
    background: var(--bg-white);
    flex-direction: column; gap: 0;
    justify-content: flex-start; align-items: stretch;
    padding: 0;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); z-index: 99;
    box-shadow: -4px 0 32px rgba(0,0,0,0.10);
    border-top: 3px solid var(--gold);
    overflow-y: auto;
  }
  .nav-menu.open    { transform: translateX(0); }
  .nav-link {
    font-family: var(--serif); font-size: 1.4rem; font-weight: 500;
    padding: 20px 28px; color: var(--dark);
    border-bottom: 1px solid rgba(184,134,45,0.12);
    display: flex; align-items: center; gap: 14px;
    transition: color var(--ease), background var(--ease), padding-left 0.2s;
  }
  .nav-link::before {
    content: ''; display: block; width: 4px; height: 4px;
    border-radius: 50%; background: var(--gold); flex-shrink: 0; opacity: 0;
    transition: opacity var(--ease);
  }
  .nav-link:hover, .nav-link.active {
    color: var(--gold); background: rgba(184,134,45,0.05); padding-left: 36px;
  }
  .nav-link:hover::before, .nav-link.active::before { opacity: 1; }
  .hamburger        { display: flex; z-index: 100; }
  .hamburger.open span { background: var(--gold); }
  .nav-right .btn-sm { display: none; }

  /* Hero — start from top so chip never hides behind fixed navbar */
  .hero             { align-items: flex-start; }
  .hero-content     { padding: 92px 18px 40px; }
  .hero-title       { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 14px; }
  .hero-sub         { font-size: 0.9rem; margin-bottom: 24px; }
  .slide-headlines  { margin-bottom: 20px; }
  .hero-btns        { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 28px; max-width: 320px; }
  .hero-btns .btn   { width: 100%; justify-content: center; }
  .hero-stats       { max-width: 100%; padding-top: 18px; }
  .hstat            { padding: 0 10px; }
  .hstat strong     { font-size: 1.35rem; }
  .car-btn          { width: 36px; height: 36px; font-size: 1.3rem; }
  .car-prev         { left: 10px; }
  .car-next         { right: 10px; }

  /* USP strip */
  .usp-inner        { flex-wrap: wrap; gap: 0; justify-content: center; }
  .usp-item         { padding: 6px 14px; font-size: 0.78rem; width: 50%; justify-content: center; }
  .usp-div          { display: none; }

  /* About */
  .av-sm1, .av-sm2  { display: none; }
  .av-main          { width: 100%; min-height: 280px; }
  .av-badge         { display: none; }

  /* Services */
  .services-grid    { grid-template-columns: 1fr; }
  .svc-card         { padding: 28px 22px; }

  /* Specialties */
  .spec-grid        { grid-template-columns: 1fr 1fr; gap: 14px; }
  .spec-card        { height: 200px; }

  /* Gallery filters — horizontal scroll on mobile */
  .gal-filters      { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
  .gal-filters::-webkit-scrollbar { display: none; }
  .gal-grid         { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gal-item:nth-child(7) { grid-column: span 1; }

  /* Process */
  .process-dark     { padding: 60px 0; }
  .process-grid     { grid-template-columns: 1fr 1fr; gap: 0; }
  .proc-item        { padding: 20px 14px; }
  .proc-num         { font-size: 2.2rem; }
  .proc-item h3     { font-size: 0.9rem; }
  .proc-item p      { font-size: 0.78rem; }

  /* Job work */
  .jobwork-inner    { grid-template-columns: 1fr; }
  .jobwork-visual   { display: none; }

  /* Warranty */
  .warranty-strip   { padding: 28px 0; }
  .warranty-inner   { flex-direction: column; gap: 0; }
  .warranty-item    { padding: 14px 20px; width: 100%; }
  .warranty-item svg { width: 28px; height: 28px; }
  .warranty-div     { width: 80%; height: 1px; margin: 0 auto; }

  /* Testimonials */
  .testi-grid       { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid     { grid-template-columns: 1fr; gap: 36px; }
  .c-form-wrap      { padding: 24px 18px; }
  .form-row         { grid-template-columns: 1fr; }

  /* Footer */
  .foot-grid        { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .foot-bottom      { flex-direction: column; gap: 8px; text-align: center; }
  .footer           { padding: 50px 0 0; }
}

/* --- Small mobile (≤480px) --- */
@media (max-width: 480px) {
  .section          { padding: 50px 0; }
  .hero-chip        { font-size: 0.6rem; padding: 6px 10px; }
  .hero-title       { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  /* Stats: force 4-column grid so nothing wraps */
  .hero-stats       { display: grid; grid-template-columns: repeat(4, 1fr); padding-top: 14px; gap: 0; max-width: 100%; border-top: 1px solid rgba(255,255,255,0.18); }
  .hstat-div        { display: none; }
  .hstat            { padding: 0; text-align: center; }
  .hstat:first-child { padding-left: 0; }
  .hstat strong     { font-size: 1.1rem; }
  .hstat span       { font-size: 0.58rem; letter-spacing: 0; }
  .spec-grid        { grid-template-columns: 1fr; }
  .spec-card        { height: 180px; }
  .gal-grid         { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .process-grid     { grid-template-columns: 1fr; }
  .usp-item         { width: 100%; }
  .sec-title        { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .c-form-wrap      { padding: 20px 14px; }
  .testi-card       { padding: 22px 18px; }
  .warranty-item    { flex-direction: column; text-align: center; gap: 8px; }
}
