/* ============================================================
   project-detail.css — Project Detail Pages (shared)
   ANIB Building Contracting LLC
   Design System: Cormorant Garamond + DM Sans | Navy / Gold / Cream
   ============================================================ */

/* ── ROOT & RESET ── */
:root {
  --gold: #C9973A;
  --gold-light: #E8B25C;
  --primary: #0D1B2A;
  --cream: #F5F0E8;
  --dark-bg: #080F18;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", sans-serif;
  background: #F9F7F4;
  color: #1a1a1a;
  overflow-x: hidden;
  cursor: none;
}
::selection { background: rgba(201,151,58,0.2); color: var(--primary); }
img { display: block; max-width: 100%; }

/* ── CURSOR ── */
.cursor { width:10px;height:10px;background:var(--gold);border-radius:50%;position:fixed;top:0;left:0;pointer-events:none;z-index:9999;transition:transform 0.15s ease;mix-blend-mode:difference; }
.cursor-ring { width:36px;height:36px;border:1.5px solid rgba(201,151,58,0.7);border-radius:50%;position:fixed;top:0;left:0;pointer-events:none;z-index:9998;transition:all 0.3s ease;opacity:0.6; }
@media(max-width:768px) { .cursor,.cursor-ring { display:none; } body { cursor:auto; } }

/* ── PROGRESS BAR ── */
.progress-bar { position:fixed;top:0;left:0;height:2px;background:linear-gradient(to right,var(--gold),var(--gold-light));z-index:9999;width:0%;transition:width 0.08s linear; }

/* ── HEADER ── */
.site-header { position:fixed;top:0;left:0;right:0;z-index:100;padding:0 2rem;display:flex;align-items:center;justify-content:space-between;height:80px;transition:all 0.5s ease;background:rgba(13,27,42,0.75);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px); }
.site-header::after { content:'';position:absolute;bottom:0;left:5%;right:5%;height:1px;background:linear-gradient(to right,transparent,rgba(201,151,58,0.3),transparent); }
.site-header.scrolled { background:rgba(13,27,42,0.97);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);box-shadow:0 4px 40px rgba(0,0,0,0.4);height:68px; }
.logo-wrap { display:flex;align-items:center;gap:14px; }
.logo-wrap img { height:60px;transition:all 0.4s; }
.site-header.scrolled .logo-wrap img { height:42px; }
.logo-text { font-family:"DM Sans",sans-serif;font-weight:600;letter-spacing:0.15em;font-size:0.85rem;color:white;text-transform:uppercase; }
.nav-links { display:flex;gap:2.5rem;align-items:center; }
.nav-links a { font-size:0.78rem;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.85);text-decoration:none;position:relative;transition:color 0.3s; }
.nav-links a::after { content:'';position:absolute;bottom:-4px;left:0;width:0;height:1px;background:var(--gold);transition:width 0.3s ease; }
.nav-links a:hover,.nav-links a.nav-active { color:var(--gold-light); }
.nav-links a:hover::after,.nav-links a.nav-active::after { width:100%; }
.nav-cta { background:var(--gold)!important;color:var(--primary)!important;padding:9px 22px;border-radius:4px;font-weight:700!important;transition:all 0.3s ease!important; }
.nav-cta:hover { background:var(--gold-light)!important;transform:translateY(-1px);box-shadow:0 6px 20px rgba(201,151,58,0.5); }
.nav-cta::after { display:none!important; }
.mobile-btn { display:none;background:none;border:1px solid rgba(201,151,58,0.5);color:white;width:40px;height:40px;border-radius:4px;cursor:pointer;font-size:1.2rem;align-items:center;justify-content:center; }
@media(max-width:768px) { .nav-links { display:none; } .mobile-btn { display:flex; } }

/* ── MOBILE MENU ── */
.mobile-menu { position:fixed;top:0;right:-100%;width:min(320px,85vw);height:100vh;background:var(--primary);z-index:200;padding:6rem 2.5rem 3rem;display:flex;flex-direction:column;gap:0;transition:right 0.5s cubic-bezier(0.77,0,0.175,1);border-left:1px solid rgba(201,151,58,0.2); }
.mobile-menu.open { right:0; }
.mobile-menu a { color:rgba(255,255,255,0.85);text-decoration:none;font-size:1.5rem;font-family:"Cormorant Garamond",serif;font-weight:600;padding:1rem 0;border-bottom:1px solid rgba(255,255,255,0.07);transition:color 0.3s,padding-left 0.3s; }
.mobile-menu a:hover { color:var(--gold);padding-left:8px; }
.mobile-overlay { position:fixed;inset:0;background:rgba(0,0,0,0.6);z-index:199;opacity:0;pointer-events:none;transition:opacity 0.4s; }
.mobile-overlay.show { opacity:1;pointer-events:all; }
.close-menu { position:absolute;top:1.5rem;right:1.5rem;background:none;border:none;color:white;font-size:1.5rem;cursor:pointer; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)} }
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.3;transform:scaleY(0.5)} }
@keyframes heroZoom { from{transform:scale(1.06)}to{transform:scale(1)} }
.reveal { opacity:0;transform:translateY(28px);transition:opacity 0.75s ease,transform 0.75s ease; }
.reveal.visible { opacity:1;transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.22s; }
.reveal-delay-3 { transition-delay:0.34s; }
.reveal-delay-4 { transition-delay:0.46s; }

/* ── SHARED UTILITIES ── */
.section { padding: 6rem clamp(1.5rem,5vw,5rem); }
.section-tag { display:inline-flex;align-items:center;gap:10px;color:var(--gold);font-size:0.7rem;font-weight:600;letter-spacing:0.22em;text-transform:uppercase;margin-bottom:0.9rem; }
.section-tag::before { content:'';width:24px;height:1px;background:var(--gold); }
.section-h2 { font-family:"Cormorant Garamond",serif;font-size:clamp(2.2rem,4.5vw,3.8rem);font-weight:300;line-height:1.15;color:var(--primary); }
.section-h2 em { font-style:italic;color:var(--gold); }

/* ── BUTTONS ── */
.btn-gold { background:var(--gold);color:var(--primary);padding:13px 32px;font-weight:700;font-size:0.8rem;letter-spacing:0.13em;text-transform:uppercase;border-radius:4px;text-decoration:none;display:inline-flex;align-items:center;gap:8px;transition:all 0.35s ease;border:none;cursor:pointer; }
.btn-gold:hover { background:var(--gold-light);transform:translateY(-2px);box-shadow:0 10px 28px rgba(201,151,58,0.5); }
.btn-ghost-dark { border:1.5px solid var(--primary);color:var(--primary);padding:13px 32px;font-weight:700;font-size:0.8rem;letter-spacing:0.13em;text-transform:uppercase;border-radius:4px;text-decoration:none;display:inline-flex;align-items:center;gap:8px;transition:all 0.35s ease; }
.btn-ghost-dark:hover { background:var(--primary);color:white; }
.btn-ghost { border:1.5px solid rgba(255,255,255,0.4);color:white;padding:13px 32px;font-weight:600;font-size:0.8rem;letter-spacing:0.13em;text-transform:uppercase;border-radius:4px;text-decoration:none;display:inline-flex;align-items:center;gap:8px;transition:all 0.35s ease; }
.btn-ghost:hover { border-color:var(--gold);color:var(--gold); }

/* ═══════════════════════════════════════════════════════════
   PROJECT HERO
═══════════════════════════════════════════════════════════ */
.project-hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.ph-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: heroZoom 8s ease forwards;
}
.ph-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,15,24,0.98) 0%,
    rgba(8,15,24,0.65) 40%,
    rgba(8,15,24,0.2) 100%
  );
}
/* thin gold vignette on left */
.ph-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,0.7) 0%, transparent 50%);
}

/* Breadcrumb */
.ph-breadcrumb {
  position: absolute; top: 108px; left: clamp(1.5rem,5vw,5rem);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); z-index: 10;
}
.ph-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.ph-breadcrumb a:hover { color: var(--gold); }
.ph-breadcrumb span:last-child { color: var(--gold); }
@media(max-width:768px) { .ph-breadcrumb { top: 90px; } }

/* Content block at bottom */
.ph-content {
  position: relative; z-index: 10;
  width: 100%; padding: 0 clamp(1.5rem,5vw,5rem) 0;
  padding-bottom: 140px; /* space for spec bar */
}
.ph-category {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.ph-category::before { content:''; width:24px; height:1px; background:var(--gold); }
.ph-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem,6.5vw,6rem);
  font-weight: 300; line-height: 1.05; color: white;
  max-width: 800px; margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.ph-h1 em { font-style: italic; color: var(--gold-light); }
.ph-sub {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  max-width: 520px; line-height: 1.8;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}

/* Spec bar pinned to bottom of hero */
.ph-spec-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(8,15,24,0.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(201,151,58,0.2);
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
}
.ph-spec-bar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1.5rem,5vw,5rem);
  display: flex; align-items: stretch; flex-wrap: wrap;
}
.ph-spec {
  display: flex; flex-direction: column; gap: 4px;
  padding: 1.35rem 2.5rem 1.35rem 0; margin-right: 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.ph-spec:last-child { border-right: none; margin-right: 0; }
.ph-spec-label {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.ph-spec-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem; font-weight: 600; color: white;
}
.ph-spec-value em { font-style: normal; color: var(--gold); }
@media(max-width:640px) {
  .ph-spec-bar-inner { flex-wrap: wrap; }
  .ph-spec { padding: 1rem 0; margin-right: 0; border-right: none; width: 50%; border-bottom: 1px solid rgba(255,255,255,0.05); }
}

/* Scroll hint */
.scroll-hint { position:absolute;right:2.5rem;bottom:120px;display:flex;flex-direction:column;align-items:center;gap:8px;color:rgba(255,255,255,0.3);font-size:0.6rem;letter-spacing:0.14em;text-transform:uppercase;z-index:10; }
.scroll-line { width:1px;height:50px;background:linear-gradient(to bottom,var(--gold),transparent);animation:scrollPulse 2.2s ease infinite; }
@media(max-width:768px) { .scroll-hint { display:none; } }

/* ═══════════════════════════════════════════════════════════
   STICKY SIDEBAR LAYOUT
═══════════════════════════════════════════════════════════ */
.project-body {
  max-width: 1260px; margin: 0 auto;
  padding: 0 clamp(1.5rem,5vw,5rem);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
@media(max-width: 1024px) { .project-body { grid-template-columns: 1fr; } }

/* ── MAIN CONTENT COLUMN ── */
.project-main { padding: 5rem 0; }

/* Overview */
.pm-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 5rem; align-items: start; }
@media(max-width:760px) { .pm-overview { grid-template-columns: 1fr; gap: 2.5rem; } }
.pm-overview-text p { font-size: 0.95rem; color: #555; line-height: 1.9; margin-bottom: 1rem; }
.pm-overview-text p:first-of-type { font-size: 1.05rem; color: #333; font-weight: 400; }

/* Highlights list */
.pm-highlights { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(201,151,58,0.12); border-radius: 6px; overflow: hidden; }
.pm-highlight-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.4rem; border-bottom: 1px solid rgba(201,151,58,0.08); background: white; }
.pm-highlight-item:last-child { border-bottom: none; }
.pm-hi-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(201,151,58,0.1); border: 1px solid rgba(201,151,58,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.pm-hi-icon svg { width:15px;height:15px;stroke:var(--gold);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round; }
.pm-hi-text strong { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; color: var(--primary); display: block; margin-bottom: 2px; }
.pm-hi-text span { font-size: 0.82rem; color: #777; line-height: 1.5; }

/* ── IMAGE GALLERY ── */
.pm-gallery { margin-bottom: 5rem; }
.pm-gallery-grid {
  display: grid;
  gap: 1rem;
}
.pm-gallery-grid.layout-5 {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
}
.pm-gallery-grid.layout-4 {
  grid-template-columns: 1fr 1fr;
}
.pm-gallery-grid.layout-3 {
  grid-template-columns: 1.6fr 1fr;
}
.gal-img {
  overflow: hidden; border-radius: 4px; cursor: pointer;
  position: relative;
}
.gal-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(201,151,58,0);
  transition: background 0.4s;
}
.gal-img:hover::after { background: rgba(201,151,58,0.08); }
.gal-img img { width:100%;height:100%;object-fit:cover;transition:transform 0.7s ease; }
.gal-img:hover img { transform: scale(1.04); }
/* First (featured) image taller */
.pm-gallery-grid.layout-5 .gal-img:first-child { grid-row: 1 / 3; height: 480px; }
.pm-gallery-grid.layout-5 .gal-img:not(:first-child) { height: 233px; }
.pm-gallery-grid.layout-4 .gal-img { height: 260px; }
.pm-gallery-grid.layout-3 .gal-img:first-child { height: 380px; }
.pm-gallery-grid.layout-3 .gal-img:not(:first-child) { height: 380px; }
@media(max-width:640px) {
  .pm-gallery-grid.layout-5,
  .pm-gallery-grid.layout-4,
  .pm-gallery-grid.layout-3 { grid-template-columns: 1fr; }
  .pm-gallery-grid .gal-img,
  .pm-gallery-grid .gal-img:first-child { height: 240px !important; grid-row: auto; }
}

/* Lightbox */
.lightbox { position:fixed;inset:0;background:rgba(8,15,24,0.97);z-index:1000;display:none;align-items:center;justify-content:center; }
.lightbox.open { display:flex; }
.lightbox-img { max-width:90vw;max-height:90vh;border-radius:4px;object-fit:contain; }
.lightbox-close { position:absolute;top:1.5rem;right:2rem;background:none;border:none;color:rgba(255,255,255,0.6);font-size:2.2rem;cursor:pointer;transition:color 0.3s; }
.lightbox-close:hover { color:var(--gold); }
.lightbox-prev,.lightbox-next { position:absolute;top:50%;transform:translateY(-50%);background:none;border:1px solid rgba(255,255,255,0.2);color:rgba(255,255,255,0.6);width:50px;height:50px;border-radius:50%;cursor:pointer;font-size:1.4rem;display:flex;align-items:center;justify-content:center;transition:all 0.3s; }
.lightbox-prev { left:1.5rem; }
.lightbox-next { right:1.5rem; }
.lightbox-prev:hover,.lightbox-next:hover { border-color:var(--gold);color:var(--gold); }
.lightbox-counter { position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);font-size:0.75rem;letter-spacing:0.15em;color:rgba(255,255,255,0.4);text-transform:uppercase; }

/* ── PROCESS TIMELINE ── */
.pm-process { margin-bottom: 5rem; }
.pm-process-steps { display: flex; flex-direction: column; gap: 0; border-left: 2px solid rgba(201,151,58,0.2); margin-left: 1rem; margin-top: 2rem; }
.pm-step { position: relative; padding: 0 0 2.5rem 2.5rem; }
.pm-step:last-child { padding-bottom: 0; }
.pm-step-dot {
  position: absolute; left: -11px; top: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.pm-step-dot::after { content:''; width:6px;height:6px;border-radius:50%;background:var(--gold); }
.pm-step-num { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.pm-step-title { font-family:"Cormorant Garamond",serif;font-size:1.3rem;font-weight:600;color:var(--primary);margin-bottom: 0.5rem; }
.pm-step-desc { font-size: 0.88rem; color: #666; line-height: 1.8; max-width: 560px; }

/* ── CHALLENGE / SOLUTION ── */
.pm-challenge { margin-bottom: 5rem; }
.pm-cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
@media(max-width:640px) { .pm-cs-grid { grid-template-columns: 1fr; } }
.pm-cs-card { padding: 2rem; border-radius: 6px; }
.pm-cs-card.challenge { background: rgba(13,27,42,0.04); border: 1px solid rgba(13,27,42,0.08); }
.pm-cs-card.solution { background: rgba(201,151,58,0.05); border: 1px solid rgba(201,151,58,0.18); }
.pm-cs-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.75rem; }
.pm-cs-card.challenge .pm-cs-label { color: var(--primary); }
.pm-cs-card.solution .pm-cs-label { color: var(--gold); }
.pm-cs-title { font-family:"Cormorant Garamond",serif;font-size:1.4rem;font-weight:600;color:var(--primary);margin-bottom:0.75rem;line-height:1.25; }
.pm-cs-text { font-size: 0.88rem; color: #666; line-height: 1.82; }

/* ── RESULTS / OUTCOMES ── */
.pm-results { background: var(--primary); border-radius: 8px; padding: 3.5rem; margin-bottom: 5rem; }
.pm-results .section-tag { color: var(--gold-light); }
.pm-results .section-tag::before { background: var(--gold-light); }
.pm-results-h2 { font-family:"Cormorant Garamond",serif;font-size:clamp(1.8rem,3vw,2.6rem);font-weight:300;color:white;margin-bottom:2.5rem;line-height:1.2; }
.pm-results-h2 em { font-style:italic;color:var(--gold-light); }
.pm-results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
@media(max-width:640px) { .pm-results-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.pm-result-item { border-top: 1px solid rgba(201,151,58,0.25); padding-top: 1.25rem; }
.pm-result-num { font-family:"Cormorant Garamond",serif;font-size:2.6rem;font-weight:700;color:var(--gold);line-height:1;margin-bottom:0.35rem; }
.pm-result-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); line-height:1.5; }

/* ── TESTIMONIAL ── */
.pm-testimonial { margin-bottom: 5rem; padding: 3rem; background: white; border-radius: 6px; border: 1px solid rgba(201,151,58,0.12); position: relative; overflow: hidden; }
.pm-testimonial::before { content:'"'; position:absolute;top:-0.25rem;left:1.5rem;font-family:"Cormorant Garamond",serif;font-size:8rem;font-weight:700;color:rgba(201,151,58,0.08);line-height:1;pointer-events:none; }
.pm-testimonial-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.85rem; margin-bottom: 1rem; }
.pm-testimonial blockquote { font-family:"Cormorant Garamond",serif;font-size:clamp(1.15rem,2vw,1.45rem);font-weight:300;font-style:italic;color:#333;line-height:1.7;margin-bottom:1.5rem; }
.pm-testimonial-author { display: flex; align-items: center; gap: 1rem; }
.pm-ta-avatar { width:44px;height:44px;border-radius:50%;background:var(--primary);display:flex;align-items:center;justify-content:center;font-family:"Cormorant Garamond",serif;font-size:1.1rem;font-weight:600;color:var(--gold);flex-shrink:0; }
.pm-ta-name { font-weight:700;font-size:0.88rem;color:var(--primary); }
.pm-ta-role { font-size:0.75rem;color:#aaa;letter-spacing:0.05em; }

/* ── SPECS TABLE ── */
.pm-specs-table { margin-bottom: 5rem; }
.pm-table { width: 100%; border-collapse: collapse; border-radius: 6px; overflow: hidden; }
.pm-table tr { border-bottom: 1px solid rgba(0,0,0,0.06); }
.pm-table tr:last-child { border-bottom: none; }
.pm-table tr:nth-child(even) { background: rgba(201,151,58,0.03); }
.pm-table td { padding: 0.9rem 1.4rem; font-size: 0.88rem; }
.pm-table td:first-child { font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #888; width: 42%; }
.pm-table td:last-child { color: var(--primary); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════════════════ */
.project-sidebar { padding: 5rem 0; position: sticky; top: 100px; }
@media(max-width:1024px) { .project-sidebar { padding: 0 0 4rem; position: static; } }

.sidebar-card { background: white; border: 1px solid rgba(201,151,58,0.12); border-radius: 6px; overflow: hidden; margin-bottom: 1.5rem; }
.sidebar-card-header { padding: 1.25rem 1.5rem; background: var(--primary); }
.sidebar-card-header h5 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

/* Quick facts */
.sb-facts { display: flex; flex-direction: column; gap: 0; }
.sb-fact { display: flex; justify-content: space-between; align-items: flex-start; padding: 0.9rem 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.05); gap: 1rem; }
.sb-fact:last-child { border-bottom: none; }
.sb-fact-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #aaa; flex-shrink: 0; }
.sb-fact-val { font-size: 0.85rem; color: var(--primary); font-weight: 600; text-align: right; }

/* Services used */
.sb-services { padding: 1.25rem 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sb-service-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,151,58,0.28); padding: 5px 12px; border-radius: 3px; }

/* CTA card */
.sb-cta-card { background: var(--primary); border-radius: 6px; padding: 2rem 1.5rem; text-align: center; margin-bottom: 1.5rem; }
.sb-cta-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0.75rem 0 1.5rem; }
.sb-cta-h { font-family:"Cormorant Garamond",serif;font-size:1.4rem;font-weight:300;color:white;line-height:1.2; }
.sb-cta-h em { font-style:italic;color:var(--gold-light); }
.sb-cta-card .btn-gold { width: 100%; justify-content: center; }

/* Next project card */
.sb-next-card { background: white; border: 1px solid rgba(201,151,58,0.12); border-radius: 6px; overflow: hidden; text-decoration: none; display: block; transition: all 0.35s; margin-bottom: 1.5rem; }
.sb-next-card:hover { border-color: rgba(201,151,58,0.35); transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.sb-next-img { height: 140px; overflow: hidden; }
.sb-next-img img { width:100%;height:100%;object-fit:cover;transition:transform 0.6s; }
.sb-next-card:hover .sb-next-img img { transform: scale(1.06); }
.sb-next-body { padding: 1.25rem 1.5rem; }
.sb-next-eyebrow { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.sb-next-title { font-family:"Cormorant Garamond",serif;font-size:1.05rem;font-weight:600;color:var(--primary);line-height:1.3; }
.sb-next-arrow { font-size:0.78rem;font-weight:700;color:var(--gold);margin-top:0.5rem;display:inline-block; }

/* ═══════════════════════════════════════════════════════════
   RELATED PROJECTS SECTION
═══════════════════════════════════════════════════════════ */
.related-section { background: var(--primary); padding: 6rem clamp(1.5rem,5vw,5rem); }
.related-inner { max-width: 1200px; margin: 0 auto; }
.related-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.related-header .section-tag::before { background: var(--gold-light); }
.related-header .section-tag { color: var(--gold-light); }
.related-h2 { font-family:"Cormorant Garamond",serif;font-size:clamp(2rem,4vw,3rem);font-weight:300;color:white;line-height:1.2; }
.related-h2 em { font-style:italic;color:var(--gold-light); }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media(max-width:860px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:540px) { .related-grid { grid-template-columns: 1fr; } }
.rel-card { border-radius: 6px; overflow: hidden; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); text-decoration: none; display: block; transition: all 0.4s; }
.rel-card:hover { border-color: rgba(201,151,58,0.3); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.rel-card-img { height: 200px; overflow: hidden; position: relative; }
.rel-card-img img { width:100%;height:100%;object-fit:cover;transition:transform 0.65s,filter 0.4s;filter:brightness(0.85); }
.rel-card:hover .rel-card-img img { transform:scale(1.06);filter:brightness(0.75); }
.rel-card-cat { position:absolute;top:1rem;left:1rem;font-size:0.6rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:var(--primary);background:var(--gold);padding:4px 10px;border-radius:2px; }
.rel-card-body { padding: 1.5rem; }
.rel-card-title { font-family:"Cormorant Garamond",serif;font-size:1.1rem;font-weight:600;color:white;line-height:1.3;margin-bottom:0.5rem;transition:color 0.3s; }
.rel-card:hover .rel-card-title { color: var(--gold-light); }
.rel-card-sub { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════ */
.cta-band { background: var(--cream); padding: 5.5rem clamp(1.5rem,5vw,5rem); text-align: center; border-top: 3px solid var(--gold); }
.cta-band-inner { max-width: 680px; margin: 0 auto; }
.cta-band-sub { color: #777; font-size: 0.95rem; line-height: 1.8; margin: 1rem 0 2.5rem; }
.cta-band-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer { background: var(--dark-bg); color: rgba(255,255,255,0.5); padding: 5rem clamp(1.5rem,5vw,5rem) 2rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
@media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media(max-width:500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 120px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.75; color: rgba(255,255,255,0.38); max-width: 260px; }
.footer-col h5 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { font-size: 0.84rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-bottom: 0.7rem; }
.footer-contact-item span:first-child { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.73rem; flex-wrap: wrap; gap: 0.5rem; }

/* ═══════════════════════════════════════════════════════════
   FLOAT GROUP
═══════════════════════════════════════════════════════════ */
.float-group { position:fixed;bottom:1.75rem;right:1.75rem;z-index:90;display:flex;flex-direction:column;align-items:center;gap:0.75rem; }
.wa-float { width:54px;height:54px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 25px rgba(37,211,102,0.4);transition:all 0.35s;text-decoration:none; }
.wa-float:hover { background:#20bc5a;transform:scale(1.1) translateY(-2px); }
.wa-float svg { width:28px;height:28px; }
.scroll-top-btn { width:54px;height:54px;border-radius:50%;background:var(--primary);border:2px solid var(--gold);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all 0.35s;opacity:0;transform:translateY(16px);pointer-events:none; }
.scroll-top-btn.visible { opacity:1;transform:translateY(0);pointer-events:all; }
.scroll-top-btn:hover { background:var(--gold);transform:translateY(-3px) scale(1.08); }
.scroll-top-btn svg { width:20px;height:20px;stroke:var(--gold);transition:stroke 0.3s; }
.scroll-top-btn:hover svg { stroke:white; }