/* ============================================
   LAGOTTE — Global Stylesheet
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --gold: #C8A44E;
  --gold-light: #E8D5A0;
  --gold-dark: #8B6914;
  --dark: #0A0A0A;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --dark-4: #222222;
  --dark-5: #2A2A2A;
  --light: #F5F0E8;
  --light-2: #E8E0D0;
  --white: #FAFAFA;
  --gray: #888888;
  --gray-light: #AAAAAA;
  --gray-dark: #555555;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.5);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed; inset: 0; background: var(--dark); z-index: 10000;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 200px; height: 2px; background: var(--dark-4);
  margin-top: 2rem; border-radius: 2px; overflow: hidden;
}
.preloader-bar::after {
  content: ''; display: block; width: 40%; height: 100%;
  background: var(--gold); animation: preloaderSlide 1.2s ease-in-out infinite;
}
@keyframes preloaderPulse { 0%,100%{opacity:.5} 50%{opacity:1} }
@keyframes preloaderSlide { 0%{transform:translateX(-100%)} 100%{transform:translateX(350%)} }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 4%; display: flex; align-items: center;
  justify-content: space-between; transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95); backdrop-filter: blur(20px);
  padding: 0.8rem 4%; border-bottom: 1px solid rgba(200,164,78,0.1);
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 900;
  color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > .nav-link-btn {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.6rem 1.2rem; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--light-2);
  transition: color var(--transition-fast); cursor: pointer;
  background: none; border: none; font-family: var(--font-body);
}
.nav-links > li > a:hover, .nav-links > li > .nav-link-btn:hover,
.nav-links > li > a.active, .nav-links > li > .nav-link-btn.active {
  color: var(--gold);
}
.dropdown-arrow { font-size: 0.6rem; transition: transform var(--transition-fast); }
.nav-links > li:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 280px;
  background: rgba(17,17,17,0.98); backdrop-filter: blur(20px);
  border: 1px solid rgba(200,164,78,0.15); border-radius: 4px;
  padding: 0.5rem 0; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all var(--transition-fast);
  box-shadow: var(--shadow-lg);
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 0.7rem 1.5rem; font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.04em; color: var(--gray-light); transition: all var(--transition-fast);
  border-left: 2px solid transparent;
}
.dropdown a:hover {
  color: var(--gold); background: rgba(200,164,78,0.05);
  border-left-color: var(--gold); padding-left: 1.8rem;
}
.nav-cta {
  margin-left: 1rem; padding: 0.6rem 1.8rem !important;
  background: var(--gold) !important; color: var(--dark) !important;
  font-weight: 600 !important; border-radius: 2px;
  transition: all var(--transition-fast) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

/* Mobile */
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; z-index: 1001; padding: 5px;
}
.hamburger span {
  width: 28px; height: 2px; background: var(--gold);
  transition: all 0.3s ease; display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(30px);
  z-index: 999; padding: 100px 8% 40px; overflow-y: auto;
  opacity: 0; transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; }
.mobile-menu-links { list-style: none; }
.mobile-menu-links li a,
.mobile-menu-links li .mob-link {
  display: block; padding: 1rem 0; font-size: 1.5rem;
  font-family: var(--font-display); font-weight: 600; color: var(--light-2);
  border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer;
  background: none; border-top: none; border-left: none; border-right: none;
  width: 100%; text-align: left;
}
.mobile-menu-links li a:hover, .mobile-menu-links li .mob-link:hover { color: var(--gold); }
.mobile-sub { display: none; padding-left: 1.5rem; }
.mobile-sub.open { display: block; }
.mobile-sub a {
  font-size: 1rem !important; font-family: var(--font-body) !important;
  font-weight: 400 !important; color: var(--gray-light) !important;
  padding: 0.6rem 0 !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.7) 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; z-index: 2;
  background-image: linear-gradient(rgba(200,164,78,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,164,78,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content { position: relative; z-index: 3; padding: 0 8%; max-width: 900px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 2rem;
  opacity: 0; animation: fadeInUp 0.8s ease 0.8s forwards;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900; line-height: 1.05; color: var(--white); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeInUp 0.8s ease 1s forwards;
}
.hero-title .gold { color: var(--gold); }
.hero-desc {
  font-size: 1.15rem; font-weight: 300; color: var(--gray-light);
  max-width: 600px; line-height: 1.8; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeInUp 0.8s ease 1.2s forwards;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeInUp 0.8s ease 1.4s forwards;
}
.hero-stats {
  position: absolute; bottom: 60px; right: 8%; z-index: 3;
  display: flex; gap: 3rem;
  opacity: 0; animation: fadeInUp 0.8s ease 1.6s forwards;
}
.hero-stat { text-align: right; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray); margin-top: 0.3rem;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 8%; z-index: 3;
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray);
  opacity: 0; animation: fadeInUp 0.8s ease 1.8s forwards;
}
.hero-scroll-line {
  width: 1px; height: 50px; background: var(--dark-4);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 50%; background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{top:-50%} 100%{top:150%} }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.2rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.btn-primary { background: var(--gold); color: var(--dark); border: none; }
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200,164,78,0.3);
}
.btn-outline {
  background: transparent; color: var(--light-2);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-arrow { transition: transform var(--transition-fast); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 100px 8%; }
.section-dark { background: var(--dark); }
.section-darker { background: var(--dark-2); }
.section-darkest { background: var(--dark-3); }
.section-gold { background: var(--gold); color: var(--dark); }
.section-header { max-width: 700px; margin-bottom: 4rem; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.center .section-tag::before { display: none; }
.center .section-tag::after { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.15; color: var(--white); margin-bottom: 1rem;
}
.section-gold .section-title { color: var(--dark); }
.section-subtitle { font-size: 1.05rem; font-weight: 300; color: var(--gray-light); line-height: 1.8; }
.section-gold .section-subtitle { color: rgba(0,0,0,0.6); }

/* ============================================
   PROJECTS GRID
   ============================================ */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-card {
  position: relative; height: 450px; overflow: hidden; border-radius: 4px; cursor: pointer;
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.project-card:hover img { transform: scale(1.08); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
  transition: background var(--transition);
}
.project-card:hover .project-card-overlay {
  background: linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.3) 100%);
}
.project-card-tag {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.project-card-title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.5rem;
}
.project-card-location { font-size: 0.82rem; color: var(--gray); }
.project-card-value {
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold);
  margin-top: 0.5rem; opacity: 0; transform: translateY(10px);
  transition: all var(--transition);
}
.project-card:hover .project-card-value { opacity: 1; transform: translateY(0); }
.project-card.featured { grid-column: span 2; height: 500px; }

/* ============================================
   SERVICES HOME GRID
   ============================================ */
.services-home-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(200,164,78,0.1); border: 1px solid rgba(200,164,78,0.1);
}
.service-home-card {
  background: var(--dark-2); padding: 3rem 2.5rem;
  transition: all var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
.service-home-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-home-card:hover::before { transform: scaleX(1); }
.service-home-card:hover { background: var(--dark-3); }
.service-home-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: block; }
.service-home-num {
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--gold);
  letter-spacing: 0.2em; margin-bottom: 1rem;
}
.service-home-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.8rem;
}
.service-home-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.service-home-link {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: gap var(--transition-fast);
}
.service-home-card:hover .service-home-link { gap: 0.8rem; }

/* ============================================
   ABOUT HOME
   ============================================ */
.about-home { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-home-img { position: relative; height: 550px; overflow: hidden; border-radius: 4px; }
.about-home-img img { width: 100%; height: 100%; object-fit: cover; }
.about-home-img-badge {
  position: absolute; bottom: 2rem; right: 2rem; background: var(--gold);
  color: var(--dark); padding: 1.5rem; text-align: center; border-radius: 4px;
}
.about-home-img-badge .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; line-height: 1; }
.about-home-img-badge .label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; margin-top: 0.3rem; }

/* Stats */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding: 3rem 0; border-top: 1px solid rgba(200,164,78,0.15);
  border-bottom: 1px solid rgba(200,164,78,0.15); margin: 3rem 0;
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-top: 0.5rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--dark-3); border: 1px solid var(--dark-5);
  padding: 2.5rem; border-radius: 4px; transition: all var(--transition);
}
.testimonial-card:hover { border-color: rgba(200,164,78,0.2); transform: translateY(-4px); }
.testimonial-quote { font-size: 3rem; color: var(--gold); opacity: 0.3; font-family: var(--font-display); line-height: 1; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.95rem; color: var(--gray-light); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: var(--gray); margin-top: 0.2rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
  padding: 4rem; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 4px; margin: 0 8%; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px; border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.05);
}
.cta-banner-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--dark); }
.cta-banner-desc { color: rgba(0,0,0,0.6); font-size: 0.95rem; margin-top: 0.5rem; }
.cta-banner .btn { background: var(--dark); color: var(--gold); white-space: nowrap; flex-shrink: 0; }
.cta-banner .btn:hover { background: var(--dark-2); transform: translateY(-2px); }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section { padding: 3rem 0; overflow: hidden; border-top: 1px solid var(--dark-4); border-bottom: 1px solid var(--dark-4); }
.marquee-track { display: flex; animation: marquee 30s linear infinite; gap: 4rem; align-items: center; }
.marquee-item {
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gray-dark); white-space: nowrap;
  flex-shrink: 0; opacity: 0.5;
}
.marquee-item .dot { display: inline-block; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin-left: 4rem; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header { position: relative; padding: 180px 8% 100px; overflow: hidden; }
.page-header-bg { position: absolute; inset: 0; z-index: 0; }
.page-header-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.2) saturate(0.5); }
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(10,10,10,0.7), rgba(10,10,10,0.95));
}
.page-header-content { position: relative; z-index: 2; }
.page-header-breadcrumb {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 1.5rem;
}
.page-header-breadcrumb a { color: var(--gold); }
.page-header-breadcrumb span { color: var(--gray-dark); margin: 0 0.5rem; }
.page-header-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: var(--white); margin-bottom: 1rem;
}
.page-header-desc {
  font-size: 1.1rem; font-weight: 300; color: var(--gray-light);
  max-width: 650px; line-height: 1.8;
}

/* ============================================
   VALUES / GRID CARDS
   ============================================ */
.about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--dark-3); border: 1px solid var(--dark-5);
  padding: 2.5rem 2rem; border-radius: 4px; text-align: center;
  transition: all var(--transition);
}
.value-card:hover { border-color: rgba(200,164,78,0.3); transform: translateY(-4px); }
.value-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.value-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; }
.value-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

/* ============================================
   TIMELINE
   ============================================ */
.timeline { position: relative; padding-left: 3rem; margin-top: 3rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--dark-4)); }
.timeline-item { position: relative; padding-bottom: 3rem; padding-left: 2rem; }
.timeline-item::before {
  content: ''; position: absolute; left: -3.35rem; top: 0.2rem;
  width: 12px; height: 12px; background: var(--gold); border-radius: 50%;
  border: 3px solid var(--dark);
}
.timeline-year { font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 0.5rem; }
.timeline-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.timeline-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ============================================
   LEADERSHIP
   ============================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-card { text-align: center; transition: transform var(--transition); }
.team-card:hover { transform: translateY(-6px); }
.team-img { width: 100%; aspect-ratio: 3/4; border-radius: 4px; margin-bottom: 1.2rem; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); }
.team-role { font-size: 0.8rem; color: var(--gold); margin-top: 0.3rem; }

/* ============================================
   SERVICES FULL GRID
   ============================================ */
.services-all-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.service-full-card {
  display: grid; grid-template-columns: 1fr 1.2fr;
  background: var(--dark-3); border: 1px solid var(--dark-5);
  border-radius: 4px; overflow: hidden; transition: all var(--transition); cursor: pointer;
}
.service-full-card:hover { border-color: rgba(200,164,78,0.2); transform: translateY(-3px); }
.service-full-img { height: 300px; overflow: hidden; }
.service-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-full-card:hover .service-full-img img { transform: scale(1.06); }
.service-full-content { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.service-full-tag { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.service-full-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.service-full-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.2rem; }
.service-full-link { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 0.5rem; }

/* ============================================
   SERVICE DETAIL
   ============================================ */
.service-detail-content { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; }
.service-detail-main h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--white); margin: 2rem 0 1rem; }
.service-detail-main p { font-size: 0.95rem; color: var(--gray-light); line-height: 1.8; margin-bottom: 1rem; }
.service-detail-sidebar-card { background: var(--dark-3); border: 1px solid var(--dark-5); padding: 2rem; border-radius: 4px; margin-bottom: 2rem; }
.sidebar-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--dark-5); }
.sidebar-list { list-style: none; }
.sidebar-list li { padding: 0.6rem 0; font-size: 0.85rem; color: var(--gray-light); border-bottom: 1px solid rgba(255,255,255,0.03); display: flex; align-items: center; gap: 0.6rem; }
.sidebar-list li::before { content: '→'; color: var(--gold); font-size: 0.75rem; }
.sidebar-list a { color: var(--gray-light); transition: color var(--transition-fast); }
.sidebar-list a:hover { color: var(--gold); }
.key-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; }
.key-fact { background: var(--dark-3); padding: 1.5rem; border-radius: 4px; text-align: center; border: 1px solid var(--dark-5); }
.key-fact-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.key-fact-label { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem; }

/* ============================================
   PROJECTS PAGE
   ============================================ */
.projects-filter { display: flex; gap: 0.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn {
  padding: 0.6rem 1.5rem; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray);
  border: 1px solid var(--dark-5); border-radius: 2px;
  transition: all var(--transition-fast); cursor: pointer;
  background: transparent; font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active { color: var(--gold); border-color: var(--gold); background: rgba(200,164,78,0.05); }
.projects-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-full-card { position: relative; height: 380px; overflow: hidden; border-radius: 4px; cursor: pointer; }
.project-full-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-full-card:hover img { transform: scale(1.06); }
.project-full-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 60%);
  padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end;
}
.project-full-tag { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.project-full-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.project-full-loc { font-size: 0.8rem; color: var(--gray); margin-top: 0.3rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-info-card {
  background: var(--dark-3); border: 1px solid var(--dark-5);
  padding: 2rem; border-radius: 4px; margin-bottom: 1.5rem;
  display: flex; gap: 1.2rem; transition: all var(--transition);
}
.contact-info-card:hover { border-color: rgba(200,164,78,0.2); }
.contact-info-icon {
  font-size: 1.5rem; color: var(--gold); flex-shrink: 0;
  width: 50px; height: 50px; display: flex; align-items: center;
  justify-content: center; background: rgba(200,164,78,0.08); border-radius: 4px;
}
.contact-info-title { font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.contact-info-text { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
.contact-form { background: var(--dark-3); border: 1px solid var(--dark-5); padding: 3rem; border-radius: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group.full { grid-column: span 2; }
.form-label { display: block; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 0.6rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.9rem 1.2rem; background: var(--dark-4);
  border: 1px solid var(--dark-5); border-radius: 2px; color: var(--light);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color var(--transition-fast); outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-select option { background: var(--dark-3); }

/* ============================================
   CAREERS
   ============================================ */
.careers-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; }
.benefit-card {
  background: var(--dark-3); border: 1px solid var(--dark-5);
  padding: 2.5rem 2rem; border-radius: 4px; text-align: center;
  transition: all var(--transition);
}
.benefit-card:hover { border-color: rgba(200,164,78,0.2); transform: translateY(-4px); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.benefit-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; }
.benefit-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }
.jobs-list { margin-top: 2rem; }
.job-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.8rem 2rem; background: var(--dark-3); border: 1px solid var(--dark-5);
  border-radius: 4px; margin-bottom: 1rem; transition: all var(--transition); cursor: pointer;
}
.job-card:hover { border-color: rgba(200,164,78,0.2); transform: translateX(4px); }
.job-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--white); }
.job-meta { display: flex; gap: 1.5rem; margin-top: 0.4rem; }
.job-meta span { font-size: 0.78rem; color: var(--gray); display: flex; align-items: center; gap: 0.3rem; }
.job-apply { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; }

/* ============================================
   SAFETY
   ============================================ */
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.safety-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.safety-metric { background: var(--dark-3); border: 1px solid var(--dark-5); padding: 2rem; border-radius: 4px; text-align: center; }
.safety-metric-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.safety-metric-label { font-size: 0.75rem; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem; }
.safety-certs { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.safety-cert { padding: 0.6rem 1.2rem; background: rgba(200,164,78,0.08); border: 1px solid rgba(200,164,78,0.15); border-radius: 2px; font-size: 0.78rem; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; }

/* ============================================
   SUSTAINABILITY
   ============================================ */
.sustain-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.sustain-card {
  background: var(--dark-3); border: 1px solid var(--dark-5);
  padding: 2.5rem 2rem; border-radius: 4px; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.sustain-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0);
  transition: transform var(--transition);
}
.sustain-card:hover::after { transform: scaleX(1); }
.sustain-card:hover { transform: translateY(-4px); }
.sustain-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.sustain-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; }
.sustain-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 80px 8% 40px; background: var(--dark); border-top: 1px solid var(--dark-4); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.8; margin-top: 1rem; max-width: 300px; }
.footer-heading { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 1.5rem; letter-spacing: 0.05em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { font-size: 0.85rem; color: var(--gray); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 0.8rem; margin-bottom: 1rem; font-size: 0.85rem; color: var(--gray); }
.footer-contact-icon { color: var(--gold); flex-shrink: 0; font-size: 1rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--dark-4);
  font-size: 0.78rem; color: var(--gray-dark);
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 36px; height: 36px; display: flex; align-items: center;
  justify-content: center; border: 1px solid var(--dark-5); border-radius: 50%;
  color: var(--gray); font-size: 0.85rem; transition: all var(--transition-fast);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

/* Back to top */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px;
  background: var(--gold); color: var(--dark); display: flex;
  align-items: center; justify-content: center; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; opacity: 0; visibility: hidden;
  transition: all var(--transition); z-index: 100; border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(200,164,78,0.4); }

/* Map placeholder */
.map-placeholder {
  background: var(--dark-3); border: 1px solid var(--dark-5); border-radius: 4px;
  height: 350px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.featured { grid-column: span 2; }
  .services-home-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .hero-stats { position: static; margin-top: 3rem; gap: 2rem; }
  .hero-stat { text-align: left; }
  .hero-scroll { display: none; }
  .about-home { grid-template-columns: 1fr; }
  .about-home-img { height: 400px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: span 1; height: 400px; }
  .project-card { height: 350px; }
  .services-home-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-all-grid { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 1fr; }
  .service-full-img { height: 200px; }
  .service-detail-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .projects-full-grid { grid-template-columns: 1fr 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .careers-benefits-grid { grid-template-columns: 1fr; }
  .sustain-pillars { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; margin: 0 4%; padding: 3rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 60px 5%; }
  .hero-content { padding: 0 5%; }
  .hero-btns { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .key-facts { grid-template-columns: 1fr; }
  .projects-full-grid { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .safety-metrics { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
