*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --gold: #F5B800;
    --black: #0D0D0D;
    --dark: #111111;
    --dark2: #1A1A1A;
    --warm-white: #F4F1EC;
    --gray: #888880;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--warm-white); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 24px 60px; display: flex; align-items: center; justify-content: space-between;
    background: rgba(13,13,13,0.94); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245,184,0,0.12);
  }
  .nav-logo img { height: 44px; filter: brightness(0) invert(1); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 13px;
    letter-spacing: 2px; text-transform: uppercase;
    color: rgba(244,241,236,0.7); text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px;
    letter-spacing: 2px; text-transform: uppercase;
    background: var(--gold); color: var(--black); border: none; padding: 12px 28px; cursor: pointer;
    text-decoration: none; transition: background 0.2s;
  }
  .nav-cta:hover { background: #ffd233; }

  /* PAGE HERO */
  .page-hero {
    padding: 160px 60px 80px; background: var(--dark);
    border-bottom: 1px solid rgba(245,184,0,0.08); position: relative; overflow: hidden;
  }
  .page-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(245,184,0,0.05), transparent 70%);
    pointer-events: none;
  }
  .page-tag {
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  }
  .page-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
  .page-title {
    font-family: 'Barlow Condensed', sans-serif; font-size: clamp(52px, 7vw, 96px);
    font-weight: 900; text-transform: uppercase; line-height: 0.92;
  }
  .page-title .gold { color: var(--gold); }
  .hero-row { display: flex; justify-content: space-between; align-items: flex-end; }
  .page-subtitle { font-size: 16px; color: rgba(244,241,236,0.5); font-weight: 300; max-width: 420px; line-height: 1.7; margin-top: 20px; }
  .hero-counter {
    display: flex; gap: 48px; flex-shrink: 0;
  }
  .counter-item { text-align: right; }
  .counter-num { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 900; color: var(--gold); line-height: 1; }
  .counter-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

  /* FILTER BAR */
  .filter-bar {
    padding: 0 60px;
    background: var(--dark);
    border-bottom: 1px solid rgba(245,184,0,0.08);
    display: flex; align-items: center; gap: 0; overflow-x: auto;
  }
  .filter-btn {
    font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    background: transparent; color: rgba(244,241,236,0.4); border: none;
    padding: 22px 24px; cursor: pointer; white-space: nowrap;
    border-bottom: 2px solid transparent; transition: all 0.2s;
  }
  .filter-btn:hover { color: var(--warm-white); }
  .filter-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

  /* FEATURED PROJECT */
  .featured {
    padding: 80px 60px 0;
  }
  .featured-label {
    font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
  }
  .featured-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
  .featured-card {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: var(--dark2); overflow: hidden;
    cursor: pointer; transition: transform 0.3s;
  }
  .featured-card:hover { transform: translateY(-4px); }
  .featured-img {
    height: 520px; position: relative; overflow: hidden;
  }
  .featured-img-inner {
    position: absolute; inset: 0;
    transition: transform 0.6s ease;
  }
  .featured-card:hover .featured-img-inner { transform: scale(1.04); }
  .featured-badge {
    position: absolute; top: 24px; left: 24px; z-index: 2;
    background: var(--gold); color: var(--black);
    font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 800;
    letter-spacing: 3px; text-transform: uppercase; padding: 8px 16px;
  }
  .featured-info {
    padding: 60px 56px; display: flex; flex-direction: column; justify-content: space-between;
  }
  .featured-category {
    font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
  }
  .featured-title {
    font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px, 3vw, 44px);
    font-weight: 900; text-transform: uppercase; line-height: 1;
  }
  .featured-desc {
    font-size: 15px; color: rgba(244,241,236,0.55); line-height: 1.8; font-weight: 300;
    margin-top: 20px;
  }
  .featured-specs {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px;
  }
  .spec-item {}
  .spec-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
  .spec-value { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; }
  .featured-cta {
    margin-top: 40px; display: flex; align-items: center; gap: 16px;
  }
  .btn-view {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px;
    letter-spacing: 2.5px; text-transform: uppercase;
    background: transparent; color: var(--gold); border: 1px solid rgba(245,184,0,0.4);
    padding: 14px 28px; cursor: pointer; transition: all 0.2s; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-view:hover { background: rgba(245,184,0,0.08); border-color: var(--gold); }
  .btn-view svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2; }

  /* PROJECT GRID */
  .grid-section { padding: 60px 60px 120px; }
  .grid-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px;
  }
  .grid-title {
    font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; color: rgba(244,241,236,0.3);
  }
  .grid-count { font-size: 13px; color: var(--gray); }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .project-card {
    position: relative; overflow: hidden; cursor: pointer;
    background: var(--dark2);
  }
  .project-card.wide { grid-column: span 2; }
  .project-img {
    height: 320px; position: relative; overflow: hidden;
    transition: transform 0.5s ease;
  }
  .project-card.wide .project-img { height: 400px; }
  .project-card:hover .project-img { transform: scale(1.05); }
  .project-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.3) 50%, transparent 100%);
    transition: opacity 0.3s;
  }
  .project-info {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px;
  }
  .project-cat {
    font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
  }
  .project-name {
    font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800;
    text-transform: uppercase; line-height: 1.1;
  }
  .project-meta {
    display: flex; gap: 16px; margin-top: 8px;
    font-size: 11px; color: rgba(244,241,236,0.4); letter-spacing: 1px;
  }
  .project-hover {
    position: absolute; top: 20px; right: 20px;
    width: 40px; height: 40px; background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s;
  }
  .project-card:hover .project-hover { opacity: 1; transform: scale(1); }
  .project-hover svg { width: 14px; height: 14px; stroke: var(--black); fill: none; stroke-width: 2.5; }

  /* Hidden cards for filtering */
  .project-card { transition: opacity 0.3s, transform 0.3s; }
  .project-card.hidden { display: none; }

  /* LIGHTBOX */
  .lightbox {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(13,13,13,0.97); backdrop-filter: blur(20px);
    align-items: center; justify-content: center;
  }
  .lightbox.open { display: flex; }
  .lightbox-inner {
    max-width: 900px; width: 90%; position: relative;
    animation: fadeUp 0.3s ease;
  }
  @keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
  .lightbox-img { width: 100%; max-height: 55vh; object-fit: cover; display: block; }
  .lightbox-body { background: var(--dark2); padding: 40px 48px; }
  .lightbox-cat { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
  .lightbox-title { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 900; text-transform: uppercase; }
  .lightbox-desc { font-size: 14px; color: rgba(244,241,236,0.55); line-height: 1.8; margin-top: 12px; }
  .lightbox-specs { display: flex; gap: 40px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(244,241,236,0.08); }
  .lb-spec-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }
  .lb-spec-value { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; margin-top: 4px; }
  .lightbox-close {
    position: absolute; top: -52px; right: 0;
    width: 44px; height: 44px; background: var(--dark2);
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .lightbox-close:hover { background: var(--dark); }
  .lightbox-close svg { width: 18px; height: 18px; stroke: var(--warm-white); fill: none; stroke-width: 2; }
  .lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; background: rgba(13,13,13,0.7);
    border: 1px solid rgba(244,241,236,0.1); cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: background 0.2s;
  }
  .lightbox-nav:hover { background: rgba(245,184,0,0.2); }
  .lightbox-nav svg { width: 18px; height: 18px; stroke: var(--warm-white); fill: none; stroke-width: 2; }
  .lightbox-prev { left: -56px; }
  .lightbox-next { right: -56px; }

  /* CTA BANNER */
  .cta-banner {
    margin: 0 60px 80px;
    background: var(--gold); padding: 60px 72px;
    display: flex; justify-content: space-between; align-items: center; gap: 40px;
  }
  .cta-banner-text {}
  .cta-banner-title {
    font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 900;
    text-transform: uppercase; color: var(--black); line-height: 1;
  }
  .cta-banner-sub { font-size: 15px; color: rgba(13,13,13,0.6); margin-top: 8px; }
  .btn-dark {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 13px;
    letter-spacing: 2.5px; text-transform: uppercase;
    background: var(--black); color: var(--gold); border: none;
    padding: 20px 44px; cursor: pointer; white-space: nowrap;
    text-decoration: none; transition: background 0.2s; display: inline-block;
  }
  .btn-dark:hover { background: #1a1a1a; }

  footer { background: #080808; padding: 40px 60px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(245,184,0,0.08); }
  footer img { height: 32px; filter: brightness(0) invert(1); opacity: 0.5; }
  .footer-copy { font-size: 12px; color: var(--gray); }

  /* Placeholder construction image generator via CSS */
  .img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: flex-end; justify-content: flex-start;
    padding: 16px;
    font-family: monospace; font-size: 10px; color: rgba(255,255,255,0.2);
    position: relative;
  }

  /* ── HAMBURGER ── */
  .hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; z-index:101; }
  .hamburger span { display:block; width:24px; height:2px; background:var(--warm-white); transition:all 0.3s; }
  .hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity:0; }
  .hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

  @media (max-width:768px) {
    nav { padding:16px 20px; }
    .nav-links { display:none; position:fixed; top:73px; left:0; right:0; background:rgba(13,13,13,0.98); backdrop-filter:blur(12px); flex-direction:column; gap:0; padding:8px 0; border-bottom:1px solid rgba(245,184,0,0.12); z-index:99; }
    .nav-links.open { display:flex; }
    .nav-links li { border-bottom:1px solid rgba(244,241,236,0.05); }
    .nav-links a { display:block; padding:16px 24px; font-size:16px; }
    .nav-cta { display:none; }
    .hamburger { display:flex; }
    .page-hero { padding:100px 20px 48px; }
    .page-title { font-size:clamp(40px,12vw,64px); }
    .hero-row { flex-direction:column; gap:32px; }
    .hero-counter { gap:24px; }
    .counter-num { font-size:36px; }
    .filter-bar { padding:0 20px; gap:0; }
    .filter-btn { padding:16px 12px; font-size:11px; }
    .featured { padding:48px 20px 0; }
    .featured-card { grid-template-columns:1fr; }
    .featured-img { height:280px; }
    .featured-info { padding:32px 24px; }
    .featured-specs { grid-template-columns:1fr 1fr; gap:12px; }
    .grid-section { padding:40px 20px 72px; }
    .projects-grid { grid-template-columns:1fr; }
    .project-card.wide { grid-column:span 1; }
    .project-img { height:240px !important; }
    .cta-banner { margin:0 20px 48px; padding:40px 24px; flex-direction:column; text-align:center; gap:24px; }
    .cta-banner-title { font-size:28px; }
    footer { padding:32px 20px; flex-direction:column; gap:12px; text-align:center; }
  }


  a { color: #B87400; } a:hover { color: #F5B800; }
  .nav-cta { color: #080808 !important; }
  .section-tag, .page-tag, .hero-tag { color: #F5B800 !important; }

  nav { background: rgba(13,13,13,0) !important; backdrop-filter: blur(0px);
    border-bottom: none;
    transition: padding .35s, background .35s, box-shadow .35s !important; }
  nav.scrolled { background: rgba(13,13,13,0.94) !important; border-bottom: 1px solid rgba(245,184,0,0.12); box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    padding-top: 14px !important; padding-bottom: 14px !important; }
  .nav-logo img { filter: brightness(0) invert(1) !important; }
  .nav-links a { color: rgba(244,241,236,0.7); }
  .nav-links a:hover, .nav-links a.active { color: #F5B800; }

  .cta-banner-title { color: #080808 !important; }
  .cta-banner-sub { color: rgba(23,20,15,0.6) !important; }
  .btn-dark { background: #080808 !important; color: #F5B800 !important; }
  .counter-num { color: #F5B800 !important; }
  footer .footer-copy { color: rgba(246,242,234,0.4) !important; }


  .site-footer { background: #0A0A0A; border-top: 1px solid rgba(245,184,0,0.1); padding: 64px 60px 0; }
  .sf-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(244,241,236,0.07); }
  .sf-brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 20px; }
  .sf-about { font-size: 14px; line-height: 1.8; color: rgba(244,241,236,0.45); max-width: 340px; font-weight: 300; }
  .sf-social { display: flex; gap: 10px; margin-top: 22px; }
  .sf-social a { width: 38px; height: 38px; border: 1px solid rgba(244,241,236,0.14); display: flex; align-items: center; justify-content: center; transition: all .2s; }
  .sf-social a:hover { border-color: #F5B800; background: rgba(245,184,0,0.08); }
  .sf-social svg { width: 16px; height: 16px; stroke: rgba(244,241,236,0.6); fill: none; stroke-width: 1.6; }
  .sf-social a:hover svg { stroke: #F5B800; }
  .sf-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #F5B800; margin-bottom: 20px; }
  .sf-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .sf-links a { font-size: 14px; color: rgba(244,241,236,0.55); text-decoration: none; transition: color .2s; }
  .sf-links a:hover { color: #F5B800; }
  .sf-contact-item { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: rgba(244,241,236,0.55); margin-bottom: 15px; }
  .sf-contact-item svg { width: 15px; height: 15px; stroke: #F5B800; fill: none; stroke-width: 1.6; flex-shrink: 0; margin-top: 3px; }
  .sf-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; flex-wrap: wrap; gap: 16px; }
  .sf-copy { font-size: 12px; color: rgba(244,241,236,0.3); }
  .sf-bottom-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
  .sf-legal { font-size: 12px; color: rgba(244,241,236,0.3); text-decoration: none; }
  .sf-legal:hover { color: #F5B800; }
  .sf-admin { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(244,241,236,0.4); text-decoration: none; border: 1px solid rgba(244,241,236,0.15); padding: 8px 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .2s; }
  .sf-admin:hover { border-color: #F5B800; color: #F5B800; }
  .sf-admin svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.8; }
  @media (max-width: 900px) { .site-footer { padding: 48px 20px 0; } .sf-top { grid-template-columns: 1fr 1fr; gap: 32px; } .sf-brand { grid-column: 1 / -1; } .sf-bottom { flex-direction: column; text-align: center; } }