/* ============================================================
   FAZAL ASSOCIATES — Home Page
   Cinzel · Josefin Sans · Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Josefin+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --cinzel:  'Cinzel', 'Playfair Display', Georgia, serif;
  --josefin: 'Josefin Sans', 'Inter', sans-serif;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.c-cursor-dot {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-500); left: 0; top: 0;
  transform: translate(-50%,-50%);
  transition: transform .2s, width .2s, height .2s;
  will-change: left, top;
}
.c-cursor-ring {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(200,169,110,.45); left: 0; top: 0;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), border-color .3s;
  will-change: left, top;
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9999;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  width: 0%; transition: width .1s linear; pointer-events: none;
}

/* ============================================================
   HERO — The Codex (Editorial Three-Column)
   ============================================================ */
.fa-hero {
  min-height: 100vh;
  background: var(--bg-page);
  display: grid;
  grid-template-columns: 148px 1px 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "left sep main"
    "stats stats stats";
  overflow: hidden;
  position: relative;
}

/* Ambient warm glow — three layers, purely gold-warm */
.fh-ambient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 60% at 72% 22%, rgba(200,169,110,.10) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 12% 88%, rgba(180,130,60,.06)  0%, transparent 60%),
    radial-gradient(ellipse 35% 30% at 50%  0%, rgba(200,169,110,.04) 0%, transparent 50%);
  z-index: 0; pointer-events: none;
  animation: ambientBreathe 9s ease-in-out infinite;
}
@keyframes ambientBreathe {
  0%, 100% { opacity: .70; }
  50%       { opacity: 1; }
}

/* ---- Left Column ---- */
.fh-left {
  grid-area: left;
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 88px 0 72px;
  overflow: hidden;
  background: var(--bg-panel);
  border-right: 1px solid rgba(200,169,110,.07);
}
.fh-left-inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  width: 100%;
  opacity: 0; animation: fadeIn .9s ease .7s forwards;
}

/* Rotated company name */
.fh-company-vert {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--josefin);
  font-size: .5rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(200,169,110,.38);
  white-space: nowrap;
}

/* Year block */
.fh-year-block {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  border: 1px solid rgba(200,169,110,.18);
  padding: 10px 16px; border-radius: 2px;
}
.fh-year-est {
  font-family: var(--josefin); font-size: .42rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(200,169,110,.38);
}
.fh-year-num {
  font-family: var(--cinzel); font-size: 1.4rem; font-weight: 700;
  color: rgba(200,169,110,.62); line-height: 1;
}

/* Thin rule */
.fh-left-rule {
  width: 1px; height: 36px;
  background: rgba(200,169,110,.18);
}

/* Micro stats */
.fh-left-micro {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.fh-micro-item { text-align: center; }
.fh-micro-n {
  font-family: var(--cinzel); font-size: 1.05rem; font-weight: 700;
  color: rgba(200,169,110,.65); line-height: 1; display: block;
}
.fh-micro-l {
  font-family: var(--josefin); font-size: .42rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.30); margin-top: 3px; display: block;
}

/* ---- Vertical Separator ---- */
.fh-vsep {
  grid-area: sep;
  position: relative; z-index: 2;
  display: flex; align-items: stretch;
}
.fh-vsep-line {
  width: 1px; height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(200,169,110,.30) 12%,
    rgba(200,169,110,.30) 88%,
    transparent 100%
  );
  transform-origin: top;
  transform: scaleY(0);
  animation: sepDraw 1.6s cubic-bezier(0.22,1,0.36,1) .18s forwards;
}
@keyframes sepDraw { to { transform: scaleY(1); } }

/* ---- Main Content ---- */
.fh-main {
  grid-area: main;
  display: flex; flex-direction: row;
  align-items: center;
  padding: 100px 48px 72px 72px;
  position: relative; z-index: 2;
  gap: 48px;
}

.fh-content {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
  justify-content: center;
}

/* Archival tag */
.fh-main-tag {
  position: absolute; top: 26px; right: 40px;
  font-family: var(--josefin); font-size: .45rem;
  font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(200,169,110,.13); pointer-events: none;
  opacity: 0; animation: fadeIn .6s ease 2s forwards;
}

/* ---- Project Slider ---- */
.fh-building-wrap {
  flex-shrink: 0; width: 252px;
  opacity: 0; animation: fadeIn .9s ease .7s forwards;
}

.fh-slider {
  border: 1px solid rgba(200,169,110,.16); border-radius: 3px;
  padding: 15px;
  background: var(--bg-card);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; flex-direction: column; gap: 12px;
}

/* Header row: phase info + arrows */
.fh-slider-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
}
.fh-phase-info {
  display: flex; align-items: flex-start; gap: 8px; flex: 1; min-width: 0;
}
.fh-phase-num {
  font-family: var(--cinzel); font-size: 1.1rem; font-weight: 700;
  color: rgba(200,169,110,.4); line-height: 1; flex-shrink: 0; margin-top: 2px;
}
.fh-phase-text { min-width: 0; }
.fh-phase-name {
  font-family: var(--josefin); font-size: .48rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(200,169,110,.78);
  display: block; margin-bottom: 4px;
  transition: opacity .3s ease;
}
.fh-phase-desc {
  font-size: .73rem; line-height: 1.55; color: rgba(255,255,255,.38);
  transition: opacity .3s ease;
}

/* Nav arrows */
.fh-slider-nav { display: flex; gap: 4px; flex-shrink: 0; }
.fh-snav {
  width: 26px; height: 26px; border-radius: 2px;
  background: rgba(200,169,110,.08); border: 1px solid rgba(200,169,110,.20);
  color: rgba(200,169,110,.55); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.fh-snav:hover {
  background: rgba(200,169,110,.18); border-color: rgba(200,169,110,.42);
  color: var(--gold-400);
}

/* Building SVG */
.fh-bsvg { width: 100%; height: auto; display: block; }

/* ---- Foundation: fades + rises from below ---- */
.bse-foundation {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .9s ease .1s, transform .9s var(--ease-out) .1s;
}
.fh-slider[data-stage="1"] .bse-foundation,
.fh-slider[data-stage="2"] .bse-foundation,
.fh-slider[data-stage="3"] .bse-foundation { opacity: 1; transform: translateY(0); }

/* ---- Structure: clip-path wipe from bottom up ---- */
.bse-structure {
  clip-path: inset(100% 0% 0% 0%);
  transition: clip-path 1.4s cubic-bezier(0.22,1,0.36,1) .15s;
}
.fh-slider[data-stage="1"] .bse-structure,
.fh-slider[data-stage="2"] .bse-structure,
.fh-slider[data-stage="3"] .bse-structure { clip-path: inset(0% 0% 0% 0%); }

/* ---- Crane: slides in from right, disappears stage 3 ---- */
.bse-crane {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .7s ease, transform .7s var(--ease-out);
}
.fh-slider[data-stage="1"] .bse-crane,
.fh-slider[data-stage="2"] .bse-crane { opacity: 1; transform: translateX(0); }

/* ---- Windows: staggered cascade (top→bottom) ---- */
.bse-win {
  opacity: 0;
  transform-box: fill-box; transform-origin: 50% 0%;
  transform: scaleY(0);
  transition: opacity .38s ease, transform .38s var(--ease-out);
}
.fh-slider[data-stage="2"] .bse-win,
.fh-slider[data-stage="3"] .bse-win { opacity: 1; transform: scaleY(1); }
.bse-win:nth-child(1)  { transition-delay: .00s; }
.bse-win:nth-child(2)  { transition-delay: .07s; }
.bse-win:nth-child(3)  { transition-delay: .14s; }
.bse-win:nth-child(4)  { transition-delay: .21s; }
.bse-win:nth-child(5)  { transition-delay: .28s; }
.bse-win:nth-child(6)  { transition-delay: .35s; }
.bse-win:nth-child(7)  { transition-delay: .42s; }
.bse-win:nth-child(8)  { transition-delay: .49s; }
.bse-win:nth-child(9)  { transition-delay: .56s; }
.bse-win:nth-child(10) { transition-delay: .63s; }
.bse-win:nth-child(11) { transition-delay: .70s; }
.bse-win:nth-child(12) { transition-delay: .77s; }

/* ---- Complete group ---- */
.bse-complete { opacity: 0; transition: opacity .5s ease; }
.fh-slider[data-stage="3"] .bse-complete { opacity: 1; }

/* Annotation lines draw in */
.bse-ann-v {
  stroke-dasharray: 310; stroke-dashoffset: 310;
  transition: stroke-dashoffset 1.2s ease .4s;
}
.bse-ann-h {
  stroke-dasharray: 160; stroke-dashoffset: 160;
  transition: stroke-dashoffset .85s ease .9s;
}
.fh-slider[data-stage="3"] .bse-ann-v { stroke-dashoffset: 0; }
.fh-slider[data-stage="3"] .bse-ann-h { stroke-dashoffset: 0; }

/* Completion badge bounces in */
.bse-badge {
  transform-box: fill-box; transform-origin: center;
  transform: scale(0);
  transition: transform .6s cubic-bezier(0.34,1.56,0.64,1) 1.1s;
}
.fh-slider[data-stage="3"] .bse-badge { transform: scale(1); }

/* Footer: dots + auto-progress */
.fh-slider-footer { display: flex; align-items: center; gap: 10px; }
.fh-slider-dots   { display: flex; gap: 5px; }
.fh-sdot {
  width: 6px; height: 6px; border-radius: 50%;
  border: none; padding: 0; cursor: pointer;
  background: rgba(200,169,110,.18);
  transition: background .25s, transform .25s;
}
.fh-sdot.fh-sdot-active {
  background: var(--gold-500);
  transform: scale(1.35);
}
.fh-progress { flex: 1; height: 1px; background: rgba(200,169,110,.1); overflow: hidden; }
.fh-pbar     { height: 100%; width: 0%; background: rgba(200,169,110,.5); }

/* Badge */
.fa-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 30px;
  background: rgba(200,169,110,.07); border: 1px solid rgba(200,169,110,.18);
  margin-bottom: 44px; align-self: flex-start;
  opacity: 0; animation: fadeUp .7s var(--ease-out) .55s forwards;
  cursor: default;
}
.fa-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-500); flex-shrink: 0;
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,110,.55); }
  50%       { box-shadow: 0 0 0 6px rgba(200,169,110,0); }
}
.fa-badge span {
  font-family: var(--josefin); font-size: .65rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-400);
}

/* Headline */
.fh-headline { margin: 0 0 36px; line-height: .88; }
.fh-hl-row { display: block; overflow: hidden; }
.fh-hl-word {
  display: block;
  font-family: var(--cinzel);
  font-size: clamp(4.5rem, 10vw, 11rem);
  font-weight: 700; letter-spacing: -.03em;
  transform: translateY(110%);
}
.fh-white {
  color: #F8FAFC;
  animation: wordReveal 1.1s var(--ease-out) .65s forwards;
}
.fh-gold {
  background: linear-gradient(
    105deg,
    #9a6f18 0%, var(--gold-500) 28%,
    #ffeea0 50%, var(--gold-500) 72%, #9a6f18 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    wordReveal 1.1s var(--ease-out) .82s forwards,
    goldShimmer 5s linear 1.95s infinite;
}
@keyframes wordReveal  { to { transform: translateY(0); } }
@keyframes goldShimmer { from { background-position: 200% center; } to { background-position: -200% center; } }

/* Tagline */
.fh-tagline {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .6s var(--ease-out) 1.3s forwards;
}
.fh-tagline-line {
  width: 28px; height: 1px;
  background: rgba(200,169,110,.48); flex-shrink: 0;
}
.fh-tagline span {
  font-family: var(--josefin); font-size: .63rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(200,169,110,.48);
}

/* Description */
.fh-desc {
  font-size: 1rem; color: rgba(255,255,255,.44); line-height: 1.9;
  max-width: 460px; margin-bottom: 44px;
  opacity: 0; animation: fadeUp .7s var(--ease-out) 1.42s forwards;
}

/* Actions */
.fh-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp .7s var(--ease-out) 1.56s forwards;
}

/* Cert tags */
.fh-certs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .7s var(--ease-out) 1.7s forwards;
}
.fa-cert-tag {
  font-family: var(--josefin); font-size: .58rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(200,169,110,.55);
  padding: 5px 12px; border: 1px solid rgba(200,169,110,.22); border-radius: 2px;
  cursor: default; transition: border-color .2s, color .2s;
}
.fa-cert-tag:hover { border-color: rgba(200,169,110,.50); color: var(--gold-400); }

/* ---- Stats bar ---- */
.fa-stats-bar {
  grid-area: stats;
  border-top: 1px solid rgba(200,169,110,.12);
  background: var(--bg-stats);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  opacity: 0; animation: fadeUp .8s var(--ease-out) 1.85s forwards;
  position: relative; z-index: 8;
}
.fa-stats-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center; padding: 26px 0;
}
.fa-stat { text-align: center; padding: 0 16px; cursor: default; }
.fa-stat-n {
  font-family: var(--cinzel); font-size: 1.9rem; font-weight: 700;
  color: var(--gold-500); line-height: 1; display: block; transition: color .2s;
}
.fa-stat:hover .fa-stat-n { color: var(--gold-400); }
.fa-stat-l {
  font-family: var(--josefin); font-size: .57rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.36); margin-top: 5px; display: block;
}
.fa-stat-div { width: 1px; height: 36px; background: rgba(200,169,110,.14); }

/* ---- Scroll indicator (inside .fh-main, absolute) ---- */
.fa-scroll-ind {
  position: absolute; bottom: 36px; right: 48px; z-index: 12;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer; padding: 0;
  writing-mode: vertical-lr;
  font-family: var(--josefin); font-size: .58rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.18);
  opacity: 0; animation: fadeIn .7s var(--ease-out) 1.85s forwards;
  transition: color .2s;
}
.fa-scroll-ind:hover { color: rgba(200,169,110,.5); }
.fa-scroll-txt { writing-mode: vertical-lr; }
.fa-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  animation: scrollPulse 2.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  80%  { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  100% { opacity: 0; }
}

/* Shared keyframes */
@keyframes drawIn { from { stroke-dashoffset: 3000; } to { stroke-dashoffset: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* Responsive */
@media (max-width: 1200px) {
  .fh-main { padding: 100px 36px 72px 64px; gap: 36px; }
  .fh-building-wrap { width: 220px; }
}
@media (max-width: 1020px) {
  .fh-building-wrap { width: 196px; }
  .fh-phase-desc { font-size: .68rem; }
}
@media (max-width: 880px) {
  .fa-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "main" "stats";
  }
  .fh-left, .fh-vsep { display: none; }
  .fh-main { padding: 100px 28px 72px; flex-direction: column; }
  .fh-building-wrap { display: none; }
  .fa-scroll-ind { right: 24px; bottom: 32px; }
}
@media (max-width: 768px) {
  .fh-main-tag { display: none; }
  .fh-hl-word { font-size: clamp(3.8rem, 14vw, 6rem); }
  .fh-desc { font-size: .95rem; }
  .fa-stats-inner {
    grid-template-columns: 1fr 1px 1fr;
    padding: 20px 0;
  }
  .fa-stat-div:nth-child(6),
  .fa-stat:last-child { display: none; }
}

/* ============================================================
   HERO CANVAS + SKYLINE
   ============================================================ */
.fh-canvas {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; pointer-events: none;
  opacity: .55;
}

.fh-skyline {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; overflow: hidden;
}
.fh-skyline-svg {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: auto;
  min-height: 260px;
  opacity: .85;
}

/* ============================================================
   SLIDER — ENHANCED STAGE ANIMATIONS
   ============================================================ */

/* Concept: visible stage 0 only, fades as you advance */
.bse-concept { opacity: 1; transition: opacity .55s ease; }
.fh-slider[data-stage="1"] .bse-concept,
.fh-slider[data-stage="2"] .bse-concept,
.fh-slider[data-stage="3"] .bse-concept { opacity: 0; pointer-events: none; }

/* Scaffolding: wipes up from ground on stage 1, disappears stage 3 */
.bse-scaffold {
  opacity: 0;
  clip-path: inset(100% 0% 0% 0%);
  transition: opacity .5s ease .2s, clip-path 1s cubic-bezier(0.22,1,0.36,1) .2s;
}
.fh-slider[data-stage="1"] .bse-scaffold,
.fh-slider[data-stage="2"] .bse-scaffold { opacity: 1; clip-path: inset(0% 0% 0% 0%); }

/* Excavator: slides in from left, stage 1 only */
.bse-excavator {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s ease .35s, transform .6s cubic-bezier(0.22,1,0.36,1) .35s;
}
.fh-slider[data-stage="1"] .bse-excavator { opacity: 1; transform: translateX(0); }

/* Workers: fade in stage 1–2 */
.bse-workers { opacity: 0; transition: opacity .5s ease .6s; }
.fh-slider[data-stage="1"] .bse-workers,
.fh-slider[data-stage="2"] .bse-workers { opacity: 1; }

/* Floor level labels: fade in stage 2–3 */
.bse-levels { opacity: 0; transition: opacity .5s ease .9s; }
.fh-slider[data-stage="2"] .bse-levels,
.fh-slider[data-stage="3"] .bse-levels { opacity: 1; }

/* Landscaping: grows up from ground, stage 3 only */
.bse-landscape {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: opacity .5s ease .7s, transform .8s cubic-bezier(0.22,1,0.36,1) .7s;
}
.fh-slider[data-stage="3"] .bse-landscape { opacity: 1; transform: scaleY(1); }

/* ============================================================
   SITE INTELLIGENCE SECTION
   ============================================================ */
.fa-intel {
  background: var(--bg-dark-deep); padding: 100px 0 80px;
  position: relative; overflow: hidden;
}

.fa-intel-bg { position: absolute; inset: 0; pointer-events: none; }
.fa-intel-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.028) 1px, transparent 1px);
  background-size: 60px 60px;
}
.fa-intel-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(200,169,110,.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 15% 80%, rgba(200,169,110,.04) 0%, transparent 55%);
}

/* Header */
.fa-intel-head { text-align: center; margin-bottom: 60px; }
.fa-live-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--josefin); font-size: .6rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(200,169,110,.7);
  margin-bottom: 20px;
}
.fa-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
  animation: liveFlash 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6);
}
@keyframes liveFlash {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
.fa-intel-title {
  font-family: var(--cinzel); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
  color: var(--white); line-height: 1.15; margin-bottom: 14px;
}
.fa-intel-sub {
  font-size: .95rem; color: rgba(255,255,255,.38); max-width: 480px; margin: 0 auto; line-height: 1.8;
}

/* KPI rings row */
.fa-kpi-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 40px;
}
.fa-kpi {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: rgba(255,255,255,.028); border: 1px solid rgba(200,169,110,.1);
  border-radius: 12px; padding: 28px 20px;
  transition: border-color .25s, background .25s; cursor: default;
}
.fa-kpi:hover { border-color: rgba(200,169,110,.24); background: rgba(200,169,110,.03); }

.fa-kpi-ring-wrap {
  position: relative; width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.fa-kpi-ring { width: 80px; height: 80px; transform: rotate(-90deg); }
.fa-ring-bg {
  fill: none; stroke: rgba(200,169,110,.1); stroke-width: 4;
}
.fa-ring-fill {
  fill: none; stroke: var(--gold-500); stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 201;
  stroke-dashoffset: 201;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.22,1,0.36,1);
}
.fa-kpi-center {
  position: absolute; font-family: var(--cinzel); font-size: .9rem; font-weight: 700;
  color: var(--gold-400); line-height: 1;
}
.fa-kpi-label {
  font-family: var(--josefin); font-size: .6rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.36);
  text-align: center;
}

/* Projects panel */
.fa-proj-panel {
  background: rgba(255,255,255,.025); border: 1px solid rgba(200,169,110,.1);
  border-radius: 12px; overflow: hidden; margin-bottom: 28px;
}
.fa-proj-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid rgba(200,169,110,.08);
}
.fa-proj-panel-title {
  font-family: var(--josefin); font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(200,169,110,.72);
}
.fa-proj-count {
  font-family: var(--josefin); font-size: .6rem; color: rgba(255,255,255,.28);
  letter-spacing: .08em;
}

.fa-proj-list { display: flex; flex-direction: column; }
.fa-proj-row {
  display: grid; align-items: center;
  grid-template-columns: 1fr 1.4fr 52px 90px;
  gap: 16px; padding: 16px 24px;
  border-bottom: 1px solid rgba(200,169,110,.05);
  transition: background .2s; cursor: default;
}
.fa-proj-row:last-child { border-bottom: none; }
.fa-proj-row:hover { background: rgba(200,169,110,.025); }

.fa-proj-meta { display: flex; flex-direction: column; gap: 3px; }
.fa-proj-name {
  font-family: var(--josefin); font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.75);
}
.fa-proj-type {
  font-size: .7rem; color: rgba(255,255,255,.28);
  font-family: var(--josefin); letter-spacing: .06em;
}

.fa-proj-phase-track { display: flex; flex-direction: column; gap: 6px; }
.fa-proj-phase-label {
  font-family: var(--josefin); font-size: .58rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(200,169,110,.5);
}
.fa-proj-bar {
  height: 3px; background: rgba(200,169,110,.1); border-radius: 2px; overflow: hidden;
}
.fa-proj-fill {
  height: 100%; width: 0%; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  transition: width 1.4s cubic-bezier(0.22,1,0.36,1);
}

.fa-proj-pct {
  font-family: var(--cinzel); font-size: .88rem; font-weight: 700;
  color: var(--gold-500); text-align: right;
}

.fa-proj-status {
  font-family: var(--josefin); font-size: .58rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; text-align: center;
}
.fa-status-active  { background: rgba(74,222,128,.09);  color: #4ade80; border: 1px solid rgba(74,222,128,.22); }
.fa-status-finish  { background: rgba(200,169,110,.1);  color: var(--gold-400); border: 1px solid rgba(200,169,110,.25); }
.fa-status-early   { background: rgba(148,163,184,.08); color: rgba(148,163,184,.7); border: 1px solid rgba(148,163,184,.18); }

/* Milestone ticker */
.fa-milestone-strip {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.02); border: 1px solid rgba(200,169,110,.08);
  border-radius: 8px; padding: 14px 20px; overflow: hidden;
}
.fa-milestone-head {
  font-family: var(--josefin); font-size: .55rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: rgba(200,169,110,.5);
  white-space: nowrap; flex-shrink: 0;
  padding-right: 16px; border-right: 1px solid rgba(200,169,110,.12);
}
.fa-milestone-track { flex: 1; overflow: hidden; }
.fa-milestone-inner {
  display: flex; gap: 60px;
  animation: milestoneScroll 38s linear infinite;
  width: max-content;
}
.fa-milestone-strip:hover .fa-milestone-inner { animation-play-state: paused; }
@keyframes milestoneScroll { to { transform: translateX(-50%); } }
.fa-milestone-item {
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--josefin); font-size: .68rem; font-weight: 400;
  color: rgba(255,255,255,.32); letter-spacing: .04em;
}
.fa-m-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold-600); flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .fa-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .fa-proj-row { grid-template-columns: 1fr 1.2fr; }
  .fa-proj-pct, .fa-proj-status { display: none; }
}
@media (max-width: 640px) {
  .fa-kpi-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fa-milestone-strip { display: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  background: var(--bg-dark); overflow: hidden; position: relative;
  border-top: 1px solid rgba(200,169,110,.07);
  border-bottom: 1px solid rgba(200,169,110,.07);
  padding: 16px 0;
}
.marquee-section::before, .marquee-section::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1; pointer-events: none;
}
.marquee-section::before { left: 0;  background: linear-gradient(to right, var(--bg-dark), transparent); }
.marquee-section::after  { right: 0; background: linear-gradient(to left,  var(--bg-dark), transparent); }

.marquee-track {
  display: flex; width: max-content;
  animation: marqueeScroll 42s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

.marquee-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0 36px; white-space: nowrap;
  font-family: var(--josefin); font-size: .7rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.28); border-right: 1px solid rgba(255,255,255,.05);
  cursor: default; transition: color .2s;
}
.marquee-item:hover { color: var(--gold-500); }
.marquee-icon { display: flex; align-items: center; justify-content: center; color: var(--gold-600); }
.marquee-icon svg { width: 14px; height: 14px; }

/* ============================================================
   IMPACT STATEMENT + STATS
   ============================================================ */
.impact-section { background: var(--white); padding: 100px 0; }
.impact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.impact-quote {
  font-family: var(--cinzel); font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  font-weight: 400; font-style: italic; color: var(--navy-900);
  line-height: 1.45; margin-bottom: 32px;
}
.impact-quote em { color: var(--gold-500); font-style: normal; font-weight: 600; }
.impact-author {
  display: flex; flex-direction: column; gap: 4px;
  padding-left: 20px; border-left: 2px solid var(--gold-500);
}
.impact-author strong { font-size: .95rem; font-weight: 600; color: var(--navy-800); }
.impact-author span   { font-size: .82rem; color: var(--gray-500); }

.impact-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.impact-stat {
  padding: 40px 32px; background: var(--bg-dark);
  border: 1px solid rgba(200,169,110,.07);
  transition: background .3s; cursor: default;
}
.impact-stat:nth-child(1) { border-radius: 16px 0 0 0; }
.impact-stat:nth-child(2) { border-radius: 0 16px 0 0; }
.impact-stat:nth-child(3) { border-radius: 0 0 0 16px; }
.impact-stat:nth-child(4) { border-radius: 0 0 16px 0; }
.impact-stat:hover { background: var(--warm-800); }
.istat-n {
  font-family: var(--cinzel); font-size: 2.6rem; font-weight: 700;
  color: var(--gold-500); line-height: 1; margin-bottom: 8px;
}
.istat-l {
  font-family: var(--josefin); font-size: .66rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gray-400);
}

/* ============================================================
   SERVICES V2
   ============================================================ */
.services-v2 { background: var(--gray-50); padding: 100px 0; }
.services-intro-flex {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; margin-bottom: 60px;
}
.services-intro-text { flex: 1; }
.services-grid-v2 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.service-card-v2 {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: 16px; padding: 40px 32px;
  position: relative; overflow: hidden; cursor: default;
  transform-style: preserve-3d; will-change: transform;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease-out);
}
.service-card-v2::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  transform: scaleX(0); transform-origin: left;
  transition: transform .38s var(--ease-out);
}
.service-card-v2:hover {
  border-color: rgba(200,169,110,.22); box-shadow: 0 16px 48px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.service-card-v2:hover::after { transform: scaleX(1); }

.sc-num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--cinzel); font-size: 2.5rem; font-weight: 400;
  color: var(--gray-100); line-height: 1;
  transition: color .3s; pointer-events: none; user-select: none;
}
.service-card-v2:hover .sc-num { color: rgba(200,169,110,.1); }

.sc-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--gold-100); display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: all .3s var(--ease-out);
}
.sc-icon svg { width: 24px; height: 24px; color: var(--gold-600); transition: color .3s; }
.service-card-v2:hover .sc-icon { background: var(--bg-dark); }
.service-card-v2:hover .sc-icon svg { color: var(--gold-500); }

.sc-title { font-size: 1.1rem; color: var(--navy-800); margin-bottom: 12px; line-height: 1.3; }
.sc-desc  { font-size: .88rem; color: var(--gray-500); line-height: 1.75; }

.sc-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-family: var(--josefin); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600);
  transition: gap .2s, color .2s; cursor: pointer;
}
.sc-cta svg { width: 14px; height: 14px; }
.sc-cta:hover { gap: 14px; color: var(--navy-800); }

/* ============================================================
   PROJECTS BENTO GRID
   ============================================================ */
.projects-bento { background: var(--bg-dark-deep); padding: 100px 0; }

.bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 360px 280px;
  gap: 16px;
}
.bento-card-1 { grid-column: 1; grid-row: 1; }
.bento-card-2 { grid-column: 2; grid-row: 1; }
.bento-card-3 { grid-column: 1; grid-row: 2; }
.bento-card-4 { grid-column: 2; grid-row: 2; }

.bento-card {
  position: relative; border-radius: 16px; overflow: hidden;
  cursor: pointer; background: var(--bg-dark);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,.5); }

.bento-bg {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .55s var(--ease-out);
}
.bento-bg svg { width: 100%; height: 100%; opacity: .04; color: var(--gold-500); }
.bento-card:hover .bento-bg { transform: scale(1.06); }

.bento-bg-1 { background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%); }
.bento-bg-2 { background: linear-gradient(135deg, #0A1D12 0%, #162E1E 100%); }
.bento-bg-3 { background: linear-gradient(135deg, #1D0A0A 0%, #2E1616 100%); }
.bento-bg-4 { background: linear-gradient(135deg, #0A1220 0%, #162034 100%); }

.bento-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(2,8,16,.94) 0%,
    rgba(2,8,16,.35) 55%,
    transparent 100%
  );
}
.bento-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 26px 26px 22px;
  transform: translateY(5px); transition: transform .32s var(--ease-out);
}
.bento-card:hover .bento-content { transform: translateY(0); }

.bento-tag {
  display: inline-block; padding: 4px 12px; border-radius: 20px; margin-bottom: 10px;
  font-family: var(--josefin); font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(200,169,110,.18); border: 1px solid rgba(200,169,110,.3);
  color: var(--gold-400);
}
.bento-title {
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--white); margin-bottom: 8px; line-height: 1.3;
}
.bento-desc {
  font-size: .82rem; color: rgba(255,255,255,.48); line-height: 1.65;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .42s var(--ease-out), opacity .3s;
}
.bento-card:hover .bento-desc { max-height: 80px; opacity: 1; }

.bento-arrow {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  font-family: var(--josefin); font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold-500);
  opacity: 0; transform: translateY(6px);
  transition: all .3s var(--ease-out) .05s;
}
.bento-arrow svg { width: 14px; height: 14px; }
.bento-card:hover .bento-arrow { opacity: 1; transform: translateY(0); }

/* ============================================================
   MATERIALS SHOWCASE
   ============================================================ */
.materials-section { background: var(--gray-50); padding: 100px 0; }
.materials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 16px;
}

.material-card {
  position: relative; border-radius: 20px; overflow: hidden;
  height: 380px; cursor: default;
  transform-style: preserve-3d;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.material-card:hover { box-shadow: 0 32px 80px rgba(0,0,0,.28); }

.material-bg {
  position: absolute; inset: 0; z-index: 0;
  transition: transform .6s var(--ease-out);
}
.material-card:hover .material-bg { transform: scale(1.05); }

.material-steel   .material-bg { background: linear-gradient(145deg, #1E2F45 0%, #0D1624 100%); }
.material-concrete .material-bg { background: linear-gradient(145deg, #252221 0%, #141110 100%); }
.material-glass    .material-bg { background: linear-gradient(145deg, #0D1E2E 0%, #071628 100%); }

.material-texture-lines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.material-steel .material-texture-lines {
  background: repeating-linear-gradient(
    68deg, transparent, transparent 22px,
    rgba(255,255,255,.018) 22px, rgba(255,255,255,.018) 23px
  );
}
.material-concrete .material-texture-lines {
  background: repeating-linear-gradient(
    0deg, transparent, transparent 9px,
    rgba(255,255,255,.012) 9px, rgba(255,255,255,.012) 10px
  );
}
.material-glass .material-texture-lines {
  background: repeating-linear-gradient(
    45deg, transparent, transparent 32px,
    rgba(100,170,220,.025) 32px, rgba(100,170,220,.025) 33px
  );
}

.material-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.08) 58%, transparent 100%);
}
.material-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 32px; transform: translateY(8px);
  transition: transform .35s var(--ease-out);
}
.material-card:hover .material-info { transform: translateY(0); }

.material-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(200,169,110,.14); border: 1px solid rgba(200,169,110,.24);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  transition: background .3s;
}
.material-card:hover .material-icon { background: rgba(200,169,110,.24); }
.material-icon svg { width: 22px; height: 22px; color: var(--gold-400); }

.material-label {
  font-family: var(--josefin); font-size: .6rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-500);
  margin-bottom: 8px;
}
.material-name  {
  font-family: var(--cinzel); font-size: 1.25rem; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
}
.material-desc {
  font-size: .83rem; color: rgba(255,255,255,.48); line-height: 1.7;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .42s var(--ease-out), opacity .3s;
}
.material-card:hover .material-desc { max-height: 100px; opacity: 1; }

/* ============================================================
   WHY CHOOSE US V2
   ============================================================ */
.why-v2 { background: var(--white); padding: 100px 0; }
.why-v2-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.why-visual-v2 { position: relative; overflow: visible; }

.why-frame {
  border-radius: 24px; background: var(--bg-dark);
  height: 460px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.why-frame-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.why-frame-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,169,110,.09) 0%, transparent 65%);
}
.why-frame-inner { position: relative; z-index: 1; }

.why-rotating-text {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.why-rotating-svg { animation: rotateCW 22s linear infinite; }
@keyframes rotateCW { to { transform: rotate(360deg); } }

.why-rotating-center { position: absolute; text-align: center; }
.why-rotating-center-num {
  font-family: var(--cinzel); font-size: 3rem; font-weight: 700;
  color: var(--gold-500); line-height: 1; display: block;
}
.why-rotating-center-sub {
  font-family: var(--josefin); font-size: .62rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.3); display: block; margin-top: 4px;
}

.why-badges {
  position: absolute; bottom: -16px; left: -16px;
  display: flex; flex-direction: column; gap: 10px; z-index: 10;
}
.why-badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: 12px; padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14); min-width: 200px;
}
.why-badge-icon-wrap {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--gold-100); display: flex; align-items: center; justify-content: center;
}
.why-badge-icon-wrap svg { width: 18px; height: 18px; color: var(--gold-600); }
.why-badge-num { font-family: var(--cinzel); font-size: 1.1rem; font-weight: 700; color: var(--navy-800); display: block; }
.why-badge-txt { font-size: .72rem; color: var(--gray-500); display: block; margin-top: 1px; }

.why-features-v2 { display: flex; flex-direction: column; }
.why-feat {
  display: flex; gap: 16px; padding: 22px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: background .2s; cursor: default;
}
.why-feat:first-child { padding-top: 0; }
.why-feat:last-child  { border-bottom: none; padding-bottom: 0; }

.wf-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--gold-100); display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease-out);
}
.wf-icon svg { width: 20px; height: 20px; color: var(--gold-600); transition: color .25s; }
.why-feat:hover .wf-icon { background: var(--bg-dark); }
.why-feat:hover .wf-icon svg { color: var(--gold-500); }

.wf-title { font-size: .95rem; font-weight: 600; color: var(--navy-800); margin-bottom: 4px; }
.wf-desc  { font-size: .85rem; color: var(--gray-500); line-height: 1.72; }

/* ============================================================
   PROCESS V2 — Horizontal drag scroll
   ============================================================ */
.process-v2 { background: var(--bg-dark); padding: 100px 0 0; overflow: hidden; }

.process-track-wrap {
  overflow-x: auto; overflow-y: visible;
  padding-bottom: 64px; cursor: grab;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.process-track-wrap::-webkit-scrollbar { display: none; }
.process-track-wrap:active { cursor: grabbing; }

.process-track {
  display: flex; gap: 0;
  padding-left: var(--container-pad, 24px);
  padding-right: var(--container-pad, 24px);
  min-width: max-content;
}

.process-step-v2 {
  width: 310px; flex-shrink: 0; padding: 44px 32px 44px 32px;
  border: 1px solid rgba(200,169,110,.09); border-right: none;
  background: var(--bg-dark); position: relative;
  transition: background .28s;
}
.process-step-v2:first-child { border-radius: 16px 0 0 16px; }
.process-step-v2:last-child  {
  border-radius: 0 16px 16px 0;
  border-right: 1px solid rgba(200,169,110,.09);
}
.process-step-v2:hover { background: var(--warm-800); }

.ps-num-wrap {
  position: relative; width: 72px; height: 72px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
}
.ps-circle-bg {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(200,169,110,.22);
  background: rgba(200,169,110,.06);
}
.ps-num {
  font-family: var(--cinzel); font-size: 1.5rem; font-weight: 700;
  color: var(--gold-500); line-height: 1; position: relative; z-index: 1;
}
.ps-icon {
  position: absolute; bottom: -6px; right: -6px;
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--warm-700); border: 1px solid rgba(200,169,110,.2);
  display: flex; align-items: center; justify-content: center;
}
.ps-icon svg { width: 14px; height: 14px; color: var(--gold-500); }

.ps-title { font-size: 1rem; color: var(--white); font-weight: 600; margin-bottom: 10px; }
.ps-desc  { font-size: .83rem; color: var(--gray-500); line-height: 1.78; }

/* ============================================================
   TESTIMONIALS V2
   ============================================================ */
.testimonials-v2 { background: var(--gray-50); padding: 100px 0; }

.test-layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start;
}

.test-info { position: sticky; top: 120px; }
.test-info-quote {
  font-family: var(--cinzel); font-size: 5.5rem; font-weight: 700;
  color: var(--gold-300); line-height: .75; margin-bottom: 20px;
}
.test-info > p { font-size: 1rem; color: var(--gray-500); line-height: 1.82; margin-bottom: 28px; }
.test-info-nums { display: flex; gap: 32px; }
.test-num {
  font-family: var(--cinzel); font-size: 2.1rem; font-weight: 700;
  color: var(--navy-800); line-height: 1; display: block;
}
.test-num-l { font-size: .78rem; color: var(--gray-500); margin-top: 4px; display: block; }

.test-cards { display: flex; flex-direction: column; gap: 20px; }
.test-card-v2 {
  background: var(--white); border-radius: 16px; padding: 36px 32px;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
  transition: all .32s var(--ease-out);
}
.test-card-v2:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: rgba(200,169,110,.22); }

.test-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.test-stars svg { width: 15px; height: 15px; color: var(--gold-500); }

.test-quote {
  font-family: var(--font-display); font-size: .97rem; font-style: italic;
  color: var(--gray-700); line-height: 1.8; margin-bottom: 24px;
}
.test-author-row { display: flex; align-items: center; gap: 14px; }
.test-ava {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cinzel); font-size: .85rem; font-weight: 600; color: var(--gold-400);
}
.test-name { font-weight: 600; font-size: .88rem; color: var(--gray-800); }
.test-role { font-size: .77rem; color: var(--gray-500); margin-top: 2px; }

/* ============================================================
   CTA V2
   ============================================================ */
.cta-v2 { background: var(--bg-dark); padding: 120px 0; position: relative; overflow: hidden; }

.cta-v2-shape {
  position: absolute; top: -120px; right: -120px; width: 560px; height: 560px;
  border-radius: 50%; border: 1px solid rgba(200,169,110,.07); pointer-events: none;
}
.cta-v2-shape::before {
  content: ''; position: absolute; inset: 60px; border-radius: 50%;
  border: 1px solid rgba(200,169,110,.05);
}
.cta-v2-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(200,169,110,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.022) 1px, transparent 1px);
  background-size: 80px 80px;
}
.cta-v2-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 64px; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-v2-eyebrow {
  font-family: var(--josefin); font-size: .7rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-500);
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.cta-v2-eyebrow::before, .cta-v2-eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--gold-500);
}
.cta-v2-title {
  font-family: var(--cinzel); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 600;
  color: var(--white); line-height: 1.2; margin-bottom: 16px;
}
.cta-v2-title em { color: var(--gold-500); font-style: italic; }
.cta-v2-desc { font-size: .95rem; color: rgba(255,255,255,.42); line-height: 1.85; max-width: 440px; }
.cta-v2-actions { display: flex; flex-direction: column; gap: 14px; min-width: 260px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .why-v2-grid { grid-template-columns: 1fr; gap: 60px; }
  .why-badges { bottom: -10px; left: -10px; }
}

@media (max-width: 960px) {
  /* Hero collapses to centered single column, drawing hidden */
  .fa-hero-inner {
    grid-template-columns: 1fr;
    padding: 90px 32px 160px;
  }
  .fa-hero-sep,
  .fa-drawing-col { display: none; }
  .fa-hero-content {
    padding-right: 0;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  .fa-h-excellence { margin-left: 0; }
  .fa-rule-row { justify-content: center; }
  .fa-actions { justify-content: center; }
  .fa-certs { justify-content: center; }
  .fa-desc { max-width: none; }
}

@media (max-width: 900px) {
  .services-grid-v2 { grid-template-columns: repeat(2,1fr); }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 260px 260px 260px;
  }
  .bento-card-1 { grid-column: 1 / span 2; grid-row: 1; }
  .bento-card-2 { grid-column: 1; grid-row: 2; }
  .bento-card-3 { grid-column: 2; grid-row: 2; }
  .bento-card-4 { grid-column: 1 / span 2; grid-row: 3; }
  .materials-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; gap: 60px; }
  .test-layout { grid-template-columns: 1fr; }
  .test-info { position: static; }
}

@media (max-width: 768px) {
  .fa-h-building,
  .fa-h-excellence { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .fa-stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0; background: rgba(200,169,110,.07); padding: 0;
  }
  .fa-stat-div { display: none; }
  .fa-stat {
    background: rgba(4,8,18,.9); padding: 20px 16px;
    border: 1px solid rgba(200,169,110,.06);
  }
  .fa-stat-n { font-size: 1.7rem; }
  .fa-scroll-ind { display: none; }
  .fa-corner-label { display: none; }

  .services-grid-v2 { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-card-1, .bento-card-2, .bento-card-3, .bento-card-4 {
    grid-column: 1; grid-row: auto; min-height: 260px;
  }
  .cta-v2-inner { flex-direction: column; }
  .cta-v2-actions { width: 100%; }
}

@media (max-width: 640px) {
  .fa-stat-n { font-size: 1.5rem; }
  .fa-stat-l { font-size: .55rem; }
  .c-cursor-dot, .c-cursor-ring { display: none; }
  .process-step-v2 { width: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  .fa-scroll-line, .why-rotating-svg,
  .marquee-track, .fa-badge-dot { animation: none; }
  .fa-h-building, .fa-h-excellence { animation: none; transform: none; }
  .fa-badge, .fa-rule-row, .fa-desc, .fa-actions, .fa-certs,
  .fa-stats-bar, .fa-scroll-ind, .fa-draw-caption { animation: none; opacity: 1; }
}
