/* ============================================================
   LAXMI MOULDING — Premium CSS
   Luxury Industrial Dark Theme style css
   ============================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --dark: #1a1a1a;
  --dark-2: #222222;
  --dark-3: #2a2a2a;
  --wood: #8B5E3C;
  --wood-light: #C4944A;
  --wood-dark: #5C3D1E;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --white: #F5F0EB;
  --white-dim: #b0a99f;
  --text-muted: #6b6460;
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --card-bg: rgba(30,27,24,0.9);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.6);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Loading Screen ---- */
#loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.loader-bar {
  width: 200px; height: 1px;
  background: var(--dark-3);
  position: relative; overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderSlide 1.8s ease forwards;
}
@keyframes loaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ---- Navbar ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 5%;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.05em;
}
.nav-logo-sub {
  font-size: 0.6rem; letter-spacing: 0.3em;
  color: var(--white-dim); text-transform: uppercase; margin-top: 2px;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--white-dim);
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition) !important;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 1.5px;
  background: var(--white); transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 36px; opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.mobile-menu.open { opacity: 1; visibility: visible; display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.08em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ---- Layout ---- */
section { position: relative; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* ---- Labels ---- */
.label-tag {
  display: inline-flex; align-items: center;
  gap: 12px; font-size: 0.68rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.label-tag::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);
}

/* ---- Headlines ---- */
.h-display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 600; line-height: 1.05;
}
.h-display em { font-style: italic; color: var(--gold); font-family: var(--font-accent); }
.h-section {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600; line-height: 1.15;
}
.h-section em { font-style: italic; color: var(--gold); }
.text-body {
  color: var(--white-dim); font-size: 0.95rem;
  line-height: 1.85; max-width: 560px;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--gold);
  color: var(--black); font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: var(--transition); border-radius: 2px;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-primary span { position: relative; z-index: 1; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: transparent;
  color: var(--white); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer; transition: var(--transition); border-radius: 2px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ---- Divider ---- */
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 32px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  height: 100vh; min-height: 700px;
  position: relative; display: flex;
  align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,10,10,0.92) 45%, rgba(10,10,10,0.5) 100%),
    url('https://images.unsplash.com/photo-1565793979559-0e3d6e2bc680?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(139,94,60,0.12) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.hero-eyebrow span { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }
.hero-eyebrow-line { width: 48px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 600; line-height: 1.02;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic; font-family: var(--font-accent);
  color: var(--gold); display: block;
}
.hero-subtitle {
  font-size: 1rem; color: var(--white-dim);
  line-height: 1.8; margin-bottom: 48px; max-width: 480px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; z-index: 2;
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); }
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.hero-stats {
  position: absolute; bottom: 0; right: 0; width: 55%;
  background: rgba(20,14,8,0.85);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-border);
  padding: 30px 40px;
  display: flex; z-index: 2;
}
.hero-stat {
  flex: 1; padding: 0 28px;
  border-right: 1px solid var(--glass-border); text-align: center;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--white-dim); text-transform: uppercase; margin-top: 6px;
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip { background: var(--charcoal); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.about-strip-inner { display: flex; overflow: hidden; }
.about-strip-item {
  flex: 1; padding: 40px 36px;
  border-right: 1px solid var(--glass-border);
  display: flex; gap: 20px; align-items: flex-start;
  transition: background 0.3s;
}
.about-strip-item:last-child { border-right: none; }
.about-strip-item:hover { background: var(--dark); }
.strip-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: 1.2rem;
}
.strip-text h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.strip-text p { font-size: 0.8rem; color: var(--white-dim); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--glass-border);
  border: 1px solid var(--glass-border);
}
.service-card {
  background: var(--dark); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: var(--transition); cursor: default;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--dark-2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-icon { color: var(--gold); transform: scale(1.1); }
.service-icon { font-size: 2rem; color: var(--wood-light); margin-bottom: 24px; transition: var(--transition); }
.service-num {
  position: absolute; top: 28px; right: 28px;
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 700;
  color: rgba(201,168,76,0.05); line-height: 1;
}
.service-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 12px; }
.service-card p { font-size: 0.85rem; color: var(--white-dim); line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-top: 24px; transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 14px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--charcoal); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-image-block { position: relative; }
.why-image-block img { width: 100%; height: 600px; object-fit: cover; filter: brightness(0.85); }
.why-image-block::before {
  content: ''; position: absolute;
  top: -20px; left: -20px; right: 20px; bottom: 20px;
  border: 1px solid rgba(201,168,76,0.2); z-index: 0;
}
.why-image-block img { position: relative; z-index: 1; }
.why-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: var(--black);
  width: 130px; height: 130px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; z-index: 2;
}
.why-badge-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; line-height: 1; }
.why-badge-text { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; text-align: center; line-height: 1.3; margin-top: 4px; }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.why-feature { display: flex; gap: 14px; align-items: flex-start; }
.why-feature-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 6px; flex-shrink: 0; }
.why-feature h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 4px; }
.why-feature p { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   MATERIALS
   ============================================================ */
.materials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.material-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.material-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.75); }
.material-card:hover img { transform: scale(1.08); filter: brightness(0.6); }
.material-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  padding: 28px 24px; display: flex; flex-direction: column; justify-content: flex-end;
}
.material-tag { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.material-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.material-desc { font-size: 0.78rem; color: var(--white-dim); margin-top: 8px; line-height: 1.6; opacity: 0; transform: translateY(10px); transition: var(--transition); }
.material-card:hover .material-desc { opacity: 1; transform: translateY(0); }

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.gp-item { overflow: hidden; position: relative; cursor: pointer; }
.gp-item:first-child { grid-row: 1 / 3; }
.gp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; min-height: 220px; }
.gp-item:first-child img { min-height: 480px; }
.gp-item:hover img { transform: scale(1.05); }
.gp-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: background 0.4s; }
.gp-item:hover .gp-overlay { background: rgba(0,0,0,0.4); }
.gp-icon { width: 52px; height: 52px; border: 1px solid var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.7); transition: var(--transition); color: var(--white); }
.gp-item:hover .gp-icon { opacity: 1; transform: scale(1); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  padding: 40px; position: relative;
  transition: var(--transition); backdrop-filter: blur(10px);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.testimonial-quote { font-size: 3rem; font-family: var(--font-display); color: var(--gold); line-height: 1; margin-bottom: 20px; opacity: 0.6; }
.testimonial-text { font-size: 0.9rem; color: var(--white-dim); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; border: 2px solid var(--glass-border); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-role { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.1em; margin-top: 2px; }
.stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 4px; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--wood-dark) 0%, #1a0f08 50%, var(--dark) 100%);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60L60 0' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3C/svg%3E");
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.stat-item { padding: 60px 40px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-suffix { font-family: var(--font-display); font-size: 2rem; color: var(--gold-light); }
.stat-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 12px; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { background: var(--charcoal); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #050505; border-top: 1px solid var(--glass-border); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); margin: 20px 0 28px; line-height: 1.8; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 38px; height: 38px; border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text-muted); transition: var(--transition);
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.footer-col h5 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a::before { content: '—'; font-size: 0.6rem; color: var(--glass-border); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-item i { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.footer-bottom {
  padding: 24px 0; border-top: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; }
.footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 0.85rem; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float { position: fixed; bottom: 32px; right: 32px; z-index: 998; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.whatsapp-btn {
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white;
  box-shadow: 0 6px 30px rgba(37,211,102,0.35);
  transition: var(--transition); text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
  background: var(--dark); border: 1px solid var(--glass-border);
  padding: 8px 16px; font-size: 0.75rem; letter-spacing: 0.08em;
  white-space: nowrap; opacity: 0; transform: translateX(10px);
  transition: var(--transition); pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 100px; background: var(--charcoal);
  position: relative; overflow: hidden; border-bottom: 1px solid var(--glass-border);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(139,94,60,0.1) 0%, transparent 60%);
}
.page-hero-breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px; }
.page-hero-breadcrumb a { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-stack { position: relative; }
.about-img-main { width: 85%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-secondary { position: absolute; bottom: -40px; right: -20px; width: 55%; aspect-ratio: 4/3; object-fit: cover; border: 4px solid var(--charcoal); }
.about-years-badge { position: absolute; top: 40px; left: -30px; background: var(--gold); color: var(--black); width: 100px; height: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2; }
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: linear-gradient(180deg, var(--gold) 0%, transparent 100%); }
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item::before { content: ''; position: absolute; left: -44px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); border: 2px solid var(--charcoal); box-shadow: 0 0 0 4px rgba(201,168,76,0.2); }
.timeline-year { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.timeline-item h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 6px; }
.timeline-item p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-detail-card { background: var(--dark); overflow: hidden; transition: var(--transition); border: 1px solid var(--glass-border); display: flex; flex-direction: column; }
.service-detail-card:hover { border-color: rgba(201,168,76,0.3); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.service-detail-img { height: 220px; overflow: hidden; position: relative; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-detail-card:hover .service-detail-img img { transform: scale(1.05); }
.service-detail-badge { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--black); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 12px; font-weight: 600; }
.service-detail-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.service-detail-body h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 12px; }
.service-detail-body p { font-size: 0.85rem; color: var(--white-dim); line-height: 1.8; flex: 1; }
.service-features-list { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.service-feature-tag { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border: 1px solid var(--glass-border); color: var(--white-dim); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters { display: flex; overflow-x: auto; border: 1px solid var(--glass-border); width: fit-content; margin: 0 auto 60px; }
.gallery-filter-btn { padding: 12px 28px; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; background: transparent; border: none; border-right: 1px solid var(--glass-border); color: var(--text-muted); cursor: pointer; transition: var(--transition); white-space: nowrap; }
.gallery-filter-btn:last-child { border-right: none; }
.gallery-filter-btn:hover, .gallery-filter-btn.active { background: var(--gold); color: var(--black); }
.masonry-grid { columns: 3; column-gap: 16px; }
.masonry-item { break-inside: avoid; margin-bottom: 16px; overflow: hidden; position: relative; cursor: pointer; }
.masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: background 0.4s; }
.masonry-item:hover .masonry-overlay { background: rgba(0,0,0,0.5); }
.masonry-icon { color: var(--white); font-size: 1.8rem; opacity: 0; transition: var(--transition); }
.masonry-item:hover .masonry-icon { opacity: 1; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 24px; right: 32px; font-size: 2rem; cursor: pointer; color: var(--white-dim); transition: color 0.3s; background: none; border: none; }
.lightbox-close:hover { color: var(--gold); }

/* ============================================================
   FORMS
   ============================================================ */
.form-section { background: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.form-group label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--white); padding: 14px 18px;
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color 0.3s; border-radius: 2px; -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark); }
.upload-zone { border: 1px dashed rgba(201,168,76,0.3); padding: 48px 24px; text-align: center; cursor: pointer; transition: border-color 0.3s, background 0.3s; }
.upload-zone:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.upload-icon { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.upload-zone p { font-size: 0.85rem; color: var(--white-dim); margin-bottom: 4px; }
.upload-zone span { font-size: 0.7rem; color: var(--text-muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-info-card { background: var(--dark); border: 1px solid var(--glass-border); padding: 44px; }
.contact-info-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--glass-border); align-items: flex-start; }
.contact-info-item:first-of-type { padding-top: 0; }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon { width: 44px; height: 44px; border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-info-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.contact-info-value { font-size: 0.9rem; color: var(--white); line-height: 1.6; }
.map-container { width: 100%; height: 400px; overflow: hidden; border: 1px solid var(--glass-border); margin-top: 80px; }
.map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(80%) contrast(1.1) brightness(0.8); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-stats { width: 70%; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .gallery-preview-grid .gp-item:first-child { grid-column: 1 / 3; grid-row: auto; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .about-strip-inner { flex-wrap: wrap; }
  .about-strip-item { flex: 1 1 calc(50% - 1px); }
}
@media (max-width: 600px) {
  .section-pad { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: 1fr 1fr; }
  .masonry-grid { columns: 2; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr; }
  .gallery-preview-grid .gp-item:first-child { grid-column: 1; }
  .gallery-filters { width: 100%; }
  .about-strip-item { flex: 1 1 100%; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .masonry-grid { columns: 1; }
}