/* ================================================================
   BENAA CONTRACTING W.L.L.
   ASK Real Estate-inspired redesign — Benaa brand identity
   
   Brand colours (exact from brand manual):
     Plum:   #3F093D   Primary brand
     Gold:   #F4B651   Primary accent
     Cream:  #F5F0E8   Light sections
     White:  #FFFFFF
     Ink:    #080610   Footer/dark
================================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --plum:        #3F093D;
  --plum-deep:   #280624;
  --plum-mid:    #5C1259;
  --plum-light:  rgba(63,9,61,0.06);
  --gold:        #F4B651;
  --gold-dark:   #C8860A;
  --gold-pale:   rgba(244,182,81,0.12);
  --gold-border: rgba(244,182,81,0.3);
  --cream:       #F5F0E8;
  --cream-mid:   #EDE5D5;
  --cream-dark:  #E0D5C2;
  --white:       #FFFFFF;
  --ink:         #0A0810;
  --text:        #1A0C1A;
  --text-mid:    #4A3045;
  --text-light:  #8A7085;
  --text-ghost:  #B8A8B5;
  --border:      rgba(63,9,61,0.10);
  --border-dark: rgba(255,255,255,0.08);

  --display: 'Cormorant Garamond', Georgia, serif;
  --sans:    'DM Sans', system-ui, sans-serif;

  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.4, 0, 0.2, 1);
  --tr:      0.32s var(--ease);
  --tr-f:    0.18s var(--ease-io);

  --r-pill:  9999px;
  --r-lg:    24px;
  --r-md:    16px;
  --r:       10px;
  --r-sm:    6px;

  --s1: 0 1px 4px rgba(8,6,16,0.06);
  --s2: 0 4px 20px rgba(63,9,61,0.10);
  --s3: 0 12px 48px rgba(63,9,61,0.15);
  --sg: 0 8px 32px rgba(244,182,81,0.28);
}

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

/* ── Layout ────────────────────────────────────────────────── */
.wrap       { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
.wrap--tight { max-width: 960px;  margin: 0 auto; padding: 0 60px; }
.sec        { padding: 100px 0; }
.sec--sm    { padding: 64px 0; }
.sec--lg    { padding: 140px 0; }

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.from-left  { transform: translateX(-24px) translateY(0); }
.reveal.from-right { transform: translateX(24px) translateY(0); }
.reveal.from-left.in, .reveal.from-right.in { transform: none; }
.d1 { transition-delay: 0.06s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.18s; }
.d4 { transition-delay: 0.24s; }
.d5 { transition-delay: 0.30s; }
.d6 { transition-delay: 0.36s; }
.d7 { transition-delay: 0.42s; }
.d8 { transition-delay: 0.48s; }

/* ================================================================
   NAVIGATION — floating pill (ASK-inspired)
================================================================ */
.nav-wrap {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1280px;
  transition: top var(--tr), width var(--tr);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-radius: var(--r-pill);
  padding: 10px 14px 10px 20px;
  box-shadow: 0 4px 32px rgba(63,9,61,0.14), 0 1px 0 rgba(63,9,61,0.06);
  transition: var(--tr);
}

.nav.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 8px 48px rgba(63,9,61,0.18), 0 1px 0 rgba(63,9,61,0.08);
}

/* Logo */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 28px;
}
.nav-logo {
  height: 48px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain !important;
  display: block !important;
}
.nav-logo-fb {
  display: none;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.06em;
}

/* Divider */
.nav-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  margin-right: 28px;
  flex-shrink: 0;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  transition: var(--tr-f);
  white-space: nowrap;
}
.nav-link:hover { color: var(--plum); background: var(--plum-light); }
.nav-link.active { color: var(--plum); font-weight: 600; }

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
/* Nav icon action buttons — replaces plain phone number */
.nav-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--tr-f);
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.nav-action-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
/* WhatsApp button — green tinted */
.nav-btn-wa {
  color: #16a34a;
  border-color: rgba(22,163,74,0.25);
  background: rgba(22,163,74,0.06);
}
.nav-btn-wa:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22,163,74,0.25);
}
/* Call button — plum tinted */
.nav-btn-call {
  color: var(--plum);
  border-color: rgba(63,9,61,0.18);
  background: rgba(63,9,61,0.04);
}
.nav-btn-call:hover {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--s2);
}
.nav-cta {
  padding: 11px 24px;
  background: var(--plum);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--r-pill);
  transition: var(--tr-f);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--plum-mid);
  transform: translateY(-1px);
  box-shadow: var(--s2);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: var(--tr);
}
.nav-toggle span:nth-child(1) { width: 22px; }
.nav-toggle span:nth-child(2) { width: 15px; }
.nav-toggle span:nth-child(3) { width: 19px; }
.nav-toggle.open span:nth-child(1) { width: 20px; transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { width: 20px; transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 990;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.nav-drawer.open { opacity: 1; }
.nav-drawer .nav-link { font-size: 26px; font-weight: 400; color: var(--text); padding: 8px 0; }
.nav-drawer .nav-link:hover { color: var(--plum); }

/* ================================================================
   HERO — full-bleed photo with centered content
================================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,8,16,0.38) 0%,
      rgba(10,8,16,0.18) 30%,
      rgba(10,8,16,0.42) 70%,
      rgba(10,8,16,0.72) 100%
    );
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 120px;
  max-width: 900px;
  margin-top: -40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,182,81,0.15);
  border: 1px solid rgba(244,182,81,0.35);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.1s forwards;
}

.hero-headline {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.25s forwards;
}
.hero-headline strong { font-weight: 600; display: block; }
.hero-headline em { font-style: italic; color: var(--gold); display: block; }

.hero-sub {
  font-size: 17px;
  line-height: 1.82;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.42s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.58s forwards;
}

/* Stat strip at bottom */
.hero-stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: stretch;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.75s forwards;
}
.hero-stat {
  flex: 1;
  padding: 24px 0;
  text-align: center;
  border-right: 1px solid var(--border);
  cursor: default;
  transition: background var(--tr-f);
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: var(--cream); }
.hero-stat-n {
  display: block;
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--plum);
  line-height: 1;
}
.hero-stat-l {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
}

/* ================================================================
   ABOUT / WHO WE ARE  — text left, photo right (ASK split layout)
================================================================ */
#about { background: var(--white); }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text-col {}
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.about-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.about-headline {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 24px;
}
.about-headline em { font-style: italic; color: var(--plum); }
.about-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.about-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Three value props */
.about-props {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-mid);
}
.about-prop {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-prop-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--r);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.about-prop-icon svg { width: 20px; height: 20px; color: var(--gold-dark); }
.about-prop-t { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.about-prop-p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* Photo col */
.about-photo-col { position: relative; }
.about-photo-wrap {
  position: sticky;
  top: 100px;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
  box-shadow: var(--s3);
}
.about-photo-ph {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--plum-deep), var(--plum-mid));
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  letter-spacing: 0.14em;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #FFD080 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--sg);
}
.about-badge-n { font-family: var(--display); font-size: 34px; font-weight: 600; color: var(--plum); line-height: 1; }
.about-badge-l { font-size: 8px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--plum); opacity: 0.7; margin-top: 3px; }

/* ================================================================
   STATS BAND — Management Experience (ASK style: white bg, large numbers)
================================================================ */
.stats-band {
  background: var(--cream);
  padding: 72px 0;
  border-top: 1px solid var(--cream-mid);
  border-bottom: 1px solid var(--cream-mid);
}
.stats-band-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-ghost);
  margin-bottom: 48px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-card {
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid var(--cream-dark);
  cursor: default;
}
.stat-card:last-child { border-right: none; }
.stat-n {
  display: block;
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--plum);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-l {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 10px;
}

/* ================================================================
   SERVICES — beige cards + large line icons (ASK style)
================================================================ */
#services { background: var(--white); }

.section-header {
  margin-bottom: 64px;
}
.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--plum); }
.section-title strong { font-weight: 600; }
.section-sub {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 560px;
  margin-top: 16px;
}

/* Service grid — ASK style: 3 cols, beige bg cards, large icon top-left */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--tr);
  cursor: default;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--plum));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover { background: var(--cream-mid); transform: translateY(-4px); box-shadow: var(--s3); }
.svc-card:hover::after { transform: scaleX(1); }

/* Background photo on hover */
.svc-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  border-radius: var(--r-lg);
  filter: brightness(0.25) saturate(0.6);
}
.svc-card:hover .svc-card-bg { opacity: 1; }

.svc-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.svc-icon svg { width: 100%; height: 100%; color: var(--plum); transition: color var(--tr); stroke-width: 1.2; }
.svc-card:hover .svc-icon svg { color: var(--gold); }

.svc-num-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-ghost);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: color var(--tr);
}
.svc-card:hover .svc-num-label { color: rgba(244,182,81,0.7); }

.svc-title {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  transition: color var(--tr);
}
.svc-card:hover .svc-title { color: var(--white); }

.svc-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  transition: color var(--tr);
  flex: 1;
}
.svc-card:hover .svc-body { color: rgba(255,255,255,0.78); }

.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--plum);
  margin-top: 20px;
  position: relative;
  z-index: 1;
  transition: color var(--tr), gap var(--tr);
}
.svc-arrow svg { width: 14px; height: 14px; transition: transform var(--tr); }
.svc-card:hover .svc-arrow { color: var(--gold); gap: 10px; }
.svc-card:hover .svc-arrow svg { transform: translateX(3px); }

/* ================================================================
   PROJECTS TICKER — scrolling marquee (ASK-inspired)
================================================================ */
.projects-ticker-wrap {
  background: var(--plum);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(244,182,81,0.15);
  border-bottom: 1px solid rgba(244,182,81,0.15);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ================================================================
   PROJECTS GRID — cards with photo + overlay
================================================================ */
#projects { background: var(--cream); }

.proj-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.proj-note { font-size: 14px; color: var(--text-light); max-width: 320px; line-height: 1.8; }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 420px 300px;
  gap: 16px;
}
.pcard:nth-child(1) { grid-column: 1 / 8; }
.pcard:nth-child(2) { grid-column: 8 / 13; }
.pcard:nth-child(3) { grid-column: 1 / 5; }
.pcard:nth-child(4) { grid-column: 5 / 9; }
.pcard:nth-child(5) { grid-column: 9 / 13; }

.pcard {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--plum-deep);
  cursor: default;
}
.pcard-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pcard:hover .pcard-img { transform: scale(1.05); }
.pcard-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,16,0.92) 0%, rgba(10,8,16,0.5) 40%, transparent 70%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 32px;
  transition: background 0.4s var(--ease);
}
.pcard:hover .pcard-overlay { background: linear-gradient(to top, rgba(10,8,16,0.96) 0%, rgba(10,8,16,0.65) 40%, transparent 70%); }
.pcard-cat { font-size: 9px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.pcard-name { font-family: var(--display); font-size: clamp(16px, 1.8vw, 22px); font-weight: 500; color: var(--white); line-height: 1.25; margin-bottom: 6px; }
.pcard-loc { display: flex; align-items: center; gap: 5px; font-size: 12px; color: rgba(255,255,255,0.45); }
.pcard-loc svg { width: 11px; height: 11px; color: var(--gold); opacity: 0.6; }
.proj-cta { text-align: center; margin-top: 48px; }

/* ================================================================
   WHY US — 4 col icon cards (cleaner than before)
================================================================ */
#why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.why-card {
  padding: 36px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--tr);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--plum));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.why-card:hover { border-color: var(--gold-border); transform: translateY(-4px); box-shadow: var(--s2); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background var(--tr);
}
.why-card:hover .why-icon { background: var(--gold); }
.why-icon svg { width: 24px; height: 24px; color: var(--gold-dark); transition: color var(--tr); }
.why-card:hover .why-icon svg { color: var(--plum); }
.why-t { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.why-p { font-size: 13px; color: var(--text-light); line-height: 1.78; }

/* ================================================================
   CLIENTS — clean horizontal logos
================================================================ */
#clients {
  background: var(--cream);
  padding: 72px 0;
  border-top: 1px solid var(--cream-mid);
  border-bottom: 1px solid var(--cream-mid);
}
.clients-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-ghost);
  text-align: center;
  margin-bottom: 44px;
}
.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.client-card {
  flex: 1;
  max-width: 200px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: var(--tr);
  cursor: default;
}
.client-card:hover { border-color: var(--gold-border); transform: translateY(-3px); box-shadow: var(--s2); }
.client-img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: var(--tr);
  display: block;
}
.client-card:hover .client-img { filter: grayscale(0%); opacity: 1; }

/* ================================================================
   CONTACT SECTION
================================================================ */
#contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.contact-info-sub { font-size: 15px; color: var(--text-mid); line-height: 1.9; margin-bottom: 44px; }
.ci-list { display: flex; flex-direction: column; gap: 22px; }
.ci-row  { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--r);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 17px; height: 17px; color: var(--gold-dark); }
.ci-lbl { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-ghost); margin-bottom: 4px; }
.ci-val { font-size: 14px; font-weight: 500; color: var(--text); }
.ci-val a { color: var(--text); transition: color var(--tr-f); }
.ci-val a:hover { color: var(--plum); }

.form-box {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 48px;
  border: 1px solid var(--cream-mid);
}
.form-title { font-family: var(--display); font-size: 28px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.form-subtitle { font-size: 13px; color: var(--text-light); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fg label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--plum); }
.fg input, .fg textarea, .fg select {
  padding: 13px 16px;
  border: 1px solid rgba(63,9,61,0.13);
  border-radius: var(--r);
  background: var(--white);
  font-family: var(--sans); font-size: 14px; color: var(--text);
  outline: none;
  transition: border-color var(--tr-f), box-shadow var(--tr-f);
  width: 100%; -webkit-appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(63,9,61,0.07);
}
.fg input.err { border-color: #B91C1C; }
.fg textarea { resize: vertical; min-height: 112px; }
.fg select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A7085' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-ghost); font-size: 13px; }
.ferr { font-size: 11px; color: #B91C1C; display: none; margin-top: 2px; }
.ferr.show { display: block; }
.fok { display: none; margin-top: 14px; padding: 13px 17px; background: rgba(21,128,61,0.07); border: 1px solid rgba(21,128,61,0.2); border-radius: var(--r); font-size: 13px; color: #166534; }
.fok.show { display: block; }

/* ================================================================
   CTA BAND
================================================================ */
.cta-band {
  background: var(--plum);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 80% 50%, rgba(244,182,81,0.08), transparent),
    radial-gradient(ellipse 45% 60% at 15% 60%, rgba(63,9,61,0.4), transparent);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.cta-text-wrap {}
.cta-headline {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}
.cta-headline strong { font-weight: 600; }
.cta-headline em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 480px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: var(--ink);
  padding-top: 80px;
  position: relative;
}
footer::before {
  content: ''; display: block; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 56px;
  padding: 64px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.foot-logo-img {
  height: 40px; width: auto; max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75; display: block; margin-bottom: 18px;
}
.foot-logo-fb { display: none; font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--gold); margin-bottom: 18px; }
.foot-desc { font-size: 13px; color: rgba(255,255,255,0.32); line-height: 1.85; max-width: 240px; }
.foot-social { display: flex; gap: 8px; margin-top: 22px; }
.foot-soc-a {
  width: 34px; height: 34px; border-radius: var(--r);
  border: 1px solid rgba(244,182,81,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35); transition: var(--tr-f);
}
.foot-soc-a:hover { background: var(--gold); border-color: var(--gold); color: var(--plum); transform: translateY(-2px); }
.foot-soc-a svg { width: 14px; height: 14px; }
.foot-col-h { font-size: 9px; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(244,182,81,0.65); margin-bottom: 20px; }
.foot-links { display: flex; flex-direction: column; gap: 10px; }
.foot-link { font-size: 13px; color: rgba(255,255,255,0.35); transition: color var(--tr-f), padding-left var(--tr-f); }
.foot-link:hover { color: rgba(255,255,255,0.78); padding-left: 4px; }
.foot-ci { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.foot-ci svg { width: 13px; height: 13px; color: var(--gold); opacity: 0.55; flex-shrink: 0; margin-top: 3px; }
.foot-ci p { font-size: 12px; color: rgba(255,255,255,0.32); line-height: 1.7; }
.foot-ci a { color: rgba(255,255,255,0.32); transition: color var(--tr-f); }
.foot-ci a:hover { color: var(--gold); }
.foot-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.foot-copy { font-size: 11px; color: rgba(255,255,255,0.18); }
.foot-cr   { font-size: 11px; color: rgba(255,255,255,0.13); letter-spacing: 0.06em; }

/* ================================================================
   WHATSAPP FLOAT
================================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 900; width: 52px; height: 52px;
  border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4); transition: var(--tr);
}
.wa-float:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 10px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 26px; height: 26px; color: #fff; }
.wa-tip {
  position: absolute; right: 60px;
  background: var(--ink); color: var(--white);
  font-size: 11px; font-weight: 500; padding: 6px 12px;
  border-radius: var(--r); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--tr-f);
}
.wa-float:hover .wa-tip { opacity: 1; }

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; border: none; cursor: pointer;
  white-space: nowrap; transition: var(--tr); border-radius: var(--r-pill);
  padding: 14px 32px;
}
.btn-plum { background: var(--plum); color: var(--white); }
.btn-plum:hover { background: var(--plum-mid); transform: translateY(-2px); box-shadow: var(--s2); }
.btn-gold { background: var(--gold); color: var(--plum); }
.btn-gold:hover { background: #FFD080; transform: translateY(-2px); box-shadow: var(--sg); }
.btn-outline-dark { background: transparent; color: var(--plum); border: 1.5px solid var(--border); }
.btn-outline-dark:hover { border-color: var(--plum); background: var(--plum-light); }
.btn-outline-light { background: transparent; color: rgba(255,255,255,0.78); border: 1.5px solid rgba(255,255,255,0.22); }
.btn-outline-light:hover { border-color: var(--gold-border); color: var(--gold); background: rgba(244,182,81,0.07); }

/* ================================================================
   KEYFRAMES
================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   QUOTE PAGE
================================================================ */
.quote-hero {
  background: var(--plum);
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.quote-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 70% at 70% 50%, rgba(92,18,89,0.55), transparent),
              linear-gradient(155deg, #150310 0%, #280624 50%, #3F093D 100%);
}
.quote-hero-inner { position: relative; z-index: 1; }
.q-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 28px; transition: color var(--tr-f);
}
.q-back:hover { color: var(--gold); }
.q-back svg { width: 14px; height: 14px; }
.q-hero-title { font-family: var(--display); font-size: clamp(36px, 5vw, 64px); font-weight: 300; color: var(--white); line-height: 1.08; margin: 18px 0 16px; letter-spacing: -0.025em; }
.q-hero-title strong { font-weight: 600; }
.q-hero-title em { font-style: italic; color: var(--gold); }
.q-body { background: var(--cream); padding: 72px 0 100px; }
.q-grid { display: grid; grid-template-columns: 1fr 2.4fr; gap: 72px; align-items: start; }
.q-side-title { font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--text); margin-bottom: 22px; }
.q-points { display: flex; flex-direction: column; gap: 14px; }
.q-point { display: flex; align-items: flex-start; gap: 12px; }
.q-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 8px; }
.q-point p { font-size: 13px; color: var(--text-mid); line-height: 1.75; }
.q-phone-box { margin-top: 40px; padding: 26px; background: var(--plum); border-radius: var(--r-md); }
.q-phone-lbl { font-size: 9px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,182,81,0.7); margin-bottom: 14px; }
.q-phone-num { display: block; font-family: var(--display); font-size: 20px; color: var(--white); margin-bottom: 4px; transition: color var(--tr-f); }
.q-phone-num:hover { color: var(--gold); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .wrap, .wrap--tight { padding: 0 40px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .q-grid { grid-template-columns: 1fr; gap: 56px; }
  .proj-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .pcard:nth-child(n) { grid-column: auto; grid-row: auto; min-height: 260px; }
}
@media (max-width: 900px) {
  .wrap, .wrap--tight { padding: 0 32px; }
  .about-split { grid-template-columns: 1fr; gap: 56px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .cta-inner { flex-direction: column; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .about-badge { right: 0; bottom: -16px; }
  .clients-row { flex-wrap: wrap; gap: 12px; }
  .client-card { max-width: none; flex: none; width: calc(50% - 8px); }
}
@media (max-width: 768px) {
  .wrap, .wrap--tight { padding: 0 24px; }
  .sec { padding: 72px 0; }
  .sec--lg { padding: 88px 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 28px 22px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats-strip { flex-wrap: wrap; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); flex: 0 0 50%; }
  .proj-grid { grid-template-columns: 1fr; }
  .nav-wrap { width: calc(100% - 32px); top: 14px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .client-card { width: 100%; }
}
