/* ═══════════════════════════════════════════════════════
   KLUGER DART — Website Stylesheet
   Palette: Navy #0F1923 · Cream #F5F3EE · White #FFFFFF
═══════════════════════════════════════════════════════ */

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

:root {
  --navy:       #0F1923;
  --navy-mid:   #1A2B3C;
  --navy-light: #243548;
  --cream:      #F5F3EE;
  --cream-alt:  #EDEAE2;
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --text-mid:   #4A4A4A;
  --text-muted: #888888;
  --rule:       #D4D0C8;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --max-w:      1240px;
  --pad-x:      48px;
  --section-y:  100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Utility ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
}

.section-header {
  margin-bottom: 56px;
}
.section-header .sub {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 520px;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s, opacity 0.22s;
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--cream); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-mid); }

/* ── Scroll Animations ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(.22,.61,.36,1),
              transform 0.75s cubic-bezier(.22,.61,.36,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
              box-shadow 0.35s ease;
}
#nav.solid {
  background: rgba(255,253,249,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.nav-logo img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}
#nav.solid .nav-logo img { filter: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links li a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--white); }
#nav.solid .nav-links li a { color: var(--text-mid); }
#nav.solid .nav-links li a:hover { color: var(--navy); }

.nav-cta {
  background: rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 2px;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.25) !important; }
#nav.solid .nav-cta {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: var(--white) !important;
}
#nav.solid .nav-cta:hover { background: var(--navy-mid) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.35s, transform 0.25s, opacity 0.25s;
}
#nav.solid .nav-burger span { background: var(--navy); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-drawer a:hover { opacity: 1; }
.nav-drawer-close {
  position: absolute;
  top: 22px; right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.nav-drawer-close:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroScale 12s ease-out forwards;
}
@keyframes heroScale {
  to { transform: scale(1); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(8,13,20,0.18) 0%,
    rgba(8,13,20,0.35) 45%,
    rgba(8,13,20,0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) 90px;
}

.hero-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 400;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 680px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-desc {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 38px;
  right: var(--pad-x);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.38);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.hero-scroll-indicator::after {
  content: '';
  width: 1px;
  height: 44px;
  background: currentColor;
  animation: pulse 2s 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

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

/* ═══════════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════════ */
.stats-band {
  background: var(--navy);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
}
.stat-item {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 5px;
}
.stat-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
#about {
  padding: var(--section-y) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.about-left {
  position: sticky;
  top: 100px;
}
.about-overline {
  width: 36px;
  height: 2px;
  background: var(--navy);
  margin-bottom: 28px;
}
.about-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  line-height: 1.45;
  color: var(--navy);
}
.about-right p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 22px;
}
.about-right p:last-of-type { margin-bottom: 0; }

.disciplines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}
.disc-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}
.disc-item::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--navy);
}

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
#services {
  padding: var(--section-y) 0;
  background: var(--cream-alt);
}
#services .container { margin-bottom: 0; }

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

.svc-card {
  background: var(--cream-alt);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}
.svc-card:hover { background: var(--white); }

.svc-img {
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.22,.61,.36,1);
}
.svc-card:hover .svc-img img { transform: scale(1.05); }

.svc-body {
  padding: 28px 32px 38px;
  flex: 1;
}
.svc-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(15,25,35,0.28);
  margin-bottom: 12px;
}
.svc-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 12px;
}
.svc-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════════════
   PROJECTS
═══════════════════════════════════════════════════ */
#projects {
  padding: var(--section-y) 0 0;
}

.proj-feature {
  display: flex;
  min-height: 500px;
  margin-top: 2px;
}
.proj-feature.flip { flex-direction: row-reverse; }

.proj-img {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.22,.61,.36,1);
}
.proj-feature:hover .proj-img img { transform: scale(1.04); }

.proj-info {
  flex: 1;
  min-width: 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 68px;
}

.proj-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.proj-info h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 10px;
}
.proj-client {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.proj-info p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.proj-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-lbl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.meta-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* Mini project cards */
.proj-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 2px;
}
.proj-mini {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
}
.proj-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(.22,.61,.36,1);
}
.proj-mini:hover img { transform: scale(1.06); }
.proj-mini-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,13,20,0.88) 0%,
    rgba(8,13,20,0.08) 65%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px 44px;
}
.proj-mini-overlay .proj-tag { color: rgba(255,255,255,0.45); }
.proj-mini-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 8px;
}
.proj-mini-overlay .proj-client {
  color: rgba(255,255,255,0.48);
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════════ */
#timeline {
  background: var(--navy);
  padding: var(--section-y) 0;
  margin-top: 2px;
  overflow: hidden;
}
#timeline .eyebrow { color: rgba(255,255,255,0.3); }
#timeline .section-title { color: var(--white); }

.timeline-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 56px;
  padding-bottom: 8px;
}
.timeline-scroll::-webkit-scrollbar { display: none; }

.timeline-track {
  display: flex;
  position: relative;
  min-width: max-content;
  padding: 0 var(--pad-x) 24px;
}

.timeline-rule {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  top: 56px;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.tl-year {
  flex-shrink: 0;
  width: 220px;
  padding-right: 20px;
  scroll-snap-align: start;
}
.tl-yr-num {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: var(--white);
  margin-bottom: 22px;
}
.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.tl-events {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tl-event {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.4);
  padding-left: 12px;
  border-left: 2px solid rgba(255,255,255,0.1);
}
.tl-event.hi {
  color: rgba(255,255,255,0.85);
  border-left-color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════ */
#gallery {
  padding: var(--section-y) 0;
  background: var(--cream-alt);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: 3px;
  margin-top: 48px;
}
.gal-item {
  overflow: hidden;
  cursor: zoom-in;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.22,.61,.36,1);
}
.gal-item:hover img { transform: scale(1.06); }

.gal-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gal-item:nth-child(2) { grid-column: span 7; }
.gal-item:nth-child(3) { grid-column: span 4; }
.gal-item:nth-child(4) { grid-column: span 3; }
.gal-item:nth-child(5) { grid-column: span 4; }
.gal-item:nth-child(6) { grid-column: span 4; }
.gal-item:nth-child(7) { grid-column: span 4; }

/* ═══════════════════════════════════════════════════
   TEAM
═══════════════════════════════════════════════════ */
#team {
  padding: var(--section-y) 0;
}
.team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
}
.team-card {
  background: var(--cream-alt);
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 52px 56px;
  transition: background 0.25s;
}
.team-card:hover { background: var(--white); }

.team-photo {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {}
.team-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.team-bio {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.team-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.team-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.team-links a:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
#contact {
  background: var(--navy);
  padding: var(--section-y) 0;
}
.contact-wrap {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
#contact .eyebrow { color: rgba(255,255,255,0.3); }
#contact .section-title {
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 18px;
}
.contact-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 52px;
}
.contact-details {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.contact-item {
  flex: 1;
  padding: 26px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.contact-item:last-child { border-right: none; }
.contact-lbl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 8px;
}
.contact-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  display: block;
  transition: opacity 0.2s;
}
.contact-val:hover { opacity: 0.7; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer {
  background: #07101A;
  padding: 36px var(--pad-x);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-logo img {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.35;
}
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.65); }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Tablet
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --pad-x: 32px; --section-y: 80px; }

  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-left { position: static; }

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

  .proj-feature, .proj-feature.flip {
    flex-direction: column;
    min-height: unset;
  }
  .proj-img { height: 380px; flex: none; }
  .proj-info { padding: 44px 44px; }

  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }

  .team-cards { grid-template-columns: 1fr; }
  .team-card { padding: 40px 40px; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Mobile
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --pad-x: 24px; --section-y: 64px; }

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

  .hero-content h1 { font-size: 2.6rem; }
  .hero-scroll-indicator { display: none; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

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

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

  .proj-img { height: 280px; }
  .proj-info { padding: 32px 28px; }
  .proj-mini-row { grid-template-columns: 1fr; }
  .proj-mini { height: 280px; }

  .tl-year { width: 180px; }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gal-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gal-item:nth-child(1) { grid-column: span 2; }

  .team-card { flex-direction: column; padding: 32px 28px; gap: 24px; }

  .contact-details { flex-direction: column; }
  .contact-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .contact-item:last-child { border-bottom: none; }

  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gal-item:nth-child(n) { grid-column: span 1; }
}
