

:root {
  --black:        #0a0a0a;
  --dark:         #111111;
  --dark2:        #1a1a1a;
  --dark3:        #222222;
  --gray:         #2e2e2e;
  --gray2:        #3d3d3d;
  --mid:          #666666;
  --light:        #b0b0b0;
  --white:        #f5f3ef;
  --orange:       #e8600a;
  --orange2:      #ff7a1a;
  --orange-glow:  rgba(232,96,10,0.15);

  --font-display:    'Bebas Neue', sans-serif;
  --font-condensed:  'Barlow Condensed', sans-serif;
  --font-body:       'Barlow', sans-serif;

  --nav-h: 68px;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  width: 100%;
}

img, video, iframe {
  max-width: 100%;
  display: block;
}

a { color: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar         { width: 4px; }
::-webkit-scrollbar-track   { background: var(--dark); }
::-webkit-scrollbar-thumb   { background: var(--orange); border-radius: 2px; }
::selection                 { background: var(--orange); color: var(--black); }

/* ── NOISE OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ── UTILS ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section { padding: 100px 0; }

.tag {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 5px 14px;
  margin-bottom: 20px;
}

.h-display {
  font-family: var(--font-display);
  letter-spacing: 1px;
  line-height: 0.95;
}

.h-section {
  font-family: var(--font-condensed);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}
.btn:hover::before { transform: translateX(0); }
.btn span, .btn svg { position: relative; z-index: 1; transition: color 0.3s ease; }

.btn-primary  { background: var(--orange); color: var(--black); border-color: var(--orange); }
.btn-primary:hover span, .btn-primary:hover svg { color: var(--orange); }

.btn-outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline::before { background: var(--white); }
.btn-outline:hover span, .btn-outline:hover svg { color: var(--black); }

.btn-wa       { background: #25D366; color: var(--black); border-color: #25D366; }
.btn-wa::before { background: #1db954; }
.btn-wa:hover span, .btn-wa:hover svg { color: var(--white); }

.btn-dark     { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark::before { background: var(--dark2); }
.btn-dark:hover span { color: var(--white); }

.btn-white    { background: transparent; color: var(--black); border-color: var(--black); }
.btn-white::before { background: var(--black); }
.btn-white:hover span { color: var(--white); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,96,10,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 16px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--white);
}
.nav-logo-main span { color: var(--orange); }
.nav-logo-sub {
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--mid);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  padding: 8px 12px;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--black);
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--orange2); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark);
  border-top: 2px solid var(--orange);
  padding: 20px 24px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu a:last-child { border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

@supports (-webkit-touch-callout: none) {
  #hero { min-height: -webkit-fill-available; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.95) 40%, rgba(10,10,10,0.6) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,96,10,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,96,10,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-eyebrow-line { width: 40px; height: 2px; background: var(--orange); flex-shrink: 0; }
.hero-eyebrow-text {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.4s both;
  word-break: break-word;
}
.hero-title .highlight { color: var(--orange); }

.hero-subtitle {
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 300;
  color: var(--light);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
  animation: fadeUp 0.8s ease 0.8s both;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 1s both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--orange);
  padding-left: 14px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: var(--white);
}
.hero-stat-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.5s both;
}
.hero-scroll-text {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  background: var(--orange);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 20px;
}
.marquee-dot { color: rgba(0,0,0,0.4); margin: 0 6px; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--dark); }

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.services-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--light);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--dark2);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--dark3); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: rgba(232,96,10,0.1);
  margin-bottom: 16px;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(232,96,10,0.2); }

.service-icon {
  width: 44px; height: 44px;
  background: var(--orange-glow);
  border: 1px solid rgba(232,96,10,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--orange); }
.service-card:hover .service-icon svg { stroke: var(--black); }
.service-icon svg { stroke: var(--orange); transition: stroke 0.3s; }

.service-title {
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--white);
}
.service-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow);
  padding: 4px 10px;
  border: 1px solid rgba(232,96,10,0.2);
}

.service-card.featured { background: var(--orange); }
.service-card.featured .service-num { color: rgba(0,0,0,0.15); }
.service-card.featured .service-title { color: var(--black); }
.service-card.featured .service-text { color: rgba(0,0,0,0.7); }
.service-card.featured .service-icon { background: rgba(0,0,0,0.15); border-color: rgba(0,0,0,0.2); }
.service-card.featured .service-icon svg { stroke: var(--black); }
.service-card.featured .service-tag { color: var(--black); background: rgba(0,0,0,0.1); border-color: rgba(0,0,0,0.2); }
.service-card.featured::before { background: var(--black); }
.service-card.featured:hover { background: #d45508; transform: translateY(-4px); }

/* ============================================================
   WHY US
   ============================================================ */
#why { background: var(--black); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img-wrap { position: relative; display: inline-block; width: 100%; }
.why-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--dark2), var(--gray));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.why-img-placeholder img {
  width: 80%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}

.why-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 130px;
  height: 130px;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.why-badge-num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--black);
}
.why-badge-text {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
}

.why-items { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.why-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray);
  transition: all 0.3s;
}
.why-item:hover { padding-left: 8px; }
.why-item-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--orange-glow);
  border: 1px solid rgba(232,96,10,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.why-item-title {
  font-family: var(--font-condensed);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: var(--white);
}
.why-item-text { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.6; }

/* ============================================================
   PROJECTS (INDEX)
   ============================================================ */
#projects { background: var(--dark); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.project-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.project-card.large { grid-column: span 2; aspect-ratio: auto; }

.project-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover .project-img-placeholder { transform: scale(1.06); }
.project-card:hover img.project-main-img { transform: scale(1.06); }

.project-arrow {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}
.project-card:hover .project-arrow { opacity: 1; transform: translateY(0); }

.project-cat {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.project-title {
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 5px;
}
.project-loc { font-size: 13px; font-weight: 300; color: var(--light); }
.project-view-hint {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* Main image inside project card */
img.project-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-portrait { position: relative; }
.about-portrait-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border: 2px solid var(--gray);
  position: relative;
  overflow: hidden;
}
.about-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-portrait-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(232,96,10,0.2);
}
.about-portrait-accent {
  position: absolute;
  top: -10px; left: -10px; right: 20px; bottom: 20px;
  border: 2px solid var(--orange);
  z-index: -1;
}
.about-label {
  position: absolute;
  bottom: 24px; right: -16px;
  background: var(--orange);
  padding: 12px 20px;
}
.about-label-name {
  font-family: var(--font-condensed);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
}
.about-label-role {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

.about-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.about-val {
  padding: 18px;
  border: 1px solid var(--gray);
  background: var(--dark2);
  transition: border-color 0.3s;
}
.about-val:hover { border-color: var(--orange); }
.about-val-title {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 6px;
}
.about-val-text { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.5; }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  background: var(--orange);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: 'PRO SOL';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 160px;
  color: rgba(0,0,0,0.08);
  white-space: nowrap;
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  color: var(--black);
}
.cta-sub {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 500;
  color: rgba(0,0,0,0.6);
  margin-top: 8px;
}
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray);
}
.contact-item-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--orange-glow);
  border: 1px solid rgba(232,96,10,0.3);
  display: flex; align-items: center; justify-content: center;
}
.contact-item-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.contact-item-value { font-size: 15px; font-weight: 500; color: var(--white); }
.contact-item-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-item-value a:hover { color: var(--orange); }

.contact-map {
  margin-top: 28px;
  background: var(--dark2);
  border: 1px solid var(--gray);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.contact-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(100%) invert(90%) contrast(0.8); }
.contact-map-placeholder {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--dark2);
  border: 1px solid var(--gray2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px; /* 16px prevents iOS zoom */
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus, .form-textarea:focus { border-color: var(--orange); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray2); }
.form-textarea { height: 130px; }
.form-submit { width: 100%; border: none; cursor: pointer; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  border-top: 1px solid var(--gray);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-name span { color: var(--orange); }
.footer-brand-tag {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 14px;
}
.footer-brand-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--dark2);
  border: 1px solid var(--gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid);
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--black); }

.footer-bottom {
  border-top: 1px solid var(--gray);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 12px; font-weight: 300; color: var(--mid); }
.footer-copy a { color: var(--orange); text-decoration: none; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-float-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: all 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.6); }
.wa-float-label {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 12px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.wa-float:hover .wa-float-label { opacity: 1; transform: translateX(0); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes marquee  { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes scrollLine { 0%,100%{opacity:0;transform:scaleY(0)} 50%{opacity:1;transform:scaleY(1)} }
@keyframes waPulse  { 0%,100%{box-shadow:0 4px 24px rgba(37,211,102,0.4)} 50%{box-shadow:0 4px 40px rgba(37,211,102,0.7)} }

/* ============================================================
   PROJECT DETAIL PAGE — projet.html
   ============================================================ */

/* Hero */
.project-detail-hero {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  overflow: hidden;
}
.project-detail-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.3) 100%);
  z-index: 1;
}
.project-detail-bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.1s ease;
}
.project-detail-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
}

.project-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease 0.2s both;
  flex-wrap: wrap;
}
.project-breadcrumb a {
  font-family: var(--font-condensed);
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
  transition: color 0.2s;
}
.project-breadcrumb a:hover { color: var(--orange); }
.project-breadcrumb-sep { color: var(--gray2); font-size: 12px; }
.project-breadcrumb-current {
  font-family: var(--font-condensed);
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange);
}

.project-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.3s both;
}
.project-detail-cat {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--black); background: var(--orange);
  padding: 5px 14px;
}
.project-detail-year {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--gray2);
  padding: 5px 14px;
}

.project-detail-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 90px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 18px;
  animation: fadeUp 0.6s ease 0.4s both;
  word-break: break-word;
}
.project-detail-subtitle {
  font-size: 17px; font-weight: 300;
  color: var(--light); max-width: 600px;
  line-height: 1.6;
  animation: fadeUp 0.6s ease 0.5s both;
}

/* Stats bar */
.project-stats-bar {
  display: flex;
  gap: 0;
  margin-top: 44px;
  border: 1px solid var(--gray);
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeUp 0.6s ease 0.6s both;
  flex-wrap: wrap;
}
.project-stat-item {
  flex: 1;
  min-width: 140px;
  padding: 18px 24px;
  border-right: 1px solid var(--gray);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.project-stat-item:last-child { border-right: none; }
.project-stat-label {
  font-family: var(--font-condensed);
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--mid);
}
.project-stat-value {
  font-family: var(--font-condensed);
  font-size: 20px; font-weight: 800;
  color: var(--white); letter-spacing: 1px;
}
.project-stat-value span { color: var(--orange); }

/* Body */
.project-body { padding: 80px 0; background: var(--dark); }
.project-body-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

/* Description */
.project-description h2 {
  font-family: var(--font-condensed);
  font-size: 30px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); margin-bottom: 18px;
}
.project-description h2 span { color: var(--orange); }
.project-description p { font-size: 15px; font-weight: 300; color: var(--light); line-height: 1.8; margin-bottom: 14px; }

/* Highlights */
.project-highlights {
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.highlight-item {
  background: var(--dark2);
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background 0.3s;
}
.highlight-item:hover { background: var(--dark3); }
.highlight-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: var(--orange-glow);
  border: 1px solid rgba(232,96,10,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.highlight-title {
  font-family: var(--font-condensed);
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); margin-bottom: 4px;
}
.highlight-text { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.5; }

/* Gallery */
.project-gallery { margin-top: 52px; }
.project-gallery h2 {
  font-family: var(--font-condensed);
  font-size: 26px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); margin-bottom: 20px;
}
.project-gallery h2 span { color: var(--orange); }

.gallery-main {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark2);
  overflow: hidden;
  position: relative;
  margin-bottom: 4px;
  cursor: zoom-in;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.gallery-main:hover img { transform: scale(1.03); }
.gallery-main-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  font-family: var(--font-display); font-size: 70px;
  color: rgba(232,96,10,0.25);
  min-height: 300px;
}
.gallery-main-placeholder p {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--mid);
}

/* Thumbs */
.gallery-thumbs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) var(--dark2);
}
.gallery-thumbs::-webkit-scrollbar { height: 3px; }
.gallery-thumbs::-webkit-scrollbar-track { background: var(--dark2); }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

.gallery-thumb {
  min-width: 96px; width: 96px; height: 70px;
  flex-shrink: 0;
  scroll-snap-align: start;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.55;
}
.gallery-thumb.active { border-color: var(--orange); opacity: 1; }
.gallery-thumb:hover  { opacity: 1; }
.gallery-thumb img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s; }
.gallery-thumb:hover img { transform:scale(1.08); }
.gallery-thumb-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:26px;
}

/* Gallery counter */
.gallery-counter {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--gray2);
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  padding: 4px 10px;
  pointer-events: none;
}

/* Video */
.project-video { margin-top: 52px; }
.project-video h2 {
  font-family: var(--font-condensed);
  font-size: 26px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); margin-bottom: 20px;
}
.project-video h2 span { color: var(--orange); }
.video-wrapper {
  position: relative; width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark2); overflow: hidden;
}
.video-wrapper iframe,
.video-wrapper video {
  width: 100%; height: 100%;
  display: block; border: none;
}

/* Sidebar */
.project-sidebar { position: sticky; top: 90px; }

.sidebar-card {
  background: var(--dark2);
  border: 1px solid var(--gray);
  padding: 24px;
  margin-bottom: 16px;
}
.sidebar-card-title {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
  border-bottom: 1px solid var(--gray); padding-bottom: 10px;
}
.sidebar-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray);
  gap: 10px;
}
.sidebar-info-row:last-child { border-bottom: none; }
.sidebar-info-label {
  font-family: var(--font-condensed);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--mid);
  flex-shrink: 0;
}
.sidebar-info-value {
  font-size: 13px; font-weight: 500;
  color: var(--white);
  text-align: right;
  word-break: break-word;
}

.sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sidebar-tag {
  font-family: var(--font-condensed);
  font-size: 10px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid rgba(232,96,10,0.2);
  padding: 4px 10px;
}

/* Prev/Next */
.project-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  border-top: 1px solid var(--gray);
  padding-top: 36px;
}
.project-nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px;
  background: var(--dark2);
  text-decoration: none;
  border: 1px solid var(--gray);
  transition: all 0.3s;
  cursor: pointer;
}
.project-nav-item:hover { background: var(--dark3); border-color: var(--orange); }
.project-nav-dir {
  font-family: var(--font-condensed);
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--mid);
  display: flex; align-items: center; gap: 8px;
}
.project-nav-title {
  font-family: var(--font-condensed);
  font-size: 17px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); transition: color 0.2s;
}
.project-nav-item:hover .project-nav-title { color: var(--orange); }
.project-nav-item.next { text-align: right; }
.project-nav-item.next .project-nav-dir { justify-content: flex-end; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; display: block; }
.lightbox-close {
  position: absolute;
  top: -42px; right: 0;
  width: 34px; height: 34px;
  background: var(--orange); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 16px;
}

/* ============================================================
   RESPONSIVE — TABLET 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .projects-grid     { grid-template-columns: repeat(2, 1fr); }
  .project-card.large { grid-column: span 2; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 28px; }
  .project-body-grid { grid-template-columns: 1fr; }
  .project-sidebar   { position: static; }

  .project-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .project-sidebar .sidebar-card { margin-bottom: 0; }
  .project-sidebar .sidebar-card:nth-child(3) { grid-column: span 2; }
}

/* ============================================================
   RESPONSIVE — MOBILE 768px
   ============================================================ */
@media (max-width: 768px) {

  /* Base */
  .container  { padding: 0 16px; }
  .section    { padding: 60px 0; }

  /* Navbar */
  :root { --nav-h: 60px; }
  .nav-logo-main { font-size: 19px; letter-spacing: 1px; }
  .nav-logo-sub  { font-size: 8px; letter-spacing: 2px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu a { font-size: 20px; }

  /* Hero */
  #hero { align-items: flex-start; }
  .hero-content { padding-top: 72px; padding-bottom: 60px; }
  .hero-title   { font-size: clamp(42px, 12vw, 68px); }
  .hero-subtitle { font-size: 15px; max-width: 100%; }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
  }
  .hero-btns .btn { width: 100%; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .hero-stat-num   { font-size: 28px; }
  .hero-stat-label { font-size: 10px; letter-spacing: 1px; }
  .hero-scroll     { display: none; }

  /* Marquee */
  .marquee-item  { font-size: 11px; padding: 0 14px; letter-spacing: 2px; }
  .marquee-strip { padding: 10px 0; }

  /* Services */
  .services-intro { grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
  .services-desc  { font-size: 15px; }
  .services-grid  { grid-template-columns: 1fr; }
  .service-card   { padding: 28px 22px; }
  .service-num    { font-size: 44px; margin-bottom: 12px; }
  .service-title  { font-size: 19px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .why-img-wrap { max-width: 320px; margin: 0 auto; }
  .why-badge { width: 100px; height: 100px; bottom: -16px; right: -8px; }
  .why-badge-num { font-size: 32px; }
  .why-badge-text { font-size: 9px; }
  .why-item { gap: 14px; padding: 18px 0; }
  .why-item-icon { width: 36px; height: 36px; min-width: 36px; }
  .why-item-title { font-size: 15px; }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.large { grid-column: span 1; }
  .project-card { aspect-ratio: 16/10; }
  /* Always visible overlay on mobile (no hover) */
  .project-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, transparent 65%);
  }
  .project-arrow { opacity: 1; transform: translateY(0); }
  .project-view-hint { display: none; }
  .project-title { font-size: 16px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-portrait-frame { aspect-ratio: 3/2; }
  .about-label { right: -8px; bottom: 16px; padding: 10px 16px; }
  .about-label-name { font-size: 15px; }
  .about-vals { grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
  .about-val  { padding: 16px; }
  .about-text { font-size: 14px; }

  /* CTA */
  #cta-banner { padding: 52px 0; }
  #cta-banner::before { font-size: 90px; }
  .cta-inner  { flex-direction: column; text-align: center; gap: 24px; }
  .cta-text   { font-size: clamp(26px, 8vw, 38px); }
  .cta-sub    { font-size: 14px; }
  .cta-btns   { flex-direction: column; width: 100%; gap: 10px; }
  .cta-btns .btn { width: 100%; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-item { gap: 14px; padding: 18px 0; }
  .contact-item-icon { width: 40px; height: 40px; min-width: 40px; }
  .contact-item-value { font-size: 14px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-map { height: 170px; margin-top: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* WA float */
  .wa-float     { bottom: 16px; right: 16px; }
  .wa-float-btn { width: 50px; height: 50px; }
  .wa-float-label { display: none; }

  /* ── PROJECT DETAIL ── */
  .project-detail-hero { min-height: 56vh; padding-bottom: 24px; }
  .project-detail-hero .container { padding-top: 72px; }

  .project-breadcrumb { margin-bottom: 14px; gap: 6px; }
  .project-breadcrumb a,
  .project-breadcrumb-sep,
  .project-breadcrumb-current { font-size: 10px; letter-spacing: 1px; }

  .project-detail-cat,
  .project-detail-year { font-size: 10px; letter-spacing: 2px; padding: 4px 10px; }

  .project-detail-title { font-size: clamp(30px, 9vw, 50px); margin-bottom: 12px; }
  .project-detail-subtitle { font-size: 14px; }

  /* Stats bar: row layout (label left, value right) */
  .project-stats-bar { flex-direction: column; margin-top: 22px; }
  .project-stat-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-right: none !important;
    border-bottom: 1px solid var(--gray);
    min-width: unset;
    flex: unset;
    width: 100%;
  }
  .project-stat-item:last-child { border-bottom: none; }
  .project-stat-label { font-size: 10px; letter-spacing: 2px; }
  .project-stat-value { font-size: 15px; text-align: right; }

  /* Body */
  .project-body { padding: 44px 0; }
  .project-body-grid { grid-template-columns: 1fr; gap: 32px; }

  .project-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .project-sidebar .sidebar-card { margin-bottom: 0; }
  .sidebar-card { padding: 18px; }
  .sidebar-card-title { font-size: 10px; letter-spacing: 2px; margin-bottom: 12px; }
  .sidebar-info-label { font-size: 10px; }
  .sidebar-info-value { font-size: 12px; }

  /* Orange CTA Card */
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] > div:first-child {
    font-size: 10px !important;
    letter-spacing: 2.5px !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] p {
    font-size: 13px !important;
    margin-bottom: 16px !important;
    line-height: 1.5 !important;
    text-align: center !important;
  }
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] .btn {
    font-size: 11px;
    padding: 12px 14px;
    width: 100% !important;
    margin-bottom: 8px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center !important;
  }
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] .btn span {
    text-align: center !important;
  }
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] .btn svg {
    width: 14px;
    height: 14px;
  }

  /* Description */
  .project-description h2 { font-size: 21px; margin-bottom: 14px; }
  .project-description p  { font-size: 14px; }

  /* Highlights */
  .project-highlights { grid-template-columns: 1fr; margin: 24px 0; gap: 2px; }
  .highlight-item  { padding: 16px; gap: 12px; }
  .highlight-icon  { width: 32px; height: 32px; min-width: 32px; font-size: 14px; }
  .highlight-title { font-size: 13px; }
  .highlight-text  { font-size: 12px; }

  /* Gallery */
  .project-gallery { margin-top: 36px; }
  .project-gallery h2 { font-size: 20px; }
  .gallery-main { aspect-ratio: 4/3; cursor: default; }
  .gallery-main img { cursor: zoom-in; }
  .gallery-counter { font-size: 10px; padding: 3px 8px; bottom: 8px; right: 8px; }
  .gallery-thumb { min-width: 72px; width: 72px; height: 54px; }

  /* Video */
  .project-video { margin-top: 36px; }
  .project-video h2 { font-size: 20px; margin-bottom: 14px; }

  /* Prev/Next */
  .project-nav { grid-template-columns: 1fr; margin-top: 36px; padding-top: 24px; gap: 3px; }
  .project-nav-item { padding: 16px; }
  .project-nav-item.next { text-align: left; }
  .project-nav-item.next .project-nav-dir { justify-content: flex-start; }
  .project-nav-dir  { font-size: 10px; letter-spacing: 2px; }
  .project-nav-title { font-size: 15px; }

  /* Lightbox */
  .lightbox-inner { max-width: 100vw; padding: 0 6px; }
  .lightbox-img   { max-width: 98vw; max-height: 80vh; }
  .lightbox-close { top: -38px; width: 30px; height: 30px; font-size: 13px; }
}

/* ============================================================
   RESPONSIVE — SMALL PHONE 480px
   ============================================================ */
/* ============================================================
   RESPONSIVE — 734px
   ============================================================ */
@media (max-width: 734px) {
  /* Orange CTA Card - Center all text */
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] {
    text-align: center !important;
  }
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] > div:first-child {
    text-align: center !important;
  }
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] p {
    text-align: center !important;
  }
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] .btn {
    justify-content: center !important;
    text-align: center !important;
  }
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] .btn span {
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .hero-title           { font-size: clamp(36px, 11vw, 50px); }
  .project-detail-title { font-size: clamp(28px, 9vw, 38px); }

  /* Project Sidebar - Orange CTA Card */
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] {
    padding: 16px;
  }
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] > div:first-child {
    font-size: 10px !important;
    margin-bottom: 10px !important;
    text-align: center !important;
  }
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] p {
    font-size: 12px !important;
    margin-bottom: 14px !important;
    line-height: 1.5 !important;
    text-align: center !important;
  }
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] .btn {
    padding: 12px 16px;
    font-size: 11px;
    width: 100% !important;
    margin-bottom: 8px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center !important;
  }
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] .btn span {
    text-align: center !important;
  }
  .project-sidebar .sidebar-card[style*="background:var(--orange)"] .btn svg {
    width: 14px;
    height: 14px;
  }

  .btn {
    font-size: 12px;
    padding: 13px 18px;
    letter-spacing: 1.5px;
  }

  .tag { font-size: 10px; letter-spacing: 2px; padding: 4px 10px; }

  .gallery-thumb { min-width: 64px; width: 64px; height: 48px; }

  .about-portrait-frame { aspect-ratio: 4/3; }
  .about-portrait-accent { display: none; }
  .about-label { right: 0; bottom: 12px; }

  .footer-social { flex-wrap: wrap; }
}

/* ── Overflow protection ── */
html, body,
.container,
.project-body,
.project-detail-hero,
.project-body-grid,
.project-description,
.project-gallery,
.project-highlights,
.project-nav,
#hero,
#services,
#why,
#projects,
#about,
#contact {
  max-width: 100%;
  overflow-x: hidden;
}

/* ── Word break protection ── */
.project-detail-title,
.project-detail-subtitle,
.project-description p,
.sidebar-info-value,
.highlight-text,
.hero-title,
.about-text {
  overflow-wrap: break-word;
  word-break: break-word;
}