:root {
  --primary: #FF8C2B; /* Logo Orange */
  --secondary: #7A7A7A; /* Logo Grey */
  --dark: #2d2d2d;
  --light: #f9f9f9;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
  line-height: 1.6; 
  color: var(--dark); 
  background-color: var(--white); 
}

/* Header & Nav */
.header { 
  background: var(--white); 
  border-bottom: 3px solid var(--primary);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .wrap { 
  max-width: 1100px; 
  margin: 0 auto; 
  padding: 0 20px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
}

.logo img { height: 60px; width: auto; }

.nav a { 
  color: var(--dark); 
  text-decoration: none; 
  font-weight: 600; 
  margin-left: 25px;
  font-size: 15px;
  transition: color 0.3s;
}

.nav a:hover, .nav a.active { color: var(--primary); }

/* Hero Section */
.hero { 
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), 
              url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?q=80&w=2070&auto=format&fit=crop'); 
  background-size: cover;
  background-position: center;
  color: var(--white); 
  padding: 100px 20px;
  text-align: center;
}

.hero h1 { font-size: 3rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; opacity: 0.9; }

/* Main Content */
.main { max-width: 1100px; margin: 0 auto; padding: 60px 20px; }

h2 { 
  font-size: 2rem; 
  margin-bottom: 30px; 
  position: relative; 
  padding-bottom: 10px; 
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary);
}

.section { margin-bottom: 60px; }

/* Cards & Grid */
.grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 30px; 
  margin-top: 40px;
}

.card { 
  background: var(--light); 
  padding: 30px; 
  border-radius: var(--radius); 
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--secondary);
}

.card:hover { 
  transform: translateY(-5px); 
  box-shadow: var(--shadow);
  border-top-color: var(--primary);
}

.card h3 { color: var(--primary); margin-bottom: 15px; }

/* Call to Action Bar */
.cta-bar {
  background: var(--dark);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.phone-link { 
  font-size: 2rem; 
  font-weight: 800; 
  color: var(--primary); 
  text-decoration: none; 
}

/* Footer */
.footer { background: var(--dark); color: #ccc; padding: 40px 20px; text-align: center; }
.footer .small { font-size: 14px; }

.project-card {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.main-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid var(--primary);
}

.project-info {
  padding: 20px;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.gallery-thumbs img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.gallery-thumbs img:hover {
  border-color: var(--primary);
  transform: scale(1.1);
}

.testimonial i {
  font-size: 0.9rem;
  color: var(--secondary);
}

:root {
  --primary: #FF8C2B; /* Logo Orange */
  --dark: #2d2d2d;
  --bg: #ffffff;
}

body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; margin: 0; color: #333; line-height: 1.5; }

/* Header & Nav */
.header { border-bottom: 4px solid var(--primary); padding: 20px 0; background: #fff; }
.header .wrap { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.logo img { height: 60px; }
.nav a { text-decoration: none; color: #444; font-weight: bold; margin-left: 20px; font-size: 14px; text-transform: uppercase; }
.nav a.active { color: var(--primary); }

/* Grid Layout (The "Old Look") */
.main { max-width: 1000px; margin: 40px auto; padding: 0 20px; }
h2 { border-bottom: 1px solid #eee; padding-bottom: 10px; margin-bottom: 25px; font-weight: 300; font-size: 28px; }

.project-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.project-item { border: 1px solid #eee; padding: 10px; background: #fff; }
.project-item img { width: 100%; height: 200px; object-fit: cover; cursor: pointer; display: block; }
.project-item h3 { font-size: 16px; margin: 15px 0 5px 0; color: var(--primary); }
.project-item p { font-size: 13px; color: #666; margin: 0; }

/* Lightbox Minimal Styling */
.lum-lightbox { z-index: 10000; background: rgba(0,0,0,0.9); }

.footer { background: var(--dark); color: #fff; padding: 40px 20px; text-align: center; margin-top: 60px; font-size: 13px; }

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .header .wrap { flex-direction: column; gap: 15px; }
  .nav a { margin: 0 10px; }
}


/* Hero */
.hero{
  position: relative;
  background: url('Queens Midtown tunnel.jpg') center/cover no-repeat;
  min-height: 700px;
  display: flex;
  align-items: center;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,0.7);
}
.hero .wrap{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.hero-content{
  max-width: 650px;
  color: var(--white);
}
.hero h1{
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero p{
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 24px;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn{
  display:inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration:none;
  box-shadow: var(--shadow);
}
.btn.secondary{
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
}

/* Projects showcase */
.project-showcase{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.project-showcase.reverse{
  grid-template-columns: 1.1fr 1fr;
}
.project-badge{
  display:inline-block;
  padding: 8px 12px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  background: var(--white);
}
.project-title{
  font-size: 38px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.project-underline{
  width: 54px;
  height: 4px;
  background: var(--primary);
  margin: 10px 0 18px;
}
.project-p{
  color: #4a4a4a;
  max-width: 520px;
}
.project-bullets{
  margin-top: 14px;
  list-style: none;
}
.project-bullets li{
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
  color: #4a4a4a;
}
.project-bullets li::before{
  content: "▶";
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
}
.gallery-thumbs-row{
  display:flex;
  gap: 14px;
  margin-top: 16px;
}
.gallery-thumbs-row img{
  width: 86px;
  height: 66px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.framed-media{
  position: relative;
  border-radius: 12px;
}
.framed-media img{
  width: 100%;
  height: auto;
  border-radius: 12px;
  display:block;
  box-shadow: var(--shadow);
}
.framed-media::after{
  content:"";
  position: absolute;
  inset: 0;
  border: 3px solid var(--primary);
  border-radius: 12px;
  transform: translate(18px, 18px);
  z-index: -1;
}

/* Mobile menu */
.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  padding: 10px;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

.mobile-nav{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 86vw;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: translateX(105%);
  transition: transform 0.25s ease;
  z-index: 2000;
  padding: 18px;
}

.mobile-nav.is-open{
  transform: translateX(0);
}

.mobile-nav-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 12px;
}

.mobile-nav-title{
  font-weight: 800;
  font-size: 16px;
  color: var(--dark);
}

.mobile-nav-close{
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.mobile-nav-links{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-links a{
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  padding: 12px 12px;
  border-radius: 10px;
}

.mobile-nav-links a.active{
  color: var(--primary);
  background: rgba(255,140,43,0.10);
}

.mobile-nav-links a:hover{
  background: rgba(0,0,0,0.05);
}

.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1500;
}

.nav-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px){
  .desktop-nav{
    display: none;
  }
  .nav-toggle{
    display: inline-flex;
  }
}

/* Responsive */
@media (max-width: 900px){
  .hero h1{ font-size: 36px; }
  .project-showcase, .project-showcase.reverse{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .project-title{ font-size: 30px; }
}

/* Hamburger button */
.nav-toggle{
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;

  padding: 0;
  align-items: center;
  justify-content: center;

  /* Important: prevents "..." text from showing if it exists */
  font-size: 0;
  line-height: 0;
}

.nav-toggle span{
  display: block;
  width: 22px;
  height: 3px;
  background: var(--dark);
  border-radius: 999px;
  margin: -1px;
}

/* Show hamburger on mobile */
@media (max-width: 900px){
  .nav-toggle{
    display: flex;
    flex-direction: column;
  }
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 18px;
}

.lightbox.is-open{
  display: flex;
}

.lightbox-img{
  max-width: min(1000px, 92vw);
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.lightbox-close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  display: none;
}

.lightbox-prev{ left: 16px; }
.lightbox-next{ right: 16px; }

@media (max-width: 600px){
  .lightbox-prev,
  .lightbox-next{
    width: 46px;
    height: 46px;
    font-size: 28px;
  }
}
