/* ============================================================
   WOOD CONSTRUCTION — Premium Website Styles
   Version: 1.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */

:root {
  /* Backgrounds */
  --bg-0:         #080808;
  --bg-1:         #0D0D0D;
  --bg-2:         #131313;
  --bg-3:         #1A1A1A;
  --bg-4:         #222222;
  --bg-5:         #2C2C2C;

  /* Borders */
  --border-1:     #1C1C1C;
  --border-2:     #272727;
  --border-3:     #353535;

  /* Accent — amber gold */
  --accent:       #C8962E;
  --accent-light: #D9A840;
  --accent-dark:  #A07825;
  --accent-soft:  rgba(200, 150, 46, 0.10);
  --accent-mid:   rgba(200, 150, 46, 0.20);

  /* Text */
  --text-1:       #F0F0F0;
  --text-2:       #A8A8A8;
  --text-3:       #636363;
  --text-4:       #404040;

  /* Typography */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale */
  --fs-xs:   0.72rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  2.75rem;
  --fs-4xl:  3.75rem;
  --fs-5xl:  5.5rem;
  --fs-hero: clamp(3.2rem, 7.5vw, 7rem);

  /* Spacing */
  --s1: 0.25rem; --s2: 0.5rem;  --s3: 0.75rem; --s4: 1rem;
  --s5: 1.25rem; --s6: 1.5rem;  --s8: 2rem;    --s10: 2.5rem;
  --s12: 3rem;   --s16: 4rem;   --s20: 5rem;   --s24: 6rem;
  --s32: 8rem;   --s40: 10rem;

  /* Layout */
  --container:     1300px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
  --nav-h:         76px;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0.0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    140ms;
  --dur-base:    240ms;
  --dur-slow:    420ms;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.45);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.55);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.65);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.75);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-1);
  color: var(--text-1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::selection {
  background-color: var(--accent);
  color: #000;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

.t-display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.t-display-lg {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.t-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.t-body-lg { font-size: var(--fs-md); font-weight: 400; line-height: 1.7; color: var(--text-2); }
.t-body    { font-size: var(--fs-base); font-weight: 400; line-height: 1.7; color: var(--text-2); }
.t-body-sm { font-size: var(--fs-sm); font-weight: 400; line-height: 1.6; color: var(--text-3); }

/* ============================================================
   4. LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--narrow {
  max-width: 860px;
}

.section {
  padding-block: var(--s32);
}

.section--tight {
  padding-block: var(--s20);
}

.section--flush {
  padding-block: 0;
}

.section--dark  { background-color: var(--bg-1); }
.section--alt   { background-color: var(--bg-2); }
.section--deep  { background-color: var(--bg-0); }
.section--card  { background-color: var(--bg-3); }

.section-header {
  margin-bottom: var(--s16);
}

.section-label {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s6);
}

.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background-color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-1);
}

.section-subtitle {
  margin-top: var(--s5);
  font-size: var(--fs-md);
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   5. SCROLL REVEAL ANIMATIONS
   ============================================================ */

@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroBgIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideScrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }
.reveal--delay-5 { transition-delay: 500ms; }

/* ============================================================
   6. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  padding: 0.85rem 2.25rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 1px;
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background-color: var(--accent);
  color: #000;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-light);
  border-color: var(--accent-light);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-1);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: #000;
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-3);
  padding: 0.7rem 1.75rem;
}

.btn-ghost:hover {
  color: var(--text-1);
  border-color: var(--text-3);
}

/* ============================================================
   7. NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background-color: transparent;
  transition: background var(--dur-slow) var(--ease),
              border-color var(--dur-slow) var(--ease),
              backdrop-filter var(--dur-slow) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background-color: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: var(--s8);
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s8);
}

.nav-link {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--dur-base) var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text-1);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--s6);
  flex-shrink: 0;
}

.nav-phone {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  transition: color var(--dur-base) var(--ease);
}

.nav-phone:hover { color: var(--accent-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--text-1);
  border-radius: 1px;
  transition: transform var(--dur-base) var(--ease),
              opacity var(--dur-base) var(--ease);
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background-color: rgba(6, 6, 6, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-2);
  padding: var(--s8) var(--container-pad) var(--s10);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform var(--dur-slow) var(--ease),
              opacity var(--dur-slow) var(--ease);
  pointer-events: none;
  z-index: 999;
}

.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  margin-bottom: var(--s8);
}

.nav-mobile-links a {
  display: block;
  padding: var(--s4) 0;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-1);
  border-bottom: 1px solid var(--border-1);
  transition: color var(--dur-base) var(--ease),
              padding-left var(--dur-base) var(--ease);
}

.nav-mobile-links a:hover {
  color: var(--accent);
  padding-left: var(--s4);
}

.nav-mobile-phone {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-start; 
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.hero-video.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.70) 100%
  );
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(0,0,0,0.90) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--container-pad);
  padding-top: 100px;
  padding-bottom: clamp(2rem, 5vh, 4rem);
  max-width: calc(var(--container) + 2 * var(--container-pad));
  margin-inline: auto;
  pointer-events: none;
}

.hero-eyebrow {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s6);
  opacity: 0;
  animation: heroLineIn 0.7s var(--ease-out) 0.3s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.90;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: var(--s8);
}

.hero-headline .hl {
  display: block;
  font-size: var(--fs-hero);
  opacity: 0;
}

.hero-headline .hl--1 { animation: heroLineIn 0.8s var(--ease-out) 0.5s forwards; }
.hero-headline .hl--2 { animation: heroLineIn 0.8s var(--ease-out) 0.7s forwards; color: var(--accent); }
.hero-headline .hl--3 { animation: heroLineIn 0.8s var(--ease-out) 0.9s forwards; }

.hero-subtext {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(240, 240, 240, 0.72);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: var(--s10);
  opacity: 0;
  animation: heroLineIn 0.8s var(--ease-out) 1.1s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  margin-bottom: var(--s8);
  opacity: 0;
  animation: heroLineIn 0.8s var(--ease-out) 1.3s forwards;
}

.hero-employment-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color var(--dur-base) var(--ease);
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out) 1.5s forwards;
}

.hero-employment-link:hover { color: var(--accent); }

.hero-scroll {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3rem);
  bottom: clamp(2rem, 4vh, 3.5rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 2s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  writing-mode: vertical-lr;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: var(--border-3);
  overflow: hidden;
  position: relative;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--accent);
  animation: slideScrollLine 2s ease-in-out infinite 2s;
}

.hero-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dots .dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* ============================================================
   9. ABOUT STRIP
   ============================================================ */

.about-strip {
  padding-block: var(--s24);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s20);
  align-items: center;
}

.about-strip-text .section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: var(--s6);
}

.about-strip-body {
  font-size: var(--fs-md);
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: var(--s8);
}

.about-strip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s6);
}

.about-meta-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--fs-sm);
  color: var(--text-3);
  letter-spacing: 0.06em;
}

.about-meta-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  flex-shrink: 0;
}

.about-strip-visual {
  position: relative;
}

.about-strip-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-strip-accent {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 80px;
  height: 80px;
  background-color: var(--accent);
  z-index: -1;
}

/* ============================================================
   10. SERVICES SECTION
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--border-1);
  border: 1px solid var(--border-1);
}

.service-item {
  background-color: var(--bg-2);
  padding: var(--s10) var(--s8);
  transition: background var(--dur-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}

.service-item:hover { background-color: var(--bg-3); }
.service-item:hover::before { transform: scaleX(1); }

.service-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--border-2);
  line-height: 1;
  margin-bottom: var(--s4);
  letter-spacing: -0.02em;
  transition: color var(--dur-base) var(--ease);
}

.service-item:hover .service-num { color: var(--accent-soft); }

.service-name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: var(--s4);
  line-height: 1.1;
}

.service-desc {
  font-size: var(--fs-sm);
  color: var(--text-2);
  line-height: 1.7;
}

/* ============================================================
   11. PROJECTS CAROUSEL (Homepage)
   ============================================================ */

.projects-carousel {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-0);
}

.carousel-track-wrap {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  height: 70vh;
  min-height: 480px;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.30) 40%,
    rgba(0,0,0,0.10) 70%,
    transparent 100%
  );
}

.carousel-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s12) var(--s12) var(--s10);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.carousel-slide-info {}

.carousel-slide-type {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s3);
  display: block;
}

.carousel-slide-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--text-1);
  line-height: 0.95;
}

.carousel-counter {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: rgba(255,255,255,0.12);
  letter-spacing: -0.02em;
  line-height: 1;
  align-self: flex-end;
}

.carousel-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--s2);
  padding: var(--s6) var(--s12);
  z-index: 5;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.45);
  color: var(--text-1);
  transition: background var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
  border-radius: 1px;
  font-size: 1.1rem;
}

.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-right: auto;
  padding: var(--s6) var(--s12);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}

.carousel-dot {
  width: 5px;
  height: 5px;
  background-color: rgba(255,255,255,0.25);
  border-radius: 50%;
  transition: background var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
  border: none;
  padding: 0;
}

.carousel-dot.is-active {
  background-color: var(--accent);
  transform: scale(1.4);
}

/* ============================================================
   12. TIMELINE SECTION
   ============================================================ */

.timeline-section {
  padding-block: var(--s32);
  background-color: var(--bg-2);
  overflow: hidden;
}

.timeline-header {
  margin-bottom: var(--s16);
}

.timeline-carousel {
  position: relative;
}

.timeline-track-wrap {
  overflow: hidden;
}

.timeline-track {
  display: flex;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}

.timeline-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.timeline-slide-visual {
  position: relative;
}

.timeline-slide-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.timeline-slide-phase {
  position: absolute;
  top: var(--s6);
  left: var(--s6);
  background-color: var(--accent);
  color: #000;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--s2) var(--s4);
}

.timeline-slide-info {
  padding: var(--s8) 0;
}

.timeline-phase-num {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--border-2);
  letter-spacing: -0.03em;
  margin-bottom: var(--s4);
}

.timeline-phase-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-1);
  line-height: 0.95;
  margin-bottom: var(--s5);
}

.timeline-phase-desc {
  font-size: var(--fs-base);
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: var(--s8);
  max-width: 440px;
}

.timeline-progress {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s6);
}

.timeline-progress-track {
  flex: 1;
  height: 2px;
  background-color: var(--border-2);
  position: relative;
  border-radius: 1px;
}

.timeline-progress-fill {
  height: 100%;
  background-color: var(--accent);
  border-radius: 1px;
  transition: width 0.65s var(--ease);
}

.timeline-progress-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-3);
  white-space: nowrap;
}

.timeline-nav {
  display: flex;
  gap: var(--s3);
  margin-top: var(--s8);
}

.timeline-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-3);
  background: transparent;
  color: var(--text-2);
  border-radius: 1px;
  font-size: 1rem;
  transition: all var(--dur-base) var(--ease);
}

.timeline-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

/* ============================================================
   13. STATS BAR
   ============================================================ */

.stats-bar {
  background-color: var(--bg-0);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  padding-block: var(--s16);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--border-1);
}

.stat-item {
  background-color: var(--bg-0);
  padding: var(--s10) var(--s8);
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text-1);
  letter-spacing: -0.01em;
  display: block;
}

.stat-suffix {
  color: var(--accent);
}

.stat-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: var(--s3);
  display: block;
}

/* ============================================================
   14. WHY SECTION
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--border-1);
}

.why-item {
  background-color: var(--bg-2);
  padding: var(--s10) var(--s10);
  position: relative;
  transition: background var(--dur-base) var(--ease);
}

.why-item:hover {
  background-color: var(--bg-3);
}

.why-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--border-2);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--s4);
  transition: color var(--dur-base) var(--ease);
}

.why-item:hover .why-number { color: var(--accent-soft); }

.why-title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-1);
  margin-bottom: var(--s4);
  line-height: 1.05;
}

.why-desc {
  font-size: var(--fs-base);
  color: var(--text-2);
  line-height: 1.75;
}

/* ============================================================
   15. CTA SECTIONS
   ============================================================ */

.cta-employment {
  padding-block: var(--s24);
  background-color: var(--bg-3);
  position: relative;
  overflow: hidden;
}

.cta-employment::before {
  content: 'JOIN';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 800;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.02em;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
}

.cta-employment-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s12);
  align-items: center;
}

.cta-employment-text .section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.cta-employment-text .section-subtitle { color: var(--text-2); }

.cta-contact {
  padding-block: var(--s24);
  background-color: var(--accent);
  position: relative;
  overflow: hidden;
}

.cta-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
  flex-wrap: wrap;
}

.cta-contact-text .cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #000;
  line-height: 0.95;
}

.cta-contact-text .cta-sub {
  font-size: var(--fs-base);
  color: rgba(0,0,0,0.65);
  margin-top: var(--s3);
}

.cta-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  align-items: center;
}

.cta-contact-actions .btn-dark {
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 0.85rem 2.25rem;
}

.cta-contact-actions .btn-dark:hover {
  background: var(--bg-3);
  border-color: var(--bg-3);
}

.cta-contact-phone {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: #000;
  letter-spacing: 0.04em;
}

/* ============================================================
   16. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--bg-0);
  border-top: 1px solid var(--border-1);
  padding-top: var(--s20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s12);
  padding-bottom: var(--s16);
  border-bottom: 1px solid var(--border-1);
}

.footer-brand {}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: var(--s6);
}

.footer-tagline {
  font-size: var(--fs-sm);
  color: var(--text-3);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--s8);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer-contact-item {
  font-size: var(--fs-sm);
  color: var(--text-3);
  line-height: 1.5;
}

.footer-contact-item a {
  color: var(--accent);
  transition: color var(--dur-base) var(--ease);
}

.footer-contact-item a:hover { color: var(--accent-light); }

.footer-col-title {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: var(--s6);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer-nav a {
  font-size: var(--fs-sm);
  color: var(--text-3);
  transition: color var(--dur-base) var(--ease);
}

.footer-nav a:hover { color: var(--text-1); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--s6);
  flex-wrap: wrap;
  gap: var(--s4);
}

.footer-copy {
  font-size: var(--fs-xs);
  color: var(--text-4);
  letter-spacing: 0.08em;
}

.footer-legal {
  font-size: var(--fs-xs);
  color: var(--text-4);
  letter-spacing: 0.05em;
}

/* ============================================================
   17. PAGE HERO (Inner Pages)
   ============================================================ */

.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--s24));
  padding-bottom: var(--s24);
  background-color: var(--bg-0);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--bg-0) 0%,
    var(--bg-1) 100%
  );
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s5);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.92;
  color: var(--text-1);
  margin-bottom: var(--s6);
}

.page-hero-subtitle {
  font-size: var(--fs-md);
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   18. PREVIOUS WORK PAGE
   ============================================================ */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.project-card {
  position: relative;
  background-color: var(--bg-3);
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--border-1);
  transition: border-color var(--dur-base) var(--ease);
}

.project-card:hover {
  border-color: var(--border-3);
}

.project-card-img-wrap {
  overflow: hidden;
  position: relative;
  height: 260px;
}

.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.project-card:hover .project-card-img {
  transform: scale(1.05);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
}

.project-card:hover .project-card-overlay { opacity: 1; }

.project-card-view {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.65rem 1.25rem;
  border-radius: 1px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}

.project-card-body {
  padding: var(--s6) var(--s6) var(--s8);
}

.project-card-type {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s3);
  display: block;
}

.project-card-name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-1);
  margin-bottom: var(--s3);
  line-height: 1.05;
}

.project-card-desc {
  font-size: var(--fs-sm);
  color: var(--text-3);
  line-height: 1.65;
}

/* ============================================================
   19. LIGHTBOX
   ============================================================ */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease);
}

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

.lightbox-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
}

.lightbox-close {
  position: fixed;
  top: var(--s6);
  right: var(--s6);
  width: 44px;
  height: 44px;
  background: var(--bg-3);
  border: 1px solid var(--border-3);
  color: var(--text-1);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
  z-index: 10;
  transition: all var(--dur-base) var(--ease);
}

.lightbox-close:hover { background: var(--accent); color: #000; border-color: var(--accent); }

.lightbox-image-wrap {
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 1px;
}

.lightbox-nav {
  display: flex;
  align-items: center;
  gap: var(--s6);
  margin-top: var(--s5);
}

.lightbox-prev,
.lightbox-next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-3);
  background: var(--bg-3);
  color: var(--text-1);
  border-radius: 1px;
  font-size: 1rem;
  transition: all var(--dur-base) var(--ease);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lightbox-counter {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.1em;
  min-width: 60px;
  text-align: center;
}

/* ============================================================
   20. EMPLOYMENT PAGE
   ============================================================ */

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-bottom: var(--s16);
}

.perk-card {
  background-color: var(--bg-3);
  border: 1px solid var(--border-1);
  padding: var(--s8);
  transition: border-color var(--dur-base) var(--ease);
}

.perk-card:hover { border-color: var(--border-3); }

.perk-icon {
  font-size: 1.6rem;
  margin-bottom: var(--s4);
  display: block;
}

.perk-title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-1);
  margin-bottom: var(--s3);
}

.perk-desc {
  font-size: var(--fs-sm);
  color: var(--text-2);
  line-height: 1.7;
}

.positions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
  margin-bottom: var(--s16);
}

.position-item {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  background-color: var(--bg-3);
  border: 1px solid var(--border-1);
  border-left: 3px solid var(--accent);
}

.position-item-name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-1);
}

.position-item-type {
  font-size: var(--fs-xs);
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============================================================
   21. CONTACT PAGE
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: start;
}

.contact-info-block {
  margin-bottom: var(--s10);
}

.contact-info-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: var(--s3);
}

.contact-info-value {
  font-size: var(--fs-lg);
  color: var(--text-1);
  font-weight: 500;
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--accent);
  transition: color var(--dur-base) var(--ease);
}

.contact-info-value a:hover { color: var(--accent-light); }

/* ============================================================
   22. FORMS
   ============================================================ */

.form-group {
  margin-bottom: var(--s6);
}

.form-label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--s3);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background-color: var(--bg-3);
  border: 1px solid var(--border-2);
  color: var(--text-1);
  padding: 0.85rem 1rem;
  font-size: var(--fs-base);
  border-radius: 1px;
  transition: border-color var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-4);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--bg-4);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
}

.form-note {
  font-size: var(--fs-xs);
  color: var(--text-4);
  margin-top: var(--s3);
  letter-spacing: 0.06em;
}

.form-success {
  display: none;
  background: var(--accent-soft);
  border: 1px solid var(--accent-mid);
  padding: var(--s5) var(--s6);
  color: var(--accent-light);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 1px;
  margin-top: var(--s5);
}

/* ============================================================
   23. DIVIDERS & UTILITIES
   ============================================================ */

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-2), transparent);
  margin-block: 0;
}

.accent-line {
  display: block;
  width: 48px;
  height: 3px;
  background-color: var(--accent);
  margin-bottom: var(--s6);
}

.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-3); }
.text-light   { color: var(--text-1); }

.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4       { gap: var(--s4); }
.gap-6       { gap: var(--s6); }

/* ============================================================
   23b. CURRENT PROJECTS PANELS
   ============================================================ */

.current-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 540px;
  margin-top: var(--s12);
}

.current-panel {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.current-panel-video,
.current-panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
}

.current-panel:hover .current-panel-video,
.current-panel:hover .current-panel-img {
  transform: scale(1.04);
}

.current-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.90) 0%,
    rgba(0, 0, 0, 0.40) 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

/* Vertical gold separator between panels */
.current-panel:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--border-2);
  z-index: 3;
}

.current-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2rem 2.5rem;
  z-index: 2;
}

.current-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--accent);
  color: #000;
  padding: 0.28rem 0.65rem;
  margin-bottom: 0.85rem;
}

.current-panel-badge::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
  animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.25; transform: scale(0.6); }
}

.current-panel-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.current-panel-location {
  font-size: var(--fs-sm);
  color: var(--accent);
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.current-panel-desc {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.6;
}

/* ============================================================
   23c. VIDEO SHOWCASE (Previous Work page)
   ============================================================ */

.video-showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s2);
  height: 500px;
}

.video-showcase-main {
  position: relative;
  overflow: hidden;
}

.video-showcase-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-showcase-side {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: var(--s2);
}

.video-showcase-item {
  overflow: hidden;
  position: relative;
}

.video-showcase-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   24. RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone  { display: none; }

  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: var(--s12);
  }

  .about-strip-visual { display: none; }

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

  .timeline-slide {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .timeline-slide-img { height: 320px; }

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

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

  .cta-employment-inner {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s10);
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--s10);
  }

  .positions-list {
    grid-template-columns: 1fr;
  }

  .current-panels {
    grid-template-columns: 1fr;
    height: auto;
  }

  .current-panel {
    height: 360px;
  }

  .current-panel:not(:last-child)::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .video-showcase-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .video-showcase-main { height: 280px; }

  .video-showcase-side {
    grid-template-rows: 180px 180px 180px;
  }
}

/* ============================================================
   25. RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */

@media (max-width: 640px) {
  :root {
    --nav-h: 64px;
  }

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

  .hero-ctas .btn {
    text-align: center;
    justify-content: center;
  }

  .hero-scroll { display: none; }

  .section { padding-block: var(--s20); }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .perks-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s3);
  }

  .cta-contact-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s6);
  }

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

  .carousel-slide { height: 55vw; min-height: 320px; }

  .carousel-slide-content { padding: var(--s6); }

  .carousel-slide-name { font-size: var(--fs-2xl); }

  .carousel-counter { display: none; }

  .timeline-slide-img { height: 240px; }

  .timeline-phase-num { font-size: 4rem; }

  .page-hero { padding-top: calc(var(--nav-h) + var(--s12)); }

  .contact-layout { gap: var(--s8); }
}

/* ============================================================
   26. PRINT
   ============================================================ */

@media print {
  .site-header, .site-footer, .hero-scroll, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
}
