/* ================================================================
   INNOVATION STUDIO LAB
   innovationstudiolab.com
   Design / Build / BIM
   ================================================================ */

/* TOKENS */
:root {
  --onyx:     #0F0F0F;
  --bone:     #F4F1EC;
  --cinnabar: #D85A3C;
  --cinn-d:   #B8472D;
  --steel:    #5A5E63;
  --sand:     #E8E3D8;
  --white:    #FFFFFF;
  --line:     rgba(244,241,236,0.10);
  --line-d:   rgba(15,15,15,0.10);
  --nav-h:    68px;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: none; cursor: pointer; background: none; font: inherit; }
ul { list-style: none; }

/* BASE */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bone);
  color: var(--onyx);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* LAYOUT */
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* FADE-IN ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.in {
  opacity: 1;
  transform: none;
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.at-top {
  background: transparent;
}
.nav.scrolled {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
  flex-shrink: 0;
}
.nav-logo-sq {
  width: 32px; height: 32px;
  background: var(--bone);
  color: var(--onyx);
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-tag {
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 400;
  opacity: 0.5;
  margin-top: 3px;
  font-family: 'Inter', sans-serif;
}

/* Links */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: rgba(244,241,236,0.65);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--bone);
}
.nav-contact-link {
  color: var(--bone) !important;
  border: 1px solid rgba(244,241,236,0.3);
  padding: 8px 18px;
  transition: border-color 0.2s, background 0.2s !important;
}
.nav-contact-link:hover {
  border-color: var(--bone) !important;
  background: rgba(244,241,236,0.08);
}

/* Burger */
.nav-burger {
  display: none;
  width: 30px;
  flex-direction: column;
  gap: 6px;
  padding: 4px 0;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--bone);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: left;
}
.nav-burger.open span:nth-child(1) { transform: rotate(40deg) translateY(-1px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-40deg) translateY(1px); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: var(--onyx);
  z-index: 299;
  padding: 48px;
  flex-direction: column;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  color: var(--bone);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 600;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: block;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-overlay a:hover { opacity: 1; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 0 24px; }
  .wrap { padding: 0 24px; }
}

/* ================================================================
   HERO SLIDESHOW
   ================================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--onyx);
}

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15,15,15,0.25) 0%,
    rgba(15,15,15,0.15) 40%,
    rgba(15,15,15,0.72) 100%
  );
}

/* Hero content */
.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 0 48px 56px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-content-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-left { max-width: 800px; }
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(244,241,236,0.6);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.97;
  letter-spacing: -0.035em;
  color: var(--bone);
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--cinnabar);
}
.hero-sub {
  font-size: 16px;
  color: rgba(244,241,236,0.72);
  max-width: 420px;
  line-height: 1.65;
  margin-top: 20px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}
.hero-ctas {
  display: flex;
  gap: 12px;
}
.hero-cta-link {
  color: var(--bone);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border: 1px solid rgba(244,241,236,0.3);
  transition: border-color 0.2s, background 0.2s;
}
.hero-cta-link:hover { border-color: var(--bone); background: rgba(244,241,236,0.08); }
.hero-cta-link.filled {
  background: var(--cinnabar);
  border-color: var(--cinnabar);
}
.hero-cta-link.filled:hover { background: var(--cinn-d); border-color: var(--cinn-d); }

/* Slide counter */
.hero-counter {
  color: rgba(244,241,236,0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  font-family: 'Space Grotesk', sans-serif;
}
.hero-counter span { color: var(--bone); }

/* Slide dots */
.hero-dots {
  display: flex;
  gap: 8px;
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-dot {
  width: 32px;
  height: 2px;
  background: rgba(244,241,236,0.3);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  padding: 0;
}
.hero-dot.active { background: var(--bone); }

@media (max-width: 768px) {
  .hero-content { padding: 0 24px 48px; }
  .hero-content-inner { flex-direction: column; align-items: flex-start; }
  .hero-right { align-items: flex-start; }
}

/* ================================================================
   STUDIO BAND
   ================================================================ */
.studio-band {
  background: var(--onyx);
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
.studio-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.studio-statement {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 500;
  color: var(--bone);
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 680px;
}
.studio-statement em {
  color: var(--cinnabar);
  font-style: italic;
}
.studio-band-link {
  color: var(--cinnabar);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: gap 0.2s;
}
.studio-band-link:hover { gap: 16px; }

/* ================================================================
   SECTION BASICS
   ================================================================ */
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cinnabar);
  margin-bottom: 32px;
}

/* ================================================================
   FEATURED WORK GRID
   ================================================================ */
.work-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.work-intro h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.work-intro a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cinnabar);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.work-intro a:hover { gap: 14px; }

.featured-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  grid-template-rows: 580px 400px;
  gap: 16px;
}
.featured-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--onyx);
}
.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.featured-card:hover img { transform: scale(1.04); }

.featured-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15,15,15,0.85) 100%);
  opacity: 0;
  transition: opacity 0.5s;
}
.featured-card:hover::after { opacity: 1; }

.featured-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.featured-card:hover .featured-card-info { opacity: 1; transform: none; }
.fc-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cinnabar);
  margin-bottom: 6px;
}
.fc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--bone);
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.featured-card.large .fc-name { font-size: 36px; }
.fc-loc {
  font-size: 12px;
  color: rgba(244,241,236,0.65);
  letter-spacing: 0.04em;
}

/* Always-visible label */
.fc-label {
  position: absolute;
  top: 24px; left: 24px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.6);
}

/* Grid spanning */
.featured-card.tall { grid-row: span 2; }
.featured-card.wide { grid-column: span 2; }

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .featured-card { aspect-ratio: 16/10; }
  .featured-card.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .featured-card-info { opacity: 1; transform: none; }
  .featured-card::after { opacity: 1; }
}

/* ================================================================
   FULL WORK GRID (work page)
   ================================================================ */
.filter-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 18px;
  color: var(--steel);
  border: 1px solid var(--line-d);
  cursor: pointer;
  transition: all 0.2s;
  background: none;
}
.filter-btn:hover { color: var(--onyx); border-color: var(--onyx); }
.filter-btn.active {
  background: var(--onyx);
  color: var(--bone);
  border-color: var(--onyx);
}

.work-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--onyx);
}
.project-card:nth-child(3n+1) { aspect-ratio: 3/4; }
.project-card:nth-child(3n+2) { aspect-ratio: 4/5; }
.project-card:nth-child(3n+3) { aspect-ratio: 4/5; }

.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.project-card:hover img { transform: scale(1.04); }
.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,15,15,0.88) 100%);
}
.project-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
}
.pc-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cinnabar); margin-bottom: 6px;
}
.pc-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; color: var(--bone);
  font-size: 20px; line-height: 1.15;
  margin-bottom: 4px;
}
.pc-meta {
  font-size: 11px;
  color: rgba(244,241,236,0.55);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .work-masonry { grid-template-columns: repeat(2, 1fr); }
  .project-card, .project-card:nth-child(n) { aspect-ratio: 3/4; }
}
@media (max-width: 480px) {
  .work-masonry { grid-template-columns: 1fr; }
}

/* ================================================================
   DISCIPLINES STRIP
   ================================================================ */
.disciplines {
  background: var(--sand);
  padding: 80px 0;
}
.disciplines-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.disciplines-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  padding-top: 6px;
}
.disciplines-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.disc-item {
  padding: 28px 0;
  border-top: 1px solid var(--line-d);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  cursor: default;
  transition: background 0.2s;
}
.disc-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--line-d); }
.disc-item:nth-child(even) { padding-left: 40px; }
.disc-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--cinnabar);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 4px;
}
.disc-body { flex: 1; }
.disc-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.disc-body p { font-size: 13px; color: var(--steel); line-height: 1.6; }

@media (max-width: 900px) {
  .disciplines-inner { grid-template-columns: 1fr; gap: 40px; }
  .disciplines-list { grid-template-columns: 1fr; }
  .disc-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .disc-item:nth-child(even) { padding-left: 0; }
}

/* ================================================================
   ABOUT TEASER
   ================================================================ */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}
.about-img {
  position: relative;
  overflow: hidden;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-teaser:hover .about-img img { transform: scale(1.03); }
.about-body {
  background: var(--onyx);
  color: var(--bone);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-body h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.about-body h2 em { font-style: italic; color: var(--cinnabar); font-weight: 500; }
.about-body p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(244,241,236,0.72);
  margin-bottom: 36px;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cinnabar);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.about-link:hover { gap: 16px; }

@media (max-width: 768px) {
  .about-teaser { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 16/9; }
  .about-body { padding: 48px 32px; }
}

/* ================================================================
   STATS
   ================================================================ */
.stats-strip {
  padding: 72px 0;
  background: var(--bone);
  border-top: 1px solid var(--line-d);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat { padding: 0 24px; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--onyx);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

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

/* ================================================================
   BIM SPOTLIGHT
   ================================================================ */
.bim-section {
  background: var(--onyx);
  color: var(--bone);
  padding: 100px 0;
}
.bim-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.bim-text { }
.bim-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 16px 0 24px;
}
.bim-text h2 em { font-style: italic; color: var(--cinnabar); font-weight: 500; }
.bim-text p { color: rgba(244,241,236,0.68); font-size: 16px; line-height: 1.7; margin-bottom: 36px; }
.bim-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}
.bim-metric {
  border-top: 1px solid rgba(244,241,236,0.15);
  padding-top: 16px;
}
.bim-metric strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.bim-metric small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.45);
}
.bim-visual {
  aspect-ratio: 1;
  background: #111;
  position: relative;
  overflow: hidden;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bim-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(216,90,60,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216,90,60,0.14) 1px, transparent 1px);
  background-size: 24px 24px;
}
.bim-iso {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.bim-iso svg { width: 68%; height: 68%; }
.bim-vtop, .bim-vbot { position: relative; z-index: 2; }
.bim-vtop {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244,241,236,0.55);
  display: flex; justify-content: space-between;
}
.bim-vtop span:last-child { color: var(--cinnabar); }
.bim-vbot {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 28px;
  line-height: 1; color: var(--bone);
}
.bim-vbot small {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 400;
  color: rgba(244,241,236,0.45); margin-top: 6px;
}

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

/* ================================================================
   PROCESS
   ================================================================ */
.process-section {
  background: var(--bone);
  padding: 100px 0;
}
.process-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}
.process-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.process-header h2 em { font-style: italic; color: var(--cinnabar); font-weight: 500; }
.process-header p {
  max-width: 400px;
  font-size: 15px;
  color: var(--steel);
  line-height: 1.65;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line-d);
}
.ps {
  background: var(--bone);
  padding: 36px 24px;
}
.ps-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--cinnabar);
  margin-bottom: 24px; text-transform: uppercase;
}
.ps h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px; font-weight: 600;
  line-height: 1.15; margin-bottom: 12px;
}
.ps p { font-size: 13px; color: var(--steel); line-height: 1.65; }

@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-header { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   SERVICES PAGE
   ================================================================ */
.services-section {
  padding: 100px 0;
}
.services-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding: 64px 0;
  border-top: 1px solid var(--line-d);
  align-items: start;
}
.services-block-title {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.services-block-title h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.services-block-title p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.65;
}
.services-block-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cinnabar);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.service-item {
  padding: 20px 24px;
  background: white;
  border-top: 2px solid var(--onyx);
  font-size: 14px;
  color: var(--onyx);
  line-height: 1.5;
  transition: background 0.2s, color 0.2s;
  cursor: default;
}
.service-item:hover { background: var(--onyx); color: var(--bone); }

@media (max-width: 900px) {
  .services-block { grid-template-columns: 1fr; gap: 36px; }
  .services-block-title { position: static; }
  .services-list { grid-template-columns: 1fr; }
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-section {
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.contact-left h2 em { font-style: italic; color: var(--cinnabar); font-weight: 500; }
.contact-left p {
  font-size: 16px;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-details { }
.cd-item {
  padding: 18px 0;
  border-top: 1px solid var(--line-d);
}
.cd-item:last-child { border-bottom: 1px solid var(--line-d); }
.cd-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cinnabar);
  margin-bottom: 4px;
}
.cd-value { font-size: 15px; color: var(--onyx); }
.cd-value a:hover { color: var(--cinnabar); }

/* Form */
.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--line-d);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--onyx);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--cinnabar); }
.form-field textarea { min-height: 128px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--onyx);
  color: var(--bone);
  padding: 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--cinnabar); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ================================================================
   PAGE HEADER (inner pages)
   ================================================================ */
.page-header {
  background: var(--onyx);
  color: var(--bone);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(216,90,60,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216,90,60,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-header > .wrap { position: relative; z-index: 1; }
.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-top: 16px;
}
.page-header h1 em { font-style: italic; color: var(--cinnabar); font-weight: 500; }
.page-header p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(244,241,236,0.65);
  max-width: 520px;
  margin-top: 20px;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}
.about-intro-img {
  position: relative;
  overflow: hidden;
}
.about-intro-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-intro-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-intro-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-intro-text p {
  font-size: 15px;
  color: var(--steel);
  line-height: 1.75;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.value-card {
  padding: 36px 28px;
  border-top: 2px solid var(--cinnabar);
}
.value-num {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--cinnabar);
  text-transform: uppercase; margin-bottom: 16px;
}
.value-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 600;
  margin-bottom: 12px;
}
.value-card p { font-size: 14px; color: var(--steel); line-height: 1.65; }

.team-section { padding: 100px 0; background: var(--sand); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.team-card { }
.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--onyx);
  margin-bottom: 20px;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: grayscale(20%);
}
.team-card:hover .team-photo img { transform: scale(1.04); filter: grayscale(0%); }
.team-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 17px;
  margin-bottom: 2px;
}
.team-role {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cinnabar);
}

@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; }
  .about-intro-img { aspect-ratio: 16/9; }
  .about-intro-text { padding: 48px 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   FINAL CTA
   ================================================================ */
.cta-section {
  background: var(--cinnabar);
  color: var(--bone);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,241,236,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,236,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
}
.cta-section > .wrap { position: relative; z-index: 1; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.97;
  letter-spacing: -0.03em;
}
.cta-inner h2 em { font-style: italic; font-weight: 500; }
.cta-inner p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(244,241,236,0.88);
  margin-bottom: 32px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--onyx);
  color: var(--bone);
  padding: 20px 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: background 0.2s, gap 0.2s;
}
.cta-btn:hover { background: #1a1a1a; gap: 20px; }
.cta-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(244,241,236,0.65);
}

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

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bone);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.t-card {
  background: white;
  padding: 36px 32px;
  border-top: 2px solid var(--cinnabar);
}
.t-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--onyx);
  margin-bottom: 28px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line-d);
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.t-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 14px;
  margin-bottom: 2px;
}
.t-role { color: var(--steel); font-size: 11px; }

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

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--onyx);
  color: var(--bone);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(244,241,236,0.5);
  line-height: 1.65;
  margin-top: 20px;
  max-width: 300px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
}
.footer-logo-sq {
  width: 32px; height: 32px;
  background: var(--bone); color: var(--onyx);
  display: grid; place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.01em;
}
.footer-logo-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1;
}
.footer-logo-tag {
  font-size: 9px; letter-spacing: 0.14em;
  font-weight: 400; opacity: 0.45; margin-top: 3px;
  font-family: 'Inter', sans-serif;
}
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cinnabar); margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(244,241,236,0.55);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--bone); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(244,241,236,0.35);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ================================================================
   UTILITIES
   ================================================================ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
