/* ============================================================
   FABCON FENESTRATION — PREMIUM STYLE
   Design: Dark ink (#0D1B26) + Gold (#C09A5B) luxury aesthetic
   ============================================================ */

:root {
  --ink: #0D1B26;
  --ink-mid: #1E3244;
  --gold: #C09A5B;
  --gold-light: #D4B482;
  --cream: #F5F0E8;
  --offwhite: #FAF8F4;
  --border: rgba(192,154,91,0.25);
  --text: #3D4F5E;
  --sans: 'DM Sans', sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Bebas Neue', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--offwhite);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transition: all 0.35s cubic-bezier(.25,.46,.45,.94);
  opacity: 0.6;
}

/* ── TOP BAR (hidden — replaced by nav) ── */
.top-bar { display: none; }

/* ── NAVIGATION ── */
nav.main-nav, header.header { all: unset; }
.fabcon-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s ease;
}
.fabcon-nav.scrolled {
  background: rgba(13,27,38,0.97);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--border);
}
.fabcon-nav .nav-logo img { height: 44px; }
.fabcon-nav .nav-links {
  display: flex; align-items: center; gap: 26px;
  list-style: none;
}
.fabcon-nav .nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  position: relative; transition: color 0.3s;
}
.fabcon-nav .nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.fabcon-nav .nav-links a:hover { color: var(--gold); }
.fabcon-nav .nav-links a:hover::after { width: 100%; }
.fabcon-nav .nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 10px 28px;
  letter-spacing: 2px; font-size: 0.7rem !important;
  transition: all 0.3s !important; border-radius: 0 !important;
}
.fabcon-nav .nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }
.fabcon-nav .nav-cta::after { display: none !important; }
.fabcon-nav .ham {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
}
.fabcon-nav .ham span { width: 28px; height: 1.5px; background: #fff; display: block; transition: all 0.3s; }

/* ── HERO ── */
.fab-hero {
  height: 120vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden; background: var(--ink);
}
.fab-hero::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 70%);
  z-index: 10;
}
.hero-bg-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,27,38,0.85) 40%, rgba(13,27,38,0.4) 100%);
}
.fab-hero .hero-content {
  position: relative; z-index: 5;
  padding: 0 80px; max-width: 820px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.hero-eyebrow span {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
}
.hero-eyebrow-line { width: 50px; height: 1px; background: var(--gold); }
.fab-hero h1 {
  font-family: var(--serif); font-size: 5.5rem; font-weight: 300;
  line-height: 1.05; color: #fff; margin-bottom: 28px; width:887px;
}
.fab-hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.65); font-weight: 300;
  line-height: 1.7; margin-bottom: 48px; max-width: 480px;
}
.hero-actions { display: flex; gap: 20px; align-items: center; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--ink);
  padding: 16px 36px; text-decoration: none;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.35s ease; border: 1px solid var(--gold);
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  padding-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.hero-dots {
  position: absolute; bottom: 40px; right: 80px; z-index: 10;
  display: flex; gap: 8px;
}
.hero-dot { width: 28px; height: 2px; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; }
.hero-dot.active { background: var(--gold); width: 48px; }

/* ── MARQUEE ── */
.marquee-bar { background: var(--gold); padding: 14px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 25s linear infinite; gap: 0; }
.marquee-track span {
  font-family: var(--display); font-size: 1rem;
  letter-spacing: 4px; color: var(--ink); padding: 0 40px;
}
.marquee-track .dot { color: rgba(13,27,38,0.4); padding: 0; font-size: 0.5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--ink); padding: 60px 80px;
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat-item { padding: 20px 40px; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 300;
  color: var(--gold); display: block; line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ── COMMON ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 20px;
}
.section-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--serif); font-size: 3.2rem; font-weight: 300;
  line-height: 1.15; color: var(--ink); margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title-white { color: #fff; }
.section-body { font-size: 0.95rem; line-height: 1.85; color: var(--text); max-width: 98%; text-align: justify; }

/* ── ABOUT ── */
.about-section {
  padding: 110px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-main { width: 100%; height: 580px; object-fit: cover; display: block; }
.about-image-badge {
  position: absolute; bottom: -30px; right: -30px;
  background: var(--gold); padding: 28px 32px; text-align: center;
}
.about-image-badge .num {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: var(--ink); display: block; line-height: 1;
}
.about-image-badge .label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); font-weight: 600; }
.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.about-mini-card {
  border: 1px solid rgba(192,154,91,0.2); padding: 24px;
  transition: all 0.35s ease; position: relative; overflow: hidden;
}
.about-mini-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.4s ease;
}
.about-mini-card:hover::before { width: 100%; }
.about-mini-card:hover { background: rgba(192,154,91,0.04); }
.about-mini-card h5 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 8px; color: var(--ink); }
.about-mini-card p { font-size: 0.82rem; color: var(--text); line-height: 1.7; }

/* ── SERVICES ── */
.services-section { background: var(--ink); padding: 110px 80px; }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 70px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.service-item {
  background: var(--ink); padding: 44px 36px;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(180deg, rgba(192,154,91,0.08) 0%, transparent 100%);
  transition: height 0.4s ease;
}
.service-item:hover::before { height: 100%; }
.service-item:hover { border-top: 2px solid var(--gold); margin-top: -2px; }
.service-num { font-family: var(--display); font-size: 3rem; color: rgba(192,154,91,0.15); display: block; margin-bottom: 16px; line-height: 1; }
.service-icon-wrap {
  width: 52px; height: 52px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: all 0.35s;
}
.service-item:hover .service-icon-wrap { border-color: var(--gold); background: rgba(192,154,91,0.1); }
.service-icon-wrap svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-item h4 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: #fff; margin-bottom: 12px; }
.service-item p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.75; }

/* ── PROCESS ── */
.process-section { padding: 110px 80px; background: var(--cream); }
.process-row {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 0; margin-top: 64px; position: relative;
}
.process-row::before {
  content: ''; position: absolute;
  top: 32px; left: 32px; right: 32px; height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(192,154,91,0.2));
}
.process-step { padding: 0 20px; text-align: center; }
.process-circle {
  width: 64px; height: 64px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; background: var(--cream); position: relative; z-index: 1;
  font-family: var(--serif); font-size: 1.3rem; color: var(--gold); transition: all 0.35s ease;
}
.process-step:hover .process-circle { background: var(--gold); color: var(--ink); }
.process-step h5 { font-family: var(--serif); font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.process-step p { font-size: 0.75rem; color: var(--text); line-height: 1.6; }

/* ── PROJECTS ── */
.projects-section { padding: 110px 0 110px 80px; background: var(--offwhite); }
.projects-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-right: 80px; margin-bottom: 56px;
}
.projects-scroll {
  display: flex; gap: 24px; overflow-x: auto;
  padding-right: 80px; padding-bottom: 20px;
  scrollbar-width: none; cursor: grab;
}
.projects-scroll::-webkit-scrollbar { display: none; }
.project-card {
  flex: 0 0 400px; background: #fff;
  border: 1px solid rgba(0,0,0,0.07); overflow: hidden;
  transition: all 0.4s ease; text-decoration: none; display: block;
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(13,27,38,0.12); }
.project-card-img-wrap { overflow: hidden; }
.project-card-img {
  width: 100%; height: 280px; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.project-card:hover .project-card-img { transform: scale(1.04); }
.project-card-body { padding: 28px; }
.project-cat { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.project-card-body h4 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 6px; color: var(--ink); }

/* ── MISSION / WHY ── */
.why-section { background: var(--ink-mid); display: grid; grid-template-columns: 1fr 1fr; }
.why-image { position: relative; overflow: hidden; min-height: 500px; }
.why-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.55); transition: transform 0.8s ease; }
.why-image:hover img { transform: scale(1.04); }
.why-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,38,0.6) 0%, transparent 100%); display: flex; align-items: flex-end; padding: 50px; }
.why-quote { font-family: var(--serif); font-size: 1.7rem; font-style: italic; font-weight: 300; color: #fff; line-height: 1.45; max-width: 380px; }
.why-quote span { color: var(--gold-light); }
.why-content { padding: 80px 70px; }
.why-list { list-style: none; margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.why-list li { display: flex; align-items: flex-start; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(192,154,91,0.15); color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.6; transition: all 0.3s; }
.why-list li:hover { color: #fff; padding-left: 6px; }
.why-num { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); min-width: 28px; font-weight: 400; }

/* ── CLIENTS ── */
.clients-section { padding: 110px 80px; background: var(--offwhite); }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin: 50px 0; }
.client-card {
  background: #fff; border: 1px solid rgba(192,154,91,0.15);
  padding: 30px 20px; text-align: center;
  transition: all 0.35s ease; position: relative; overflow: hidden;
}
.client-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.4s ease; }
.client-card:hover::before { width: 100%; }
.client-card:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(192,154,91,0.1); transform: translateY(-4px); }
.client-initial {
  width: 52px; height: 52px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.4rem; color: var(--gold);
  margin: 0 auto 14px;
}
.client-name-text { font-size: 0.82rem; font-weight: 600; color: var(--ink); letter-spacing: 0.5px; }

/* ── ARCHITECTS ── */
.architects-section { background: var(--ink); padding: 80px; }
.architects-list { margin-top: 32px; border: 1px solid var(--border); padding: 36px; }
.architects-list p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 2; letter-spacing: 1px; }

/* ── INFRASTRUCTURE ── */
.infrastructure-section { position: relative; padding: 110px 80px; overflow: hidden; }
.infrastructure-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.infrastructure-overlay { position: absolute; inset: 0; background: rgba(13,27,38,0.88); }
.infrastructure-content { position: relative; z-index: 2; max-width: 600px; }
.infrastructure-content p { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 2.2; }
.infrastructure-content p br { display: block; content: ''; }

/* ── CONTACT / FOOTER ── */
.contact-section { background: var(--ink); padding: 110px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact-details { margin-top: 48px; display: flex; flex-direction: column; gap: 28px; }
.contact-detail-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon-box { width: 44px; height: 44px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-box svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-detail-item h6 { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.contact-detail-item p, .contact-detail-item a { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.7; text-decoration: none; }
.contact-detail-item a:hover { color: var(--gold); }

/* ── FOOTER ── */
.fabcon-footer {
  background: #060F16; padding: 60px 80px 30px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 30px;
}
.footer-logo img { height: 42px; margin-bottom: 18px; }
.footer-tagline { font-family: var(--serif); font-size: 0.95rem; font-style: italic; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-col h6 { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li.addr { color: rgba(255,255,255,0.4); font-size: 0.78rem; line-height: 1.6; margin-top: 8px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.75rem; transition: all 0.3s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.72rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.2,0.95,0.4,1); }
.reveal.visible { opacity: 1; transform: translateY(0);}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(6,15,22,0.9);
  backdrop-filter: blur(8px); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--ink-mid); border: 1px solid var(--border); padding: 52px;
  width: 100%; max-width: 520px; position: relative;
  transform: translateY(30px); transition: transform 0.4s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: rgba(255,255,255,0.4); font-size: 1.4rem; cursor: pointer; transition: color 0.3s; }
.modal-close:hover { color: var(--gold); }
.modal-title { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: #fff; margin-bottom: 8px; }
.modal-sub { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 32px; }

/* Form elements */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { margin-bottom: 18px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); color: #fff;
  padding: 14px 18px; font-family: var(--sans); font-size: 0.85rem;
  outline: none; transition: border-color 0.3s; -webkit-appearance: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-field select option { background: var(--ink); color: #fff; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: none; height: 110px; }
.form-submit {
  width: 100%; background: var(--gold); color: var(--ink); border: none;
  padding: 16px; font-family: var(--sans); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; transition: all 0.35s;
}
.form-submit:hover { background: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .fabcon-nav, .fabcon-nav.scrolled { padding: 18px 30px; }
  .fabcon-nav .nav-links { display: none; }
  .fabcon-nav .ham { display: flex; }
  .fab-hero .hero-content { padding: 0 40px; }
  .fab-hero h1 { font-size: 4rem; }
  .about-section, .services-section, .process-section, .projects-section, .clients-section, .architects-section, .infrastructure-section, .contact-section, .fabcon-footer { padding-left: 30px; padding-right: 30px; }
  .projects-section { padding-left: 30px; }
  .projects-scroll { padding-right: 30px; }
  .projects-header { padding-right: 30px; }
  .about-section { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: repeat(3,1fr); }
  .process-row::before { display: none; }
  .why-section { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats-bar { padding: 50px 30px; }
}
@media (max-width: 640px) {
  .fab-hero h1 { font-size: 2.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: repeat(2,1fr); }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-header { grid-template-columns: 1fr; gap: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .about-cards { grid-template-columns: 1fr; }
  .project-card { flex: 0 0 300px; }
  .clients-section, .why-content { padding: 60px 20px; }
  .architects-section { padding: 60px 20px; }
}

/* Mobile nav open state */
.fabcon-nav .nav-links.open {
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(13,27,38,0.98); backdrop-filter: blur(20px);
  align-items: center; justify-content: center; gap: 32px; z-index: 999;
}
.fabcon-nav .nav-links.open a { font-size: 1.1rem; }


/*--------------------------About Us page---------------------------------*/

/* ── PAGE BANNER ── */
.page-banner {
  height: 60vh; min-height: 420px;
  position: relative; display: flex; align-items: center;
  overflow: hidden; background: var(--ink);
}
.page-banner::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 70%);
  z-index: 10;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  /* background-image set via inline style — asset() does NOT work in .css files */
}
.page-banner-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,27,38,0.88) 40%, rgba(13,27,38,0.5) 100%);
}
.page-banner-content { position: relative; z-index: 5; padding: 0 80px; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }
.page-banner h1 {
  font-family: var(--serif); font-size: 5rem; font-weight: 300;
  color: #fff; line-height: 1.05;
}
.page-banner h1 em { font-style: italic; color: var(--gold-light); }

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--gold); padding: 28px 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.intro-strip p {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
  font-style: italic; color: var(--ink); line-height: 1.6; flex: 1;
}
.intro-strip .strip-stat {
  text-align: center; flex-shrink: 0;
  border-left: 1px solid rgba(13,27,38,0.2); padding-left: 40px;
}
.intro-strip .strip-stat span {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: var(--ink); display: block; line-height: 1;
}
.intro-strip .strip-stat small {
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(13,27,38,0.6); font-weight: 600;
}

/* ── ABOUT STORY ── */
.about-story {
  padding: 110px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start;
}
.story-image-stack { position: relative; }
.story-img-main { width: 100%; height: 560px; object-fit: cover; display: block; }
.story-img-secondary {
  position: absolute; bottom: -40px; right: -30px;
  width: 220px; height: 180px; object-fit: cover;
  border: 6px solid var(--offwhite);
}
.story-img-badge {
  position: absolute; top: 40px; left: -20px;
  background: var(--ink); border: 1px solid var(--border);
  padding: 24px 28px; text-align: center;
}
.story-img-badge span {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 300;
  color: var(--gold); display: block; line-height: 1;
}
.story-img-badge small {
  font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.story-text { padding-top: 12px; }
.story-text p { font-size: 0.95rem; line-height: 1.9; color: var(--text); margin-bottom: 20px; }
.story-text p strong { color: var(--ink); font-weight: 600; }
.story-divider { width: 60px; height: 1px; background: var(--gold); margin: 32px 0; }
.story-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.highlight-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 18px;
  border: 1px solid rgba(192,154,91,0.18); position: relative; overflow: hidden; transition: all 0.35s;
}
.highlight-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.4s;
}
.highlight-item:hover::before { width: 100%; }
.highlight-item:hover { background: rgba(192,154,91,0.04); }
.highlight-num {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
  color: var(--gold); line-height: 1; min-width: 32px;
}
.highlight-item h6 { font-size: 0.78rem; font-weight: 600; color: var(--ink); letter-spacing: 0.5px; margin-bottom: 4px; }
.highlight-item p { font-size: 0.76rem; color: var(--text); line-height: 1.55; margin: 0; }

/* ── MISSION / VISION ── */
.mission-vision-section {
  background: var(--ink); padding: 0; display: grid; grid-template-columns: 1fr 1fr;
}
.mv-panel { padding: 90px 70px; position: relative; overflow: hidden; }
.mv-panel::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 3px; background: var(--gold); transition: width 0.6s ease;
}
.mv-panel:hover::before { width: 100%; }
.mv-panel + .mv-panel { border-left: 1px solid var(--border); }
.mv-panel .mv-icon {
  width: 60px; height: 60px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 32px;
}
.mv-panel .mv-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.mv-panel h3 {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: #fff; margin-bottom: 20px; line-height: 1.2;
}
.mv-panel h3 em { font-style: italic; color: var(--gold-light); }
.mv-panel p { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.85; }
.mv-panel .mv-quote {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
  color: rgba(255,255,255,0.35); margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border); line-height: 1.7;
}

/* ── VALUE PROPOSITIONS ── */
.values-section { padding: 110px 80px; background: var(--cream); }
.values-header { text-align: center; margin-bottom: 70px; }
.values-header .section-tag { justify-content: center; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.value-card {
  background: #fff; padding: 48px 40px;
  border: 1px solid rgba(192,154,91,0.15);
  position: relative; overflow: hidden; transition: all 0.4s ease;
}
.value-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 0; background: linear-gradient(180deg, rgba(192,154,91,0.06) 0%, transparent 100%);
  transition: height 0.4s ease;
}
.value-card:hover::after { height: 100%; }
.value-card:hover { border-color: rgba(192,154,91,0.4); box-shadow: 0 20px 50px rgba(13,27,38,0.08); transform: translateY(-4px); }
.value-card-top { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.value-icon-box {
  width: 56px; height: 56px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.35s;
}
.value-card:hover .value-icon-box { border-color: var(--gold); background: rgba(192,154,91,0.08); }
.value-icon-box img { width: 28px; height: 28px; object-fit: contain; }
.value-card-top h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--ink); }
.value-card-num {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--display); font-size: 4rem; color: rgba(192,154,91,0.08); line-height: 1;
}
.value-subsection { margin-bottom: 28px; }
.value-subsection:last-child { margin-bottom: 0; }
.value-subsection h5 {
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
.value-subsection p { font-size: 0.88rem; color: var(--text); line-height: 1.8; }

/* ── TEAM / STATS BANNER ── */
.team-banner {
  background: var(--ink-mid); padding: 80px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center;
}
.team-banner-text h2 {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 300;
  color: #fff; margin-bottom: 20px; line-height: 1.2;
}
.team-banner-text h2 em { font-style: italic; color: var(--gold-light); }
.team-banner-text p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 32px; }
.team-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.team-stat { background: var(--ink); padding: 36px 28px; text-align: center; transition: background 0.3s; }
.team-stat:hover { background: var(--ink-mid); }
.team-stat-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: var(--gold); display: block; line-height: 1; margin-bottom: 8px;
}
.team-stat-label { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* ── CTA SECTION ── */
.about-cta {
  background: var(--offwhite); padding: 110px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cta-left h2 {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: var(--ink); margin-bottom: 20px; line-height: 1.2;
}
.cta-left h2 em { font-style: italic; color: var(--gold); }
.cta-left p { font-size: 0.95rem; color: var(--text); line-height: 1.85; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.cta-right { background: var(--ink); padding: 52px; border: 1px solid var(--border); }
.cta-right h4 { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: #fff; margin-bottom: 8px; }
.cta-right > p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 32px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .page-banner-content { padding: 0 30px; }
  .page-banner h1 { font-size: 3.5rem; }
  .intro-strip { padding: 24px 30px; flex-direction: column; gap: 20px; }
  .intro-strip .strip-stat { border-left: none; padding-left: 0; border-top: 1px solid rgba(13,27,38,0.2); padding-top: 20px; width: 100%; }
  .about-story { grid-template-columns: 1fr; gap: 60px; padding: 80px 30px; }
  .story-img-secondary { display: none; }
  .story-img-badge { left: 10px; }
  .mission-vision-section { grid-template-columns: 1fr; }
  .mv-panel + .mv-panel { border-left: none; border-top: 1px solid var(--border); }
  .values-section { padding: 80px 30px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-banner { grid-template-columns: 1fr; gap: 40px; padding: 60px 30px; }
  .about-cta { grid-template-columns: 1fr; gap: 40px; padding: 80px 30px; }
}
@media (max-width: 640px) {
  .page-banner h1 { font-size: 2.6rem; }
  .story-highlights { grid-template-columns: 1fr; }
  .team-stats { grid-template-columns: 1fr 1fr; }
  .mv-panel { padding: 60px 30px; }
  .value-card { padding: 32px 24px; }
}
 /* ============================================================
   PROJECTS SECTION V2 — Modern masonry overlay grid
   Add this to your main CSS file (frontend.css / app.css)
   ============================================================ */

/* ── PROJECTS V2 ── */
.projects-section-v2 {
  padding: 110px 80px;
  background: var(--offwhite);
}

.ps2-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.ps2-sub {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.75;
  max-width: 460px;
  margin-top: 14px;
}

/* ── Featured + stack layout ── */
.ps2-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 3px;
  margin-bottom: 3px;
}

/* ── Stack column ── */
.ps2-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

/* ── Bottom row ── */
.ps2-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

/* ── Shared card base ── */
.ps2-featured,
.ps2-stack-card,
.ps2-bottom-card {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.ps2-featured      { min-height: 580px; }
.ps2-stack-card    { min-height: 288px; }
.ps2-bottom-card   { min-height: 300px; }

/* ── Image ── */
.ps2-img-wrap {
  position: absolute;
  inset: 0;
}

.ps2-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.6);
}

.ps2-featured:hover .ps2-img-wrap img,
.ps2-stack-card:hover .ps2-img-wrap img,
.ps2-bottom-card:hover .ps2-img-wrap img {
  transform: scale(1.06);
  filter: brightness(0.45);
}

/* ── Gradient overlay ── */
.ps2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 38, 0.92) 0%,
    rgba(13, 27, 38, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 32px;
  transition: background 0.4s ease;
}

.ps2-featured .ps2-overlay { padding: 36px 44px; }

.ps2-featured:hover .ps2-overlay,
.ps2-stack-card:hover .ps2-overlay,
.ps2-bottom-card:hover .ps2-overlay {
  background: linear-gradient(
    to top,
    rgba(13, 27, 38, 0.96) 0%,
    rgba(13, 27, 38, 0.5) 60%,
    rgba(13, 27, 38, 0.15) 100%
  );
}

/* ── Project index number (top-left) ── */
.ps2-index {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 4px;
  opacity: 0.7;
  align-self: flex-start;
}

/* ── Bottom meta ── */
.ps2-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ps2-cat {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.ps2-featured .ps2-meta h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.ps2-stack-card .ps2-meta h4,
.ps2-bottom-card .ps2-meta h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}

/* ── CTA arrow ── */
.ps2-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  transition: color 0.3s, gap 0.3s;
}

.ps2-featured:hover .ps2-cta,
.ps2-stack-card:hover .ps2-cta,
.ps2-bottom-card:hover .ps2-cta {
  color: var(--gold);
  gap: 14px;
}

.ps2-arrow {
  transition: transform 0.3s ease;
}

.ps2-featured:hover .ps2-arrow,
.ps2-stack-card:hover .ps2-arrow,
.ps2-bottom-card:hover .ps2-arrow {
  transform: translateX(6px);
}

/* ── Gold accent line on hover ── */
.ps2-featured::after,
.ps2-stack-card::after,
.ps2-bottom-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width 0.45s ease;
  z-index: 5;
}

.ps2-featured:hover::after,
.ps2-stack-card:hover::after,
.ps2-bottom-card:hover::after {
  width: 100%;
}


/* ============================================================
   CLIENTS SECTION V2 — Modern flip-card logo grid
   ============================================================ */

.clients-section-v2 {
  padding: 110px 80px;
  background: var(--ink);
  border-top: 1px solid var(--border);
}

/* ── Header ── */
.cs2-header {
  text-align: center;
  margin-bottom: 64px;
}

.cs2-header .section-tag { justify-content: center; }

.cs2-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  max-width: 480px;
  margin: 16px auto 0;
}

/* ── Grid ── */
.cs2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 56px;
}

/* ── Card container (for 3D flip perspective) ── */
.cs2-card {
  perspective: 800px;
  min-height: 140px;
}

/* ── Inner — the flipping element ── */
.cs2-inner {
  width: 100%;
  height: 140px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.cs2-card:hover .cs2-inner {
  transform: rotateY(180deg);
}

/* ── Front & Back shared ── */
.cs2-front,
.cs2-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  transition: background 0.3s;
}

/* ── Front ── */
.cs2-front { flex-direction: column; gap: 0; }

.cs2-monogram {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 300;
  color: rgba(192, 154, 91, 0.25);
  line-height: 1;
  transition: all 0.35s;
}

.cs2-card:hover .cs2-monogram {
  color: rgba(192, 154, 91, 0.5);
}

/* ── Back ── */
.cs2-back {
  transform: rotateY(180deg);
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  text-align: center;
  background: var(--ink-mid);
  border-top: 2px solid var(--gold);
}

.cs2-back-name {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}

.cs2-back-tag {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ── Footer strip ── */
.cs2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.cs2-count-strip {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cs2-count-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.cs2-count-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 360px;
}


/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .projects-section-v2 { padding: 80px 30px; }
  .clients-section-v2  { padding: 80px 30px; }

  .ps2-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .ps2-layout { grid-template-columns: 1fr; }
  .ps2-featured { min-height: 420px; }
  .ps2-stack { grid-template-rows: 280px 280px; }
  .ps2-bottom-row { grid-template-columns: 1fr 1fr; }

  .cs2-footer { flex-direction: column; align-items: flex-start; gap: 28px; }
}

@media (max-width: 640px) {
  .ps2-featured { min-height: 340px; }
  .ps2-bottom-row { grid-template-columns: 1fr; }
  .ps2-featured .ps2-overlay { padding: 24px; }
  .ps2-featured .ps2-meta h3 { font-size: 1.5rem; }
  .cs2-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}


