/* ============================================================
   SAS ENTERPRISES — Corporate Industrial Website
   Light Theme | Multi-Page | ThemeForest Inspired
   Stål (Qode) + Extice aesthetic
   ============================================================ */

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

/* === VARIABLES === */
:root {
  --navy:       #0B1C30;
  --navy-lt:    #122540;
  --gold:       #B8910C;
  --gold-lt:    #D4A818;
  --gold-pale:  #FBF5E0;
  --white:      #FFFFFF;
  --cream:      #F4F1EB;
  --cream-dk:   #EAE5D8;
  --text:       #1A1A1A;
  --text-md:    #4A4A4A;
  --text-lt:    #888888;
  --border:     #DDD8CE;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow:     0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.13);
  --head:       'Barlow Condensed', sans-serif;
  --sub:        'Barlow', sans-serif;
  --body:       'DM Sans', sans-serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --container:  1240px;
}

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

/* === CONTAINER === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
}
h1 { font-size: clamp(3rem, 7vw, 6rem); text-transform: uppercase; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); text-transform: uppercase; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); text-transform: uppercase; }
h4 { font-family: var(--sub); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
p { color: var(--text-md); line-height: 1.8; }

/* === EYEBROW === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* === SECTION === */
.section { padding: 100px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); }

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.center .eyebrow { justify-content: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1rem; color: var(--text-lt); max-width: 560px; line-height: 1.8; }
.section-header.center p { margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sub);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--white); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sub);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: gap 0.25s var(--ease), color 0.25s;
}
.btn-link:hover { gap: 14px; }
.btn-link .arrow { font-size: 1rem; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.25); }
#header.transparent { background: transparent; }
#header.transparent.scrolled { background: var(--navy); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-text {
  font-family: var(--head);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}
.logo-name {
  font-family: var(--head);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.logo-name span { color: var(--gold); }
.logo-tagline {
  font-family: var(--sub);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--sub);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 11px;
  border-radius: 2px;
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cta .phone {
  font-family: var(--sub);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-cta .phone i { color: var(--gold); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--sub);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.65);
  padding: 12px 24px;
  border-radius: 4px;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), color 0.25s, background 0.25s;
}
.mobile-nav a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.mobile-nav a.active { color: var(--gold); }
.mobile-nav.open a { transform: translateY(0); opacity: 1; }
.mobile-nav.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.30s; }
.mobile-nav-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 12px 0;
}
.mobile-nav-contact {
  margin-top: 4px;
  font-family: var(--sub);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   PAGE HERO (full-screen, home)
   ============================================================ */
#hero {
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero > .container {
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: grayscale(10%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,28,48,0.75) 0%,
    rgba(11,28,48,0.45) 55%,
    rgba(11,28,48,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 80px;
  margin-left: 0;
  margin-right: auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--head);
  font-size: clamp(1.8rem, 2.6vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-h1 .highlight { color: var(--gold); }
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--sub);
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(11,28,48,0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(184,145,12,0.25);
}
.hero-stats-inner {
  display: flex;
  align-items: center;
  height: 90px;
}
.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 0 20px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--sub);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

/* ============================================================
   PAGE HEADER (inner pages: about, services, etc.)
   ============================================================ */
.page-header {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
  padding-top: 80px;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.page-header-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(20%);
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,28,48,0.9) 0%, rgba(11,28,48,0.5) 100%);
}
.page-header-content { position: relative; z-index: 2; }
.page-header-content .eyebrow { color: var(--gold); }
.page-header-content .eyebrow::before { background: var(--gold); }
.page-header-content h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sub);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); }

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker {
  background: var(--gold);
  overflow: hidden;
  height: 46px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  font-family: var(--sub);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}
.ticker-dot { font-size: 0.4rem; opacity: 0.6; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   HOME — ABOUT INTRO (split)
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split-image {
  position: relative;
}
.about-split-image .main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-split-image .accent-box {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 180px;
  background: var(--navy);
  padding: 24px 20px;
  text-align: center;
}
.accent-box-num {
  font-family: var(--head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.accent-box-label {
  font-family: var(--sub);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.about-split-content h2 { margin-bottom: 20px; }
.about-split-content p { margin-bottom: 16px; font-size: 0.95rem; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-md);
}
.feature-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.feature-item i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   HOME — CORE BUSINESS (featured section)
   ============================================================ */
.core-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.core-feature-img {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.core-feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.core-feature-img:hover img { transform: scale(1.04); }
.core-feature-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,28,48,0.2), rgba(11,28,48,0.05));
}
.italian-badge {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.italian-flag {
  display: flex;
  width: 30px; height: 20px;
  overflow: hidden;
  border-radius: 2px;
  flex-shrink: 0;
}
.italian-flag span { flex: 1; }
.italian-flag span:nth-child(1) { background: #009246; }
.italian-flag span:nth-child(2) { background: #fff; }
.italian-flag span:nth-child(3) { background: #CE2B37; }
.italian-badge-text { font-family: var(--sub); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.5; }
.italian-badge-text span { display: block; color: var(--gold); font-size: 0.55rem; }
.core-feature-content {
  background: var(--navy);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.core-feature-content .eyebrow { color: var(--gold); }
.core-feature-content .eyebrow::before { background: var(--gold); }
.core-feature-content h2 { color: var(--white); margin-bottom: 20px; }
.core-feature-content p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 14px; }
.core-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.core-product {
  background: rgba(255,255,255,0.04);
  padding: 20px;
  transition: background 0.3s;
}
.core-product:hover { background: rgba(184,145,12,0.12); }
.core-product-title {
  font-family: var(--sub);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.core-product-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.service-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-3px); }
.service-card-img {
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(12%);
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.07); filter: grayscale(0%); }
.service-card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
  z-index: 1;
}
.service-card:hover::before { width: 100%; }
.service-card:hover .service-card-body { background: var(--cream); }
.service-number {
  font-family: var(--head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--border);
  margin-bottom: 8px;
}
.service-title {
  font-family: var(--head);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s;
  margin-top: auto;
}
.service-card-link:hover { gap: 14px; }

/* Full-width service grid (services page) */
.services-grid-full { grid-template-columns: repeat(3, 1fr); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-section {
  background: var(--navy);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--head);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-number sup { font-size: 0.5em; vertical-align: super; }
.stat-label {
  font-family: var(--sub);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.stat-divider {
  width: 30px; height: 2px;
  background: var(--gold);
  opacity: 0.4;
  margin: 10px auto;
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.client-item {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}
.client-item:hover { background: var(--cream); }
.client-icon-wrap {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--gold);
}
.client-name {
  font-family: var(--sub);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.client-type {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lt);
}

/* ============================================================
   PROJECTS GRID — (see text-only redesign below)
   ============================================================ */

/* Projects filter */
.projects-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lt);
  padding: 8px 20px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ============================================================
   LEADERSHIP CARDS
   ============================================================ */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.leader-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.leader-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.leader-card-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(10%);
  transition: transform 0.5s var(--ease);
}
.leader-card:hover .leader-card-image { transform: scale(1.03); }
.leader-card-body { padding: 32px 36px; }
.leader-name {
  font-family: var(--head);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.leader-title {
  font-family: var(--sub);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.leader-divider {
  width: 40px; height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}
.leader-bio { font-size: 0.88rem; color: var(--text-md); line-height: 1.8; margin-bottom: 20px; }
.leader-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.leader-tag {
  font-family: var(--sub);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-md);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 4px 12px;
}

/* ============================================================
   LEADERSHIP GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: var(--navy);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,28,48,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s var(--ease);
}
.gallery-item-overlay i {
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover .gallery-item-overlay { background: rgba(11,28,48,0.55); }
.gallery-item:hover .gallery-item-overlay i { opacity: 1; transform: scale(1); }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,10,18,0.95);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
}
.lightbox.active .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 9001;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); transform: scale(1.1); }
.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease);
  z-index: 9001;
  user-select: none;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-family: var(--sub);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 9001;
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .lightbox-arrow { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 480px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE — Timeline, Values
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 60px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -52px; top: 4px;
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  font-family: var(--head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.timeline-text { font-size: 0.88rem; color: var(--text-lt); line-height: 1.7; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  transition: background 0.3s;
}
.value-card:hover { background: var(--cream); }
.value-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.value-title {
  font-family: var(--sub);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}
.value-text { font-size: 0.83rem; color: var(--text-lt); line-height: 1.7; }

/* Quarry section */
.quarry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quarry-item {
  background: var(--white);
  padding: 28px;
  transition: background 0.3s;
}
.quarry-item:hover { background: var(--cream); }
.quarry-type {
  font-family: var(--sub);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.quarry-name { font-family: var(--sub); font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.quarry-loc { font-size: 0.8rem; color: var(--text-lt); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.contact-card-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border: 1px solid rgba(184,145,12,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-card.whatsapp .contact-card-icon { background: #e7f5ec; border-color: #25D366; color: #25D366; }
.contact-card-content { flex: 1; }
.contact-card-label {
  font-family: var(--sub);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 4px;
}
.contact-card-value {
  font-family: var(--sub);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.contact-card-sub { font-size: 0.8rem; color: var(--text-lt); margin-top: 2px; }
.contact-card.whatsapp .contact-card-value { color: #25D366; }
.wa-big {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #25D366;
  color: white;
  padding: 22px 32px;
  margin-bottom: 32px;
  font-family: var(--sub);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.3s;
  text-decoration: none;
}
.wa-big:hover { background: #1ebe5d; }
.wa-big-icon { font-size: 1.8rem; }

.contact-map {
  border: 1px solid var(--border);
  overflow: hidden;
  height: 380px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo-name {
  font-family: var(--head);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-logo-name span { color: var(--gold); }
.footer-logo-sub {
  font-family: var(--sub);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-contact-mini { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-mini a, .footer-contact-mini span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
  font-family: var(--sub);
}
.footer-contact-mini a:hover { color: var(--gold); }
.footer-contact-mini i { color: var(--gold); font-size: 0.9rem; }
.footer-col-title {
  font-family: var(--sub);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s, padding-left 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sub);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-col ul li a::before { content: '—'; font-size: 0.6rem; color: var(--gold); opacity: 0.6; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--sub);
}
.footer-copy span { color: var(--gold); }
.footer-tagline {
  font-family: var(--sub);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  font-family: var(--sub);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  transition: background 0.3s;
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; }

/* ============================================================
   PRODUCTS GRID (Core Business page)
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  transition: all 0.35s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.product-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-3px); }
.product-card:hover .product-card-body { background: var(--cream); }
.product-card-img {
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
  transition: transform 0.55s var(--ease), filter 0.4s;
}
.product-card:hover .product-card-img img { transform: scale(1.07); filter: grayscale(0%); }
.product-card-body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.product-title {
  font-family: var(--sub);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 12px;
}
.product-desc {
  font-size: 0.84rem;
  color: var(--text-md);
  line-height: 1.75;
  margin-bottom: 16px;
}
.product-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-specs li {
  font-size: 0.78rem;
  color: var(--text-lt);
  padding-left: 16px;
  position: relative;
}
.product-specs li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================================
   ADVANTAGE GRID (Divisions page)
   ============================================================ */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.advantage-card {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  transition: background 0.3s;
}
.advantage-card:hover { background: var(--cream); }
.advantage-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.advantage-title {
  font-family: var(--sub);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 10px;
}
.advantage-desc {
  font-size: 0.82rem;
  color: var(--text-lt);
  line-height: 1.7;
}

/* ============================================================
   LEADER PROFILE (Leadership page — full-width split)
   ============================================================ */
.leader-profile {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.leader-profile-alt {
  grid-template-columns: 1.2fr 1fr;
}
.leader-profile-img {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 520px;
}
.leader-profile-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(8%);
  transition: transform 0.6s var(--ease);
  display: block;
}
.leader-profile:hover .leader-profile-img img { transform: scale(1.03); }
.leader-profile-name-card {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(11,28,48,0.92);
  padding: 20px 28px;
  backdrop-filter: blur(4px);
}
.leader-profile-name {
  font-family: var(--head);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2px;
}
.leader-profile-title {
  font-family: var(--sub);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.leader-profile-content {
  padding: 40px 44px;
}
.leader-profile-content h2 { margin-bottom: 14px; font-size: 1.9rem; }
.leader-positions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.leader-position {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.leader-position i {
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}
.leader-position span {
  font-family: var(--sub);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.leader-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.leader-highlight-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  padding: 7px 14px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.leader-highlight-num {
  font-family: var(--head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.leader-highlight-label {
  font-family: var(--sub);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-lt);
}
.leader-profile-content p { margin-bottom: 10px; font-size: 0.88rem; line-height: 1.65; }

/* ============================================================
   ICCI BLOCK (Leadership page)
   ============================================================ */
.icci-block {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 48px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
}
.icci-block-icon {
  font-size: 3rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}
.icci-block-content h3 { margin-bottom: 16px; }
.icci-block-content p { margin-bottom: 12px; }

/* ============================================================
   PROJECT CARD — text-only redesign
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--border);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.project-card[data-cat="government"]  { border-top-color: var(--navy); }
.project-card[data-cat="diplomatic"]  { border-top-color: var(--gold); }
.project-card[data-cat="commercial"]  { border-top-color: #2a7d4f; }
.project-card[data-cat="infrastructure"] { border-top-color: #c07b2a; }
.project-card.hidden { display: none; }

.project-num {
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--head);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(11,28,48,0.05);
  pointer-events: none;
  user-select: none;
}
.project-cat {
  display: inline-flex;
  align-items: center;
  font-family: var(--sub);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  width: fit-content;
  margin-bottom: 16px;
}
.project-card[data-cat="government"]  .project-cat { background: rgba(11,28,48,0.07);  color: var(--navy); }
.project-card[data-cat="diplomatic"]  .project-cat { background: rgba(184,145,12,0.1); color: #8a6a00; }
.project-card[data-cat="commercial"]  .project-cat { background: rgba(42,125,79,0.1);  color: #2a7d4f; }
.project-card[data-cat="infrastructure"] .project-cat { background: rgba(192,123,42,0.1); color: #a06020; }
.project-title {
  font-family: var(--sub);
  font-size: 1rem;
  font-weight: 700;
  color: var(--head);
  line-height: 1.35;
  margin-bottom: 10px;
}
.project-divider {
  width: 28px;
  height: 2px;
  background: var(--border);
  margin-bottom: 12px;
}
.project-scope {
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--text-md);
  line-height: 1.75;
}

/* Client item — icon + text variant */
.client-item {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
}
.client-item:hover { background: var(--cream); }
.client-item i {
  font-size: 1.5rem;
  color: var(--gold);
}
.client-item span {
  font-family: var(--sub);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .about-split-image .accent-box { right: 0; bottom: -20px; }
  .core-feature { grid-template-columns: 1fr; }
  .core-feature-content { padding: 60px 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .quarry-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .leader-profile { grid-template-columns: 1fr; }
  .leader-profile-alt { grid-template-columns: 1fr; }
  .leader-profile-alt .leader-profile-content { order: -1; }
  .leader-profile-img img { min-height: 420px; }
  .icci-block { flex-direction: column; gap: 24px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .nav-links { display: none; }
  .header-cta .phone { display: none; }
  .header-cta .btn { display: none; }
  .header-cta .btn-whatsapp { display: none; }
  .hamburger { display: flex; }
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  .hero-stats-inner { flex-direction: column; height: auto; }
  .hero-stat { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); flex-direction: row; justify-content: space-between; padding: 16px 20px; }
  .hero-scroll { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-full { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.large { grid-column: span 1; }
  .project-card.large .project-card-image { aspect-ratio: 4/3; }
  .leadership-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .quarry-grid { grid-template-columns: 1fr; }
  .about-split-image .accent-box { position: static; width: auto; margin-top: 20px; padding: 20px; display: flex; align-items: center; gap: 16px; }
  .core-products-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .page-header { min-height: 300px; }
  .hero-stat-num { font-size: 1.6rem; }
  .products-grid { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: 1fr 1fr; }
  .leader-profile-content { padding: 36px 28px; }
  .leader-highlights { grid-template-columns: repeat(3, 1fr); }
  .icci-block { padding: 28px; }
}
