/* ===========================
   Time2Build — NewVersion CSS
   =========================== */

:root {
  --black: #0f0f0f;
  --dark: #1a1a1a;
  --gray: #6b6b6b;
  --light-gray: #f4f4f2;
  --white: #ffffff;
  --gold: #B8960C;
  --gold-light: #d4ab10;
  --font-main: 'Inter', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}

.section-title span { color: var(--gold); }

.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  transition: color var(--transition);
}

#navbar.scrolled .nav-logo-text { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }

#navbar.scrolled .nav-links a { color: var(--gray); }
#navbar.scrolled .nav-links a:hover { color: var(--dark); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px !important;
  font-weight: 700 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
#navbar.scrolled .burger span { background: var(--dark); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Images/time2build.pt/DZecWDqjIlZ/DZecWDqjIlZ_1.jpg');
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.30) 60%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}

.hero-title {
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 1.0s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s ease forwards;
}

.btn-primary-t2b {
  background: var(--gold);
  color: var(--white);
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-primary-t2b:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline-t2b {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: border-color var(--transition), background var(--transition);
  display: inline-block;
}
.btn-outline-t2b:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 2s ease forwards;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { height: 50px; opacity: 1; }
  100% { height: 10px; opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── STATS BAR ── */
#stats {
  background: var(--dark);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
  margin: 0 auto;
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.stat-item {
  background: var(--dark);
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-item:last-child::after { display: none; }

.stat-number {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span { color: var(--gold); }

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── ABOUT ── */
#about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  border-radius: 4px;
}

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: 4px;
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-content .section-subtitle { max-width: 100%; margin-bottom: 32px; }

.about-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 6px;
  background: var(--light-gray);
  transition: transform var(--transition);
}
.about-point:hover { transform: translateX(6px); }

.about-point-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.about-point-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.about-point-text p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── SERVICES ── */
#services {
  padding: 120px 0;
  background: var(--light-gray);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body {
  padding: 28px 24px;
}

.service-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.service-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

/* ── PORTFOLIO ── */
#portfolio {
  padding: 120px 0;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 48px;
}

.wip-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.wip-dots span {
  animation: wip-blink 1.4s infinite;
  opacity: 0;
}
.wip-dots span:nth-child(2) { animation-delay: 0.2s; }
.wip-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes wip-blink {
  0%, 80%, 100% { opacity: 0; }
  40% { opacity: 1; }
}
.portfolio-header .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid rgba(0,0,0,0.12);
  background: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray);
  transition: all var(--transition);
  font-family: var(--font-main);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.filter-btn.active { border-color: var(--gold); background: var(--gold); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: opacity var(--transition), transform var(--transition);
}
.portfolio-item.hidden { display: none; }

.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.portfolio-overlay-content span {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portfolio-zoom {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--transition), transform var(--transition);
}
.portfolio-item:hover .portfolio-zoom { opacity: 1; transform: scale(1); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  gap: 20px;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: -50px; right: 0;
  width: 40px; height: 40px;
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
}
.lightbox-close:hover { border-color: var(--white); }

.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

.lightbox-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  letter-spacing: 1px;
}

/* ── PROJECT GRID ── */
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 12px;
}

.proj-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: var(--dark);
}
.proj-card--large {
  grid-column: span 2;
  grid-row: span 2;
}
.proj-card--video .proj-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}
.proj-card--video:hover .proj-play { opacity: 1; transform: scale(1.15); }

.proj-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: brightness(0.88);
}
.proj-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.7);
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  gap: 6px;
  opacity: 0;
  transition: opacity var(--transition);
}
.proj-card:hover .proj-overlay { opacity: 1; }

.proj-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.proj-overlay h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.proj-count {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ── VIDEO MODAL ── */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.video-modal.open { display: flex; }

.video-modal-inner {
  position: relative;
  width: min(90vw, 960px);
}
.video-modal-inner .lightbox-close {
  top: -50px;
  right: 0;
}
#video-player {
  width: 100%;
  border-radius: 6px;
  outline: none;
}

/* ── PARTNERS ── */
#partners {
  padding: 80px 0;
  background: var(--light-gray);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.partners-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 40px;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}

.partner-logo {
  height: 50px;
  width: auto;
  filter: grayscale(100%) opacity(50%);
  transition: filter var(--transition);
}
.partner-logo:hover { filter: grayscale(0%) opacity(100%); }

/* ── CONTACT ── */
#contact {
  padding: 120px 0;
}

.contact-grid {
  display: block;
}

.contact-info h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--light-gray);
  border-radius: 10px;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}
.contact-detail-text span {
  font-size: 14px;
  color: var(--gray);
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  padding: 48px 40px;
  border-radius: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 2px solid transparent;
  background: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--dark);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group.full { grid-column: 1 / -1; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: #1a7a40;
  font-weight: 600;
  font-size: 15px;
}

/* ── FOOTER ── */
#footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand img { height: 44px; margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: border-color var(--transition), color var(--transition);
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-bottom a { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .nav-links { display: none; }
  .burger { display: flex; }

  .hero-title { letter-spacing: -1px; }
  #hero { height: 100svh; }
  .hero-content { padding-bottom: 40px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 340px; }

  .services-header { flex-direction: column; align-items: flex-start; }

  .project-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .proj-card--large { grid-column: span 2; }

  .contact-details { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

@media (max-width: 480px) {
  .contact-details { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .proj-card--large { grid-column: span 1; grid-row: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary-t2b, .btn-outline-t2b { text-align: center; }
}
