/* ============================================================
   ZOHAAN PROJECTS — Master Stylesheet
   Design: Bold & Industrial | Agency-Grade
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Core Palette */
  --asphalt: #0C0C0E;
  --asphalt-mid: #111114;
  --concrete: #1A1A1E;
  --concrete-light: #242428;
  --steel: #2E2E34;
  --iron: #3A3A42;
  --chrome: #6B6B78;
  --platinum: #A8A8B4;
  --white: #F4F4F0;
  --pure-white: #FFFFFF;

  /* Brand Accent — Molten Orange / Amber */
  --flame: #E8531E;
  --amber: #F5A623;
  --ember: #FF6B35;
  --gold: #FFBE00;

  /* Semantic */
  --bg-primary: var(--asphalt);
  --bg-secondary: var(--concrete);
  --bg-card: var(--concrete-light);
  --text-primary: var(--white);
  --text-secondary: var(--platinum);
  --text-muted: var(--chrome);
  --accent: var(--flame);
  --accent-warm: var(--amber);
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(232, 83, 30, 0.4);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --max-width: 1320px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --transition: 0.25s var(--ease-out);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--asphalt);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: none;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ─── CUSTOM CURSOR ──────────────────────────────────────── */
#cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--flame);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--flame);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.12s var(--ease-out);
  opacity: 0.7;
}

body.cursor-hover #cursor-dot {
  width: 14px;
  height: 14px;
  background: var(--amber);
}

body.cursor-hover #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--amber);
  opacity: 0.5;
}

/* ─── PRELOADER ───────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--asphalt);
  z-index: 99997;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-counter {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 12rem);
  color: var(--flame);
  line-height: 1;
  letter-spacing: -0.02em;
}

.preloader-bar-wrap {
  width: 280px;
  height: 2px;
  background: var(--iron);
  position: relative;
}

.preloader-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--flame), var(--amber));
  width: 0%;
  transition: width 0.05s linear;
}

.preloader-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chrome);
}

/* ─── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

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

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 400;
}

.display-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 14rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--flame);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--flame);
  flex-shrink: 0;
}

.section-eyebrow.centered {
  justify-content: center;
}

.section-eyebrow.centered::before {
  display: none;
}

.accent-text {
  color: var(--flame);
}

.gold-text {
  color: var(--amber);
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: none;
}

.btn-primary {
  background: var(--flame);
  color: var(--white);
  border-color: var(--flame);
}

.btn-primary:hover {
  background: var(--amber);
  border-color: var(--amber);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--asphalt);
  border-color: var(--white);
}

.btn-outline-flame {
  background: transparent;
  color: var(--flame);
  border-color: var(--flame);
}

.btn-outline-flame:hover {
  background: var(--flame);
  color: var(--white);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ─── NAVIGATION ──────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 28px 0;
  transition: padding 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.navbar.scrolled {
  padding: 16px 0;
  background: rgba(12, 12, 14, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

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

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

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.nav-logo-text span {
  display: block;
  font-size: 0.48rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--chrome);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--platinum);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--flame);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px;
  font-size: 0.68rem;
}

/* ─── HAMBURGER ───────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
  cursor: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ─── FULLSCREEN MENU ─────────────────────────────────────── */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: var(--asphalt-mid);
  z-index: 490;
  display: flex;
  align-items: center;
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
  overflow: hidden;
}

.fullscreen-menu.open {
  transform: translateX(0);
}

.menu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
}

.menu-nav-side {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.menu-nav-link {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--steel);
  text-transform: uppercase;
  display: block;
  padding: 0.2rem 0;
  transition: color 0.2s, transform 0.2s;
  line-height: 1.1;
  counter-increment: menu-counter;
}

.menu-nav-link::before {
  content: counter(menu-counter, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--flame);
  display: block;
  margin-bottom: 0.1rem;
}

.menu-nav-link:hover {
  color: var(--white);
  transform: translateX(12px);
}

.menu-nav-link.active {
  color: var(--flame);
}

.menu-nav-side {
  counter-reset: menu-counter;
}

.menu-info-side {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-info-top p {
  font-size: 0.9rem;
  line-height: 1.9;
  max-width: 320px;
  color: var(--chrome);
}

.menu-info-top h3 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--platinum);
}

.menu-contact-block {
  margin-top: 3rem;
}

.menu-contact-block a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  transition: color var(--transition);
}

.menu-contact-block a:hover {
  color: var(--flame);
}

@media (max-width: 768px) {
  .menu-inner {
    grid-template-columns: 1fr;
  }

  .menu-info-side {
    display: none;
  }

  .menu-nav-side {
    padding: 120px 40px;
  }

  .menu-nav-link {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }
}

/* ─── PAGE HERO (Interior Pages) ─────────────────────────── */
.page-hero {
  padding: 200px 0 100px;
  background: var(--concrete);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 83, 30, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 83, 30, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero .hero-num {
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 22rem);
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.page-hero h1 {
  margin-bottom: 1.5rem;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome);
}

.breadcrumb a {
  color: var(--flame);
}

.breadcrumb .sep {
  opacity: 0.35;
}

/* ─── HOME HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--asphalt);
  padding-top: 100px;
}

.hero-left {
  padding: 80px 0 80px 40px;
  position: relative;
  z-index: 2;
  grid-column: 1 / 2;
}

.hero-right {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-img-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--concrete) 0%, var(--asphalt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 8s ease;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--asphalt) 0%, rgba(12, 12, 14, 0.3) 60%, transparent 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 83, 30, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 83, 30, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232, 83, 30, 0.1);
  border: 1px solid var(--border-accent);
  padding: 8px 18px;
  margin-bottom: 2.5rem;
}

.hero-tag span {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--flame);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-title .line-2 {
  color: var(--flame);
}

.hero-desc {
  font-size: 1rem;
  color: var(--chrome);
  max-width: 440px;
  line-height: 1.9;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
  max-width: 560px;
}

.h-stat {
  padding-right: 2rem;
  border-right: 1px solid var(--border);
}

.h-stat:last-child {
  border-right: none;
}

.h-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--flame);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.h-stat-label {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome);
}

/* ─── SCROLL INDICATOR ────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chrome);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--flame), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}

/* ─── MARQUEE ──────────────────────────────────────────────── */
.marquee-section {
  background: var(--flame);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 22s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-shrink: 0;
}

.marquee-item::after {
  content: '◆';
  font-size: 0.5rem;
  opacity: 0.6;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── ABOUT SPLIT SECTION ─────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about-split-left {
  background: var(--concrete);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.about-split-right {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  background: var(--concrete-light);
}

.about-split-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.6s var(--ease-out);
}

.about-split-right:hover img {
  transform: scale(1.04);
}

.about-accent-box {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--flame);
  padding: 24px 32px;
  border-left: 4px solid var(--amber);
}

.about-accent-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
}

.about-accent-box span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ─── STATS WALL ──────────────────────────────────────────── */
.stats-wall {
  background: var(--asphalt);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.stats-wall-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-block {
  padding: 3rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background var(--transition);
}

.stat-block:first-child {
  border-left: 1px solid var(--border);
}

.stat-block:hover {
  background: var(--concrete);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--flame);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome);
}

/* ─── SERVICES BENTO GRID ─────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 2px;
  background: var(--border);
}

.bento-cell {
  background: var(--concrete);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.bento-cell:hover {
  background: var(--concrete-light);
}

.bento-cell.span-5 {
  grid-column: span 5;
}

.bento-cell.span-7 {
  grid-column: span 7;
}

.bento-cell.span-4 {
  grid-column: span 4;
}

.bento-cell.span-8 {
  grid-column: span 8;
}

.bento-cell.span-6 {
  grid-column: span 6;
}

.bento-cell.span-3 {
  grid-column: span 3;
}

.bento-cell.tall {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-cell.accent-cell {
  background: var(--flame);
}

.bento-cell.accent-cell:hover {
  background: var(--ember);
}

.bento-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.bento-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 83, 30, 0.12);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.bento-cell.accent-cell .bento-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.bento-cell h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 1rem;
  color: var(--white);
}

.bento-cell p {
  color: var(--chrome);
  font-size: 0.9rem;
  line-height: 1.8;
}

.bento-cell.accent-cell p {
  color: rgba(255, 255, 255, 0.75);
}

.bento-feature-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bento-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--chrome);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.bento-feature-list li::before {
  content: '→';
  color: var(--flame);
}

.bento-bg-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.bento-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.bento-bg-img+* {
  position: relative;
  z-index: 1;
}

.bento-cell .cell-content {
  position: relative;
  z-index: 1;
}

/* ─── PROJECT GALLERY ─────────────────────────────────────── */
.projects-editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 4rem;
}

.proj-cell {
  background: var(--concrete);
  position: relative;
  overflow: hidden;
  cursor: none;
}

.proj-cell.large {
  grid-column: span 7;
  min-height: 560px;
}

.proj-cell.medium {
  grid-column: span 5;
  min-height: 560px;
}

.proj-cell.wide {
  grid-column: span 4;
  min-height: 360px;
}

.proj-cell.wide-r {
  grid-column: span 8;
  min-height: 360px;
}

.proj-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  filter: saturate(0.7);
}

.proj-cell:hover .proj-img img {
  transform: scale(1.08);
  filter: saturate(1);
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 14, 0.95) 0%, rgba(12, 12, 14, 0.2) 60%, transparent 100%);
  z-index: 1;
  transition: background var(--transition);
}

.proj-cell:hover .proj-overlay {
  background: linear-gradient(to top, rgba(12, 12, 14, 0.98) 0%, rgba(12, 12, 14, 0.3) 60%, transparent 100%);
}

.proj-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
}

.proj-cell:hover .proj-info {
  transform: translateY(0);
}

.proj-cat {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 0.5rem;
}

.proj-info h3 {
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  margin-bottom: 0.5rem;
}

.proj-info p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  display: none;
}

.proj-cell:hover .proj-info p {
  display: block;
}

.proj-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 1rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
}

.proj-cell:hover .proj-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─── WHY GRID ────────────────────────────────────────────── */
.why-grid-industrial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 4rem;
}

.why-cell {
  background: var(--concrete);
  padding: 3rem;
  border-top: 3px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.why-cell:hover {
  background: var(--concrete-light);
  border-color: var(--flame);
}

.why-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: 1rem;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.why-cell p {
  font-size: 0.88rem;
  color: var(--chrome);
}

/* ─── PROCESS BAR ─────────────────────────────────────────── */
.process-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--transition);
}

.process-step:last-child {
  border-right: none;
}

.process-step:hover {
  background: var(--concrete);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--flame);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--chrome);
}

/* ─── CTA SECTION ─────────────────────────────────────────── */
.cta-block {
  background: var(--concrete);
  border: 1px solid var(--border);
  border-top: 4px solid var(--flame);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.cta-block h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 600px;
}

.cta-block h2 em {
  font-style: normal;
  color: var(--flame);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-strip {
  background: var(--flame);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: 'BUILD';
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.cta-strip-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-white {
  background: var(--white);
  color: var(--asphalt);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--asphalt);
  color: var(--white);
}

/* ─── CONTACT ──────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2px;
  background: var(--border);
  min-height: 80vh;
}

.contact-left {
  background: var(--concrete);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-right {
  background: var(--asphalt-mid);
  padding: 80px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.c-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.c-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--flame);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.c-detail-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 0.3rem;
}

.c-detail-val {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
}

/* Form */
.form-group {
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 0.6rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--concrete);
  border: 1px solid var(--iron);
  border-bottom-width: 2px;
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--flame);
  background: var(--concrete-light);
}

input::placeholder,
textarea::placeholder {
  color: var(--chrome);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B78' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: none;
}

select option {
  background: var(--concrete);
}

.form-success {
  display: none;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-left: 3px solid #22c55e;
  background: rgba(34, 197, 94, 0.05);
  color: #86efac;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--asphalt-mid);
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.footer-brand img {
  height: 48px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--chrome);
  line-height: 1.9;
  max-width: 280px;
}

.footer-tagline {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--flame);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--platinum);
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--chrome);
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--flame);
  padding-left: 4px;
}

.footer-links a::before {
  content: '→';
  font-size: 0.7rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--iron);
}

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

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--iron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--chrome);
  text-transform: uppercase;
  transition: var(--transition);
  cursor: none;
}

.social-btn:hover {
  background: var(--flame);
  color: var(--white);
  border-color: var(--flame);
}

/* ─── ABOUT VALUES ────────────────────────────────────────── */
.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 4rem;
}

.value-cell {
  background: var(--concrete);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background var(--transition);
  border-top: 3px solid transparent;
}

.value-cell:hover {
  background: var(--concrete-light);
  border-top-color: var(--flame);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.value-cell h4 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.value-cell p {
  font-size: 0.85rem;
  color: var(--chrome);
}

/* ─── CERTIFICATIONS ─────────────────────────────────────── */
.cert-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 4rem;
}

.cert-item {
  padding: 2.5rem 3rem;
  border-right: 1px solid var(--border);
  text-align: center;
  flex: 1;
}

.cert-item:last-child {
  border-right: none;
}

.cert-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.cert-item span {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome);
}

/* ─── PRICING TABLE ───────────────────────────────────────── */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 4rem;
}

.pricing-card {
  background: var(--concrete);
  padding: 3rem;
  position: relative;
  transition: background var(--transition);
}

.pricing-card.featured {
  background: var(--flame);
}

.pricing-card.featured:hover {
  background: var(--ember);
}

.pricing-card:not(.featured):hover {
  background: var(--concrete-light);
}

.price-badge-label {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 1.5rem;
  display: block;
}

.pricing-card.featured .price-badge-label {
  color: rgba(255, 255, 255, 0.7);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-unit {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--chrome);
  margin-bottom: 2rem;
}

.pricing-card.featured .price-unit {
  color: rgba(255, 255, 255, 0.7);
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.price-features li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--chrome);
}

.pricing-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.8);
}

.price-features li::before {
  content: '→';
  color: var(--flame);
  flex-shrink: 0;
}

.pricing-card.featured .price-features li::before {
  color: var(--white);
}

/* ─── SCROLL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 {
  transition-delay: 0.08s !important;
}

.stagger-2 {
  transition-delay: 0.16s !important;
}

.stagger-3 {
  transition-delay: 0.24s !important;
}

.stagger-4 {
  transition-delay: 0.32s !important;
}

.stagger-5 {
  transition-delay: 0.40s !important;
}

/* ─── UTILS ───────────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.section-padding {
  padding: 120px 0;
}

.section-padding-sm {
  padding: 80px 0;
}

.bg-concrete {
  background: var(--concrete);
}

.border-top-accent {
  border-top: 4px solid var(--flame);
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--flame), var(--amber));
  margin: 2rem 0;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    padding: 120px 40px 80px;
  }

  .stats-wall-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-cell.span-5,
  .bento-cell.span-7 {
    grid-column: span 12;
  }

  .bento-cell.span-4,
  .bento-cell.span-8 {
    grid-column: span 12;
  }

  .bento-cell.span-6 {
    grid-column: span 12;
  }

  .bento-cell.span-3 {
    grid-column: span 6;
  }

  .proj-cell.large,
  .proj-cell.medium {
    grid-column: span 12;
    min-height: 420px;
  }

  .proj-cell.wide,
  .proj-cell.wide-r {
    grid-column: span 12;
    min-height: 300px;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split-right {
    min-height: 400px;
  }

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

  .process-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-block {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 60px 40px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-left,
  .contact-right {
    padding: 60px 40px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

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

  .pricing-table {
    grid-template-columns: 1fr;
  }

  .menu-inner {
    grid-template-columns: 1fr;
  }

  .menu-info-side {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .hero-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .h-stat {
    border-right: none;
    padding-right: 0;
  }

  .why-grid-industrial {
    grid-template-columns: 1fr;
  }

  .process-bar {
    grid-template-columns: 1fr 1fr;
  }

  .cta-block {
    padding: 40px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .values-row {
    grid-template-columns: 1fr;
  }

  .cert-row {
    flex-direction: column;
  }

  .cert-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .bento-cell.span-3 {
    grid-column: span 12;
  }

  .page-hero {
    padding: 160px 0 70px;
  }

  .page-hero .hero-num {
    display: none;
  }

  .about-split-left {
    padding: 60px 28px;
  }

  .section-padding {
    padding: 80px 0;
  }

  .contact-left,
  .contact-right {
    padding: 50px 24px;
  }
}

@media (max-width: 480px) {
  .hero-left {
    padding: 100px 20px 60px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .process-bar {
    grid-template-columns: 1fr;
  }

  .menu-nav-side {
    padding: 100px 28px;
  }

  .stats-wall-grid {
    grid-template-columns: 1fr;
  }

  .stat-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}