/* ============================================
   ARCHI HOLDING — Stylesheet
   Cinematic, modern, distinctive
============================================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --text: #f5f1ea;
  --text-dim: #8a8680;
  --text-muted: #5a5650;
  --accent: #ff5b1f;
  --accent-2: #ffd700;
  --border: rgba(245, 241, 234, 0.08);
  --border-strong: rgba(245, 241, 234, 0.2);

  --font-display: 'Space Grotesk', 'Noto Sans Georgian', sans-serif;
  --font-body: 'Inter', 'Noto Sans Georgian', sans-serif;
  --font-geo: 'Noto Sans Georgian', sans-serif;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1400px;
  --pad: clamp(20px, 4vw, 60px);
}

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

html { scroll-behavior: smooth; }
html.no-scroll, body.no-scroll { overflow: hidden; }

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

@media (max-width: 1024px) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* ============================================
   LOADER
============================================ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Animated construction scene */
.loader-build {
  width: clamp(260px, 32vw, 360px);
  margin: 0 auto;
  color: var(--text);
}
.loader-build svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.archi-clip-rect {
  transition: y 0.3s linear, height 0.3s linear;
}
.hook-group {
  transition: transform 0.3s linear;
}
.crane {
  animation: cranesway 6s ease-in-out infinite;
  transform-origin: 178px 210px;
}
@keyframes cranesway {
  0%, 100% { transform: rotate(-0.4deg); }
  50% { transform: rotate(0.4deg); }
}

/* Facade worker — trowel/plaster motion */
.worker-arm-trowel {
  transform-box: fill-box;
  transform-origin: left center;
  animation: trowel 1.3s ease-in-out infinite;
}
@keyframes trowel {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50%      { transform: translateX(1.5px) rotate(10deg); }
}

/* Subtle sway on the swing-stage as the worker plasters */
.facade-worker {
  transform-box: fill-box;
  transform-origin: 153px 48px;
  animation: stagesway 4s ease-in-out infinite;
  transition: opacity 0.5s linear;
}
@keyframes stagesway {
  0%, 100% { transform: rotate(-0.3deg); }
  50%      { transform: rotate(0.3deg); }
}

/* Inside-window workers — work motion animations */
.w-plaster, .w-hammer, .w-roller, .w-drill, .w-floor {
  transform-box: fill-box;
}
.w-plaster {
  transform-origin: left center;
  animation: w-plaster-anim 1.4s ease-in-out infinite;
}
@keyframes w-plaster-anim {
  0%, 100% { transform: translate(0,0); }
  50%      { transform: translate(-0.4px, -0.6px); }
}
.w-hammer {
  transform-origin: left bottom;
  animation: w-hammer-anim 0.75s ease-in-out infinite;
}
@keyframes w-hammer-anim {
  0%, 100% { transform: rotate(0deg); }
  30%      { transform: rotate(-25deg); }
  55%      { transform: rotate(10deg); }
}
.w-roller {
  transform-origin: left bottom;
  animation: w-roller-anim 1.1s ease-in-out infinite;
}
@keyframes w-roller-anim {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-1.5px); }
}
.w-drill {
  transform-origin: left center;
  animation: w-drill-anim 0.15s linear infinite;
}
@keyframes w-drill-anim {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(0.3px, -0.2px); }
  50%      { transform: translate(-0.3px, 0.2px); }
  75%      { transform: translate(0.2px, 0.3px); }
}
.w-floor {
  transform-origin: left top;
  animation: w-floor-anim 0.85s ease-in-out infinite;
}
@keyframes w-floor-anim {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(0.7px); }
}

.loader-counter {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent);
  margin-top: 20px;
  letter-spacing: 0.15em;
  font-weight: 600;
}

/* ============================================
   CUSTOM CURSOR
============================================ */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--text);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  mix-blend-mode: difference;
}
.cursor.hover { width: 64px; height: 64px; background: var(--text); border-color: var(--text); }
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 4px; height: 4px; background: var(--text);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 28px; height: 28px;
  background: var(--accent);
  position: relative;
  transform: rotate(45deg);
}
.logo-mark::after {
  content: ''; position: absolute; inset: 6px;
  background: var(--bg);
}
.logo-text { font-size: 18px; }
.logo-sub { font-size: 11px; color: var(--text-dim); letter-spacing: 0.1em; }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 24px; }
.lang-switcher {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-family: var(--font-display);
  letter-spacing: 0.08em;
}
.lang-switcher span { color: var(--text-muted); }
.lang-btn {
  padding: 4px 0;
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.25s var(--ease);
}
.lang-btn.active { color: var(--accent); }
.lang-btn:hover { color: var(--text); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span {
  width: 24px; height: 1.5px; background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding-top: 100px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; padding: 0 var(--pad); }
.mobile-menu nav a {
  padding: 20px 0;
  font-size: 24px; font-family: var(--font-display);
  border-bottom: 1px solid var(--border);
}

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

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px var(--pad) 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.5;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero::before {
  content: '';
  position: absolute; top: 30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 91, 31, 0.15), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-inner { max-width: var(--container); margin: 0 auto; width: 100%; position: relative; }

.hero-meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-family: var(--font-display);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 40px;
}
.hero-meta .dot {
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: glow 2s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 91, 31, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(255, 91, 31, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 180px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s var(--ease-out) forwards;
}
.hero-title .line:nth-child(2) > span { animation-delay: 0.1s; }
.hero-title .line:nth-child(3) > span { animation-delay: 0.2s; }
.hero-title .accent > span { color: var(--accent); font-style: italic; }
@keyframes rise { to { transform: translateY(0); } }

.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeIn 1s 0.5s var(--ease-out) forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s 0.7s var(--ease-out) forwards;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 32px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--text); border-color: var(--text); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn-lg { padding: 22px 40px; font-size: 15px; }

.hero-scroll {
  position: absolute; bottom: -20px; left: 0;
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-family: var(--font-display);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0;
  animation: fadeIn 1s 1s var(--ease-out) forwards;
}
.scroll-line { width: 40px; height: 1px; background: var(--text-dim); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero-stats {
  display: flex; gap: clamp(30px, 5vw, 80px);
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
  width: 100%;
  opacity: 0;
  animation: fadeIn 1s 1.2s var(--ease-out) forwards;
}
.hero-stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hero-stat .stat-label {
  font-size: 12px; color: var(--text-dim);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============================================
   MARQUEE
============================================ */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  padding: 24px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}
.marquee-track span:nth-child(even) { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION COMMON
============================================ */
.section-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 40px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dim);
}
.section-num { color: var(--accent); font-weight: 700; }
.section-label::before { content: '/ '; color: var(--text-muted); }

/* ============================================
   ABOUT
============================================ */
.about { padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.about-text { padding-top: 12px; }
.about-text p {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.value {
  position: relative;
  overflow: hidden;
  padding: 36px 28px 32px;
  min-height: 300px;
  display: flex; flex-direction: column;
  background: var(--bg-2);
  background-size: cover; background-position: center;
  border: 1px solid var(--border);
  margin-left: -1px; margin-top: -1px;
  transition: transform 0.45s var(--ease);
}
.value::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.78) 50%, rgba(10,10,10,0.48) 100%);
  transition: background 0.5s var(--ease);
  z-index: 0;
}
.value:hover::after {
  background: linear-gradient(0deg, rgba(10,10,10,0.93) 0%, rgba(10,10,10,0.6) 50%, rgba(255,91,31,0.16) 100%);
}
.value::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.5s var(--ease);
  z-index: 2;
}
.value > * { position: relative; z-index: 1; }
.value:hover { transform: translateY(-5px); }
.value:hover::before { width: 100%; }
.value-icon { display: inline-flex; color: var(--accent); margin-bottom: auto; }
.value-icon svg {
  width: 40px; height: 40px;
  transition: transform 0.45s var(--ease);
}
.value:hover .value-icon svg { transform: scale(1.1) rotate(-3deg); }
.value-num { margin-top: 22px; }
.value:last-child { border-right: 1px solid var(--border); }
.value-num {
  font-family: var(--font-display);
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.value h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.value p { color: var(--text-dim); font-size: 14px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .values { grid-template-columns: 1fr 1fr; }
  .value { min-height: 240px; padding: 90px 18px 22px 18px; }
}

/* ============================================
   SERVICES
============================================ */
.services {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
}
.services-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 80px;
  line-height: 1.05;
}
.services-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
}
.service-card {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  cursor: none;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0%; height: 1px; background: var(--accent);
  transition: width 0.5s var(--ease);
}
.service-card:hover::before { width: 100%; }
.service-card:hover { padding-left: 20px; padding-right: 20px; }
.service-card .s-num {
  font-family: var(--font-display);
  font-size: 14px; color: var(--text-muted);
  letter-spacing: 0.1em;
}
.service-card .s-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease), transform 0.4s var(--ease);
}
.service-card:hover .s-title { color: var(--accent); transform: translateX(10px); }
.service-card .s-desc {
  color: var(--text-dim);
  font-size: 14px;
  max-width: 340px;
  text-align: right;
}
.service-card .s-arrow {
  width: 48px; height: 48px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.service-card:hover .s-arrow { background: var(--accent); border-color: var(--accent); transform: rotate(-45deg); }
.service-card .s-arrow svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .service-card {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding: 28px 0;
  }
  .service-card .s-desc { display: none; }
  .service-card:hover { padding-left: 0; padding-right: 0; }
}

/* ============================================
   PROJECTS
============================================ */
.projects { padding: 120px 0; }
.projects-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 40px; margin-bottom: 60px; flex-wrap: wrap;
}
.projects-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.projects-sub { color: var(--text-dim); max-width: 400px; font-size: 16px; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: none;
  background: var(--bg-3);
}
.project-card.tall { aspect-ratio: 3/4; }
.project-card.wide { aspect-ratio: 16/9; }
.project-card .ph {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}
.project-card .ph::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.15);
  transition: background 0.4s var(--ease);
}
.project-card:hover .ph::after { background: rgba(10,10,10,0); }
.project-card:hover .ph { transform: scale(1.05); }
.project-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, transparent 60%);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 6px;
  opacity: 1;
  transition: opacity 0.4s var(--ease);
}
.project-card .p-cat {
  font-family: var(--font-display);
  font-size: 11px; color: var(--accent);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.project-card .p-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600; letter-spacing: -0.01em;
}
.project-card .p-meta {
  font-size: 12px; color: var(--text-dim);
}

/* Asymmetric grid */
.project-card:nth-child(1) { grid-column: span 7; }
.project-card:nth-child(2) { grid-column: span 5; }
.project-card:nth-child(3) { grid-column: span 4; }
.project-card:nth-child(4) { grid-column: span 4; }
.project-card:nth-child(5) { grid-column: span 4; }
.project-card:nth-child(6) { grid-column: span 5; }
.project-card:nth-child(7) { grid-column: span 7; }

@media (max-width: 900px) {
  .projects-grid { grid-template-columns: 1fr; }
  .project-card { grid-column: span 1 !important; aspect-ratio: 4/3 !important; }
}

/* ============================================
   CTA BAND
============================================ */
.cta-band {
  padding: 100px 0;
  background: var(--accent);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-band .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 700px;
}
.cta-band .btn-primary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--bg);
}
.cta-band .btn-primary:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* ============================================
   CONTACT
============================================ */
.contact { padding: 120px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.05; margin-bottom: 20px;
}
.contact-left > p {
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 60px;
  max-width: 440px;
}
.contact-info { border-top: 1px solid var(--border); }
.info-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.info-label {
  font-family: var(--font-display);
  font-size: 12px; color: var(--text-dim);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.info-value { font-size: 16px; transition: color 0.3s var(--ease); }
a.info-value:hover { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dim);
}
.field input, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  padding: 14px 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s var(--ease);
  resize: none;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--accent); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .info-item { grid-template-columns: 1fr; gap: 6px; }
}

/* ============================================
   FOOTER
============================================ */
.footer {
  padding: 80px 0 30px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.footer-tag { color: var(--text-dim); font-size: 13px; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px; color: var(--text-dim);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 20px; font-weight: 500;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px; color: var(--text-dim);
  font-family: var(--font-display); letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   REVEAL ANIMATION
============================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================
   SERVICE DETAIL PAGE
============================================ */
.service-hero {
  min-height: 80vh;
  padding: 160px var(--pad) 80px;
  position: relative;
  display: flex; flex-direction: column; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.service-hero-inner { max-width: var(--container); margin: 0 auto; width: 100%; }
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 12px;
  color: var(--text-dim); letter-spacing: 0.1em;
  margin-bottom: 40px; text-transform: uppercase;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text-muted); }
.breadcrumb .current { color: var(--accent); }

.service-num-big {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.service-title-big {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 160px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}
.service-tagline {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--text-dim);
  max-width: 700px;
}

.service-content { padding: 100px 0; }
.service-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 100px;
}
.service-overview-grid h3 {
  font-family: var(--font-display);
  font-size: 13px; color: var(--text-dim);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 16px;
}
.service-overview-grid p {
  font-size: 18px; color: var(--text-dim);
  margin-bottom: 24px;
}
.service-overview-grid p strong { color: var(--text); font-weight: 500; }

.service-capabilities {
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.capability {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.capability-num {
  font-family: var(--font-display);
  font-size: 13px; color: var(--accent);
  letter-spacing: 0.1em;
}
.capability h4 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  margin-bottom: 8px;
}
.capability p { color: var(--text-dim); font-size: 15px; }

.service-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 60px 0;
  border-block: 1px solid var(--border);
  margin: 80px 0;
}
.service-stats .stat {
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.service-stats .stat:last-child { border-right: none; }
.service-stats .stat .n {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.service-stats .stat .l {
  font-size: 13px; color: var(--text-dim);
  letter-spacing: 0.05em;
}

.service-projects-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 50px;
}

.experience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.exp-card {
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.exp-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.exp-card .year {
  font-family: var(--font-display);
  font-size: 12px; color: var(--accent);
  letter-spacing: 0.1em;
}
.exp-card h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  margin: 12px 0 8px;
  letter-spacing: -0.01em;
}
.exp-card .loc { font-size: 13px; color: var(--text-dim); margin-bottom: 16px; }
.exp-card p { font-size: 14px; color: var(--text-dim); }

@media (max-width: 900px) {
  .service-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-stats { grid-template-columns: 1fr 1fr; padding: 30px 0; }
  .service-stats .stat { padding: 20px; }
  .experience-list { grid-template-columns: 1fr; }
}

/* ============================================
   ENRICHMENT — hero photo, showcase, partners
============================================ */

/* Hero background photo with ken-burns */
.hero-photo {
  position: absolute; inset: 0;
  background: url('../images/projects/cityzen/1.webp') center/cover no-repeat;
  z-index: 0;
  opacity: 0.72;
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.30) 0%, rgba(10,10,10,0.50) 72%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.30) 45%, rgba(10,10,10,0.05) 100%);
}
@keyframes kenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.2) translate(-2.5%, -2%); }
}
.hero .hero-bg { z-index: 1; }
.hero-inner, .hero-stats { position: relative; z-index: 2; }

/* Project cards — richer hover with zoom + lift */
.project-card { transition: transform 0.5s var(--ease); }
.project-card:hover { transform: translateY(-6px); }
.project-card .ph { transition: transform 1s var(--ease); }
.project-card:hover .ph { transform: scale(1.08); }
.project-card .overlay {
  background: linear-gradient(0deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.25) 55%, transparent 100%);
}

/* ── CINEMATIC SHOWCASE BAND ── */
.showcase {
  position: relative;
  height: clamp(360px, 60vh, 620px);
  overflow: hidden;
  display: flex; align-items: center;
}
.showcase-img {
  position: absolute; inset: -10% 0;
  background: url('../images/projects/buknari/2.webp') center/cover no-repeat;
  will-change: transform;
}
.showcase-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.45) 60%, rgba(10,10,10,0.2) 100%);
  display: flex; align-items: center;
  width: 100%;
}
.showcase-label {
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 18px;
}
.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 700; line-height: 1; letter-spacing: -0.03em;
  max-width: 800px;
}

/* ── PARTNERS ── */
.partners { padding: 120px 0; background: var(--bg-2); }
.partners-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 60px; line-height: 1.05;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.partner-cell {
  display: grid; place-items: center;
  min-height: 130px;
  padding: 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 600; letter-spacing: 0.02em;
  color: var(--text-dim);
  transition: color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}
.partner-cell:hover { color: var(--text); background: var(--bg-3); transform: scale(1.03); }
@media (max-width: 900px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Count-up stat helper */
.stat-num { font-variant-numeric: tabular-nums; }

/* ============================================
   LIGHTBOX GALLERY
============================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage {
  flex: 1; width: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 70px 80px 10px;
  min-height: 0;
}
.lb-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.lb-close {
  position: absolute; top: 24px; right: 32px;
  width: 48px; height: 48px;
  font-size: 32px; line-height: 1; color: var(--text);
  border: 1px solid var(--border-strong); border-radius: 50%;
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.lb-close:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); transform: rotate(90deg); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  font-size: 34px; line-height: 1; color: var(--text);
  border: 1px solid var(--border-strong); border-radius: 50%;
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  z-index: 2;
}
.lb-nav:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-bar {
  display: flex; align-items: center; gap: 18px;
  padding: 6px 0 14px;
  font-family: var(--font-display);
}
.lb-title { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.lb-counter { font-size: 13px; color: var(--accent); letter-spacing: 0.1em; }
.lb-thumbs {
  display: flex; gap: 10px; padding: 0 24px 28px;
  max-width: 100%; overflow-x: auto;
  scrollbar-width: thin;
}
.lb-thumbs img {
  width: 84px; height: 56px; object-fit: cover;
  border-radius: 3px; cursor: pointer;
  opacity: 0.45; flex-shrink: 0;
  border: 2px solid transparent;
  transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.lb-thumbs img:hover { opacity: 0.85; transform: translateY(-2px); }
.lb-thumbs img.active { opacity: 1; border-color: var(--accent); }

/* Project cards become clickable gallery openers */
.project-card[data-gallery] { cursor: pointer; }
.project-card[data-gallery] .overlay::after {
  content: '⊕';
  position: absolute; top: 18px; right: 20px;
  font-size: 22px; color: var(--text);
  opacity: 0; transform: scale(0.6);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.project-card[data-gallery]:hover .overlay::after { opacity: 0.9; transform: scale(1); }

@media (max-width: 700px) {
  .lb-stage { padding: 60px 16px 8px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-nav { width: 44px; height: 44px; font-size: 26px; }
}

/* ============================================
   LOADER DISABLED (per request) — delete this
   one block to re-enable the construction loader.
============================================ */
.loader { display: none !important; }

/* Services section — faint atmospheric backdrop */
#services::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: url('../images/textures/services-bg.png') center/cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
}
#services::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, rgba(10,10,10,0.30) 18%, rgba(10,10,10,0.20) 50%, rgba(10,10,10,0.30) 82%, var(--bg-2) 100%);
  pointer-events: none;
}
#services > .container { position: relative; z-index: 1; }


/* Partner logos (drop files into images/partners/ — else name shows) */
.partner-logo { display: none; max-height: 46px; max-width: 80%; width: auto; object-fit: contain; opacity: 0.55; transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.partner-logo.ok { display: block; }
.partner-logo.ok + .partner-name { display: none; }
.partner-cell:hover .partner-logo { opacity: 1; transform: scale(1.05); }


/* Real GK logo mark (replaces CSS diamond) */
.logo-img { height: 34px; width: auto; display: block; }
.logo-img-footer { height: 52px; }


/* Services shown as static info rows (no navigation) */
.service-card.service-static { grid-template-columns: 80px 1fr auto; cursor: default; }
.service-card.service-static:hover { padding-left: 0; padding-right: 0; }
.service-card.service-static:hover .s-title { transform: none; color: var(--accent); }


/* CTA band title — question on top, call-to-action on its own line */
.cta-band h2 .cta-q,
.cta-band h2 .cta-a { display: block; }

/* Footer services as plain text (no navigation) */
.footer-col .foot-svc { display: block; padding: 5px 0; font-size: 14px; color: var(--text-dim); }


/* Showcase title — question + accent line */
.showcase-q { display: block; }
.showcase-accent { display: block; color: var(--accent); margin-top: 0.12em; }
