@font-face {
  font-family: 'Asgalt';
  src: url('Assets/fonts/Asgalt-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════
   TOKENS
═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --white:   #ffffff;
  --off:     #f5f4f2;
  --light:   #e0deda;
  --mid:     #9a9790;
  --dark:    #3c3a36;
  --black:   #111110;
  --terra:   #ffffff;
  --terra-d: #464544;
  --terra-l: #FAECE7;
  --sans:    'Inter', sans-serif;
  --serif:   'Georgia', serif;
  --w-title:   700;
  --w-heading: 600;
  --w-body:    400;
}
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--sans); font-weight: 400; letter-spacing: -0.04em; line-height: 1.08;
}
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em {
  font-weight: var(--w-heading); font-style: normal;
}
p { font-size: 1.35rem; font-weight: 400; line-height: 1.2; letter-spacing: -0.03em; }

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 52px; transition: padding 0.4s, background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled { padding: 8px 52px; background: rgba(17,17,16,0.9); backdrop-filter: blur(15px); border-bottom-color: rgba(255,255,255,0.08); }
/* scaleX + translateY compensates for the Asgalt font's unusual baseline/width */
.nav-logo { font-family: 'Asgalt', sans-serif; font-size: 3.0rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); text-decoration: none; cursor: pointer; display: inline-flex; align-items: center; line-height: 1; transform: scaleX(1.25) translateY(6px); transform-origin: left center; -webkit-text-stroke: 0.25px var(--white); position: relative; z-index: 201; }
.nav-logo span { color: var(--terra); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a, .nav-links button {
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); text-decoration: none; background: none; border: none;
  cursor: pointer; font-family: var(--sans); position: relative; padding-bottom: 2px; transition: color 0.25s;
}
.nav-links a::after, .nav-links button::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--white); transition: width 0.3s ease; }
.nav-links a:hover, .nav-links button:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links button:hover::after { width: 100%; }

/* ═══════════════════════════════
   BURGER
═══════════════════════════════ */
.burger { display: none; flex-direction: column; justify-content: space-between; width: 28px; height: 14px; cursor: pointer; position: relative; z-index: 201; background: none; border: none; padding: 0; }
.b-bar { display: block; height: 1px; background: var(--white); }
.b-bar:nth-child(2) { width: 18px; }
.b-close { display: none; font-size: 1.6rem; line-height: 1; color: var(--white); font-family: var(--sans); font-weight: 300; transform: translateY(-4px); }
.menu-open { overflow: hidden; }
.menu-open .b-bar { display: none; }
.menu-open .b-close { display: block; }

/* ═══════════════════════════════
   MENU OVERLAY
═══════════════════════════════ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 190; background: var(--black);
  display: flex; flex-direction: column; justify-content: center; padding: 0 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.45s ease;
}
.menu-open .menu-overlay { opacity: 1; pointer-events: all; }
.menu-nav-links { list-style: none; margin-bottom: 56px; }
.menu-nav-links li { overflow: hidden; border-top: 1px solid #1e1e1c; }
.menu-nav-links li:last-child { border-bottom: 1px solid #1e1e1c; }
.menu-nav-links a, .menu-nav-links button {
  display: flex; align-items: baseline; justify-content: space-between; padding: 22px 0; width: 100%;
  text-decoration: none; color: var(--white); font-family: var(--sans);
  font-size: clamp(1.8rem, 5vw, 3.6rem); font-weight: var(--w-title); letter-spacing: -0.03em; line-height: 1;
  background: none; border: none; cursor: pointer; text-align: left;
  transform: translateY(110%); transition: transform 0.55s cubic-bezier(0.16,1,0.3,1), color 0.2s;
}
/* Staggered slide-in for each menu item */
.menu-open .menu-nav-links li:nth-child(1) a,
.menu-open .menu-nav-links li:nth-child(1) button { transform: translateY(0); transition-delay: 0.04s; }
.menu-open .menu-nav-links li:nth-child(2) a,
.menu-open .menu-nav-links li:nth-child(2) button { transform: translateY(0); transition-delay: 0.09s; }
.menu-open .menu-nav-links li:nth-child(3) a,
.menu-open .menu-nav-links li:nth-child(3) button { transform: translateY(0); transition-delay: 0.14s; }
.menu-open .menu-nav-links li:nth-child(4) a,
.menu-open .menu-nav-links li:nth-child(4) button { transform: translateY(0); transition-delay: 0.19s; }
.menu-nav-links a:hover, .menu-nav-links button:hover { color: var(--mid); }

.menu-num { font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.18em; color: #444; align-self: center; font-weight: 400; }
.menu-footer { display: flex; justify-content: space-between; align-items: flex-end; }
.menu-contact p { font-size: 0.7rem; letter-spacing: 0.06em; color: var(--mid); line-height: 2.1; }
.menu-contact a { color: var(--mid); text-decoration: none; }
.menu-contact a:hover { color: var(--white); }
.menu-social { display: flex; gap: 20px; }
.menu-social a { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: #3a3a38; text-decoration: none; transition: color 0.2s; }
.menu-social a:hover { color: var(--white); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero { position: relative; width: 100%; height: 100vh; min-height: 640px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0.32) 100%); }
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 0 52px 52px; display: flex; align-items: flex-end; justify-content: space-between; }
.hero-left { flex: 1; }
.hero-statement-text { font-family: var(--sans); font-size: clamp(1.3rem, 2.2vw, 2.3rem); font-weight: 600; color: var(--white); line-height: 1.3; letter-spacing: -0.02em; text-align: left; }
.hero-right-ui { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; max-width: 340px; }
.hero-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.45); text-align: right; }
.hero-title { font-family: var(--sans); font-size: clamp(0.92rem, 2.1vw, 2.02rem); font-weight: var(--w-body); letter-spacing: -0.03em; line-height: 1.05; color: var(--white); text-align: right; white-space: nowrap; }
.hero-title em { font-style: normal; }
.hero-slide-nav { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; margin-top: 8px; }
.slide-counter { font-size: 0.6rem; letter-spacing: 0.18em; color: rgba(255,255,255,0.35); }
.slide-counter b { color: var(--white); font-weight: 300; }
.slide-dots { display: flex; gap: 8px; }
.dot { width: 22px; height: 1px; background: rgba(255,255,255,0.25); border: none; padding: 0; cursor: pointer; transition: width 0.3s, background 0.3s; }
.dot.active { width: 40px; background: var(--white); }
.hero-scroll-wrap { position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-line { width: 1px; height: 44px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.7); animation: drip 2s infinite; }
@keyframes drip { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }
.scroll-label { font-size: 0.54rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════
   INTRO
═══════════════════════════════ */
.intro { background: var(--white); padding: 50px 50px 40px; color: var(--black); }
.label { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); margin-bottom: 20px; }
.intro-top { margin-bottom: 28px; }
.display-h { font-family: var(--sans); font-size: clamp(3.6rem, 6.75vw, 7.8rem); font-weight: 400; letter-spacing: -0.04em; color: var(--black); line-height: 1.08; }
.display-h em { font-size: 6.5rem; font-weight: var(--w-heading); font-style: normal; }
.intro-top .display-h:first-child { font-size: clamp(2.6rem, 5vw, 5.8rem); }
.intro-body-wrap { display: grid; grid-template-columns: 1fr 520px 1fr; }
.intro-body-inner { grid-column: 2; }
.intro-body-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; margin-bottom: 28px; }
.intro-body { font-size: 1.2rem; font-weight: 400; line-height: 1.55; letter-spacing: -0.03em; color: #000000; }
.intro-body + .intro-body { margin-top: 0.5em; }
.intro-about-btn {
  grid-column: 2; display: inline-block; margin-top: 36px;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--black); text-decoration: none;
  background: transparent; border: 1px solid var(--black);
  padding: 14px 32px;
  position: relative; overflow: hidden; z-index: 0;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.intro-about-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--black);
  transform: scaleX(0); transform-origin: left;
  opacity: 0;
  /* hover-out: fade away, then silently snap transform back */
  transition: opacity 0.4s ease, transform 0s 0.4s;
  z-index: -1;
}
.intro-about-btn:hover { color: var(--white); }
.intro-about-btn:hover::before {
  transform: scaleX(1); opacity: 1;
  /* hover-in: slide from left */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.line-wrap { display: block; overflow: hidden; }
.line { display: block; transform: translateY(105%); transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.split-lines.on .line,
.hero-lines.on .line { transform: translateY(0); }
.hero-right-ui .line-wrap { align-self: flex-end; }
.hero-right-ui .line-wrap:has(.hero-title) { padding-bottom: 0.2em; margin-bottom: -0.2em; }

/* ═══════════════════════════════
   PROCESS
═══════════════════════════════ */
.process-sec { background: var(--white); padding: 80px 52px 96px; }
.process-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.process-card { background: #f5f5f7; border-radius: 20px; padding: 40px 36px 48px; display: flex; flex-direction: column; }
.process-icon { width: 42px; height: 42px; color: var(--black); margin-bottom: 32px; }
.process-icon svg { width: 100%; height: 100%; }
.process-num { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(0,0,0,0.28); margin-bottom: 14px; }
.process-card-title { font-family: var(--sans); font-size: clamp(1.5rem, 2vw, 2rem); font-weight: 600; color: var(--black); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 14px; }
.process-card-desc { font-size: 0.92rem; color: rgba(0,0,0,0.48); line-height: 1.75; font-weight: 300; }

/* ═══════════════════════════════
   DISC — dark section header pattern
═══════════════════════════════ */
.disc { background: var(--black); padding: 96px 52px; }
.disc-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid #1a1a18; }
.disc-n { font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase; color: #3c3c3a; margin-bottom: 8px; }
.disc-title { font-family: var(--sans); font-size: clamp(1.5rem, 2.4vw, 2.6rem); font-weight: var(--w-title); letter-spacing: -0.03em; color: var(--white); line-height: 1; }
.disc-title em { font-style: normal; text-transform: uppercase; color: var(--terra); }
.disc-desc { font-size: 0.7rem; line-height: 1.8; color: #3e3e3c; text-align: right; max-width: 220px; }
/* Light-background variant — overrides colours for sections on --off bg */
.disc-head--light { border-bottom-color: var(--light); }
.disc-head--light .disc-n { color: var(--mid); }
.disc-head--light .disc-title { color: var(--black); }
.disc-head--light .disc-desc { color: var(--mid); }

/* ═══════════════════════════════
   PROJECT GRIDS (dark interior portfolio)
═══════════════════════════════ */
.g2 { display: grid; grid-template-columns: 7fr 5fr; gap: 3px; }
.g3v { display: grid; grid-template-columns: 5fr 4fr 3fr; gap: 3px; }
.g3v + .g2 { margin-top: 3px; }
.p { position: relative; overflow: hidden; cursor: pointer; background: #0e0e0c; }
.g2 .p { aspect-ratio: 4/3; }
.g3v .p { aspect-ratio: 3/4; }
.p img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.7); transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s; }
.p:hover img { transform: scale(1.07); filter: brightness(0.45); }
.p-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 26px 22px; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%); }
.p-cat { font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 5px; transition: color 0.3s; }
.p:hover .p-cat { color: rgba(255,255,255,0.65); }
.p-name { font-family: var(--sans); font-size: 1.2rem; font-weight: var(--w-heading); letter-spacing: -0.02em; color: var(--white); line-height: 1.2; }
.p-loc { font-size: 0.6rem; color: rgba(255,255,255,0.3); margin-top: 3px; transition: color 0.3s; }
.p:hover .p-loc { color: rgba(255,255,255,0.55); }
.p-arr { position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translate(4px,-4px); transition: opacity 0.3s, transform 0.3s; }
.p:hover .p-arr { opacity: 1; transform: translate(0,0); }
.p-arr svg { width: 13px; height: 13px; }

/* ═══════════════════════════════
   DESIGN STUDIO HERO (design page)
═══════════════════════════════ */
/* padding-top clears the fixed nav */
.design-hero-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; background: var(--off); padding-top: 80px; }
.design-hero-text { padding: 96px 52px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--light); }
.design-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--terra-l); color: var(--terra-d); font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 14px; margin-bottom: 24px; width: fit-content; }
.ds-h1 { font-family: var(--sans); font-size: clamp(2rem, 3.5vw, 3.6rem); font-weight: var(--w-title); letter-spacing: -0.03em; color: var(--black); line-height: 1.12; margin-bottom: 22px; }
.ds-h1 em { font-style: normal; text-transform: uppercase; }
.design-hero-text p { font-size: 0.82rem; color: var(--mid); line-height: 1.9; max-width: 380px; }
.design-hero-visual { position: relative; overflow: hidden; }
.design-hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.85); transition: transform 0.8s ease; }
.design-hero-visual:hover img { transform: scale(1.04); }
/* CTA buttons */
.ds-btn-group { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.btn-terra { background: var(--terra); color: var(--white); border: none; padding: 13px 28px; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.btn-terra:hover { background: var(--terra-d); }
.btn-outline-light { display: inline-block; background: none; color: var(--mid); border: 1px solid var(--light); padding: 13px 28px; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: color 0.3s, border-color 0.3s; }
.btn-outline-light:hover { color: var(--dark); border-color: var(--dark); }

/* ═══════════════════════════════
   DESIGN STUDIO TEASER (main page)
═══════════════════════════════ */
.ds-teaser { background: var(--black); padding: 96px 52px; }
.ds-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.ds-teaser-img { display: block; position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; text-decoration: none; }
.ds-teaser-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.55); transition: transform 0.8s ease, filter 0.5s; }
.ds-teaser-img:hover img { transform: scale(1.06); filter: brightness(0.38); }
.ds-teaser-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; }
.ds-teaser-tag { font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; display: block; }
.ds-teaser-h3 { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--white); line-height: 1.1; }
.ds-teaser-h3 em { font-style: normal; text-transform: uppercase; }
.ds-teaser-caption { font-size: 0.7rem; color: rgba(255,255,255,0.35); margin-top: 10px; line-height: 1.7; }
.ds-teaser-copy { background: #0d0d0b; display: flex; flex-direction: column; justify-content: center; padding: 52px; border: 1px solid #1a1a18; }
.ds-teaser-eyebrow { font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra); margin-bottom: 24px; display: block; }
.ds-teaser-heading { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.ds-teaser-heading em { font-style: normal; text-transform: uppercase; }
.ds-teaser-body { font-size: 0.78rem; color: #3e3e3c; line-height: 1.9; margin-bottom: 36px; }
.btn-ghost { display: inline-block; width: fit-content; background: none; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.55); font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 12px 28px; cursor: pointer; text-decoration: none; transition: border-color 0.3s, color 0.3s; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.45); color: var(--white); }

/* ═══════════════════════════════
   TEAM
═══════════════════════════════ */
.team-section { background: var(--black); padding: 96px 52px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.team-card { background: #161614; overflow: hidden; }
.team-avatar { width: 100%; aspect-ratio: 3/2; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.65) saturate(0.7); transition: filter 0.5s, transform 0.6s; }
.team-card:hover .team-avatar img { filter: brightness(0.5) saturate(0.5); transform: scale(1.04); }
.team-info { padding: 24px 26px 28px; }
.team-name { font-family: var(--sans); font-size: 1.3rem; font-weight: var(--w-heading); letter-spacing: -0.02em; color: var(--white); margin-bottom: 4px; }
.team-role { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra); margin-bottom: 14px; }
.team-desc { font-size: 0.72rem; color: #3e3e3c; line-height: 1.75; }

/* ═══════════════════════════════
   STYLES
═══════════════════════════════ */
.styles-section { background: var(--off); padding: 96px 52px; }
.styles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.style-card { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; }
.style-card img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.65); transition: transform 0.7s ease, filter 0.4s; }
.style-card:hover img { transform: scale(1.07); filter: brightness(0.4); }
.style-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px 26px; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%); }
.style-tag { font-size: 0.54rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 7px; }
.style-name { font-family: var(--sans); font-size: 1.5rem; font-weight: var(--w-heading); letter-spacing: -0.02em; color: var(--white); line-height: 1.15; }
.style-name em { font-style: normal; text-transform: uppercase; }
.style-desc { font-size: 0.65rem; color: rgba(255,255,255,0.35); line-height: 1.7; margin-top: 8px; opacity: 0; transform: translateY(6px); transition: opacity 0.35s, transform 0.35s; }
.style-card:hover .style-desc { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════
   PROCESS
═══════════════════════════════ */
.process-section { background: var(--black); padding: 96px 52px; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: #1a1a18; border: 1px solid #1a1a18; margin-top: 48px; }
.proc-cell { background: var(--black); padding: 40px 32px; }
.proc-num { font-size: 0.54rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terra); margin-bottom: 20px; }
.proc-title { font-family: var(--sans); font-size: 1.3rem; font-weight: var(--w-heading); letter-spacing: -0.02em; color: var(--white); margin-bottom: 14px; line-height: 1.2; }
.proc-title em { font-style: normal; text-transform: uppercase; }
.proc-body { font-size: 0.72rem; color: #3e3e3c; line-height: 1.8; }

/* ═══════════════════════════════
   PARTNERS
═══════════════════════════════ */
.partners-sec { background: var(--black); padding: 48px 52px 72px; }
.partners-hd { padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 52px; }
.partners-hd .display-h { font-size: clamp(1.8rem, 3.375vw, 3.9rem); color: var(--white); }
.partners-hd .display-h em { font-size: inherit; font-weight: inherit; }
.partners-logos { display: flex; align-items: center; justify-content: center; gap: 140px; flex-wrap: wrap; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.partner-logo { display: flex; align-items: center; justify-content: center; padding: 16px; text-decoration: none; opacity: 0.4; filter: grayscale(100%); transition: opacity 0.3s ease, filter 0.3s ease; }
.partner-logo img { width: 100%; height: 60px; object-fit: contain; display: block; }

/* ═══════════════════════════════
   CONTACT V3 — Typographic 3-col
═══════════════════════════════ */
.cs3 { background: var(--white); border-top: 2px solid var(--black); }
.cs3-cols { display: grid; grid-template-columns: 30% 40% 30%; min-height: 480px; }

/* LEFT */
.cs3-left { border-right: 1px solid var(--light); padding: 28px 44px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.cs3-items { display: flex; flex-direction: column; }
.cs3-item { padding: 18px 0; border-top: 1px solid var(--light); cursor: pointer; }
.cs3-item:first-child { border-top: none; padding-top: 0; }
.cs3-title { display: flex; align-items: baseline; gap: 10px; }
.cs3-t-name { transition: color 0.2s; }
.cs3-item:hover .cs3-t-name { color: var(--terra); }
.cs3-t-num { font-size: 0.8rem;font-weight: 200; letter-spacing: 0.2em; color: var(--light); width: 18px; flex-shrink: 0; transition: color 0.25s; }
.cs3-t-name { font-family: var(--sans); font-size: clamp(2.7rem, 3.12vw, 3.6rem); font-weight: 600; letter-spacing: -0.01em; line-height: 1; color: var(--black); }
.cs3-item.active .cs3-t-num { color: var(--black); }

/* Mobile sub-links — hidden on desktop */
.cs3-subnav { display: none; }


/* MIDDLE */
.cs3-mid { border-right: 1px solid var(--light); padding: 28px 48px; position: relative; }
.cs3-panel { position: absolute; top: 28px; left: 48px; right: 48px; display: flex; flex-direction: column; gap: 4px; pointer-events: none; }
.cs3-panel.active { pointer-events: all; }
.cs3-panel a { font-family: var(--sans); font-size: clamp(1.3rem, 2.4vw, 2.6rem); font-weight: 500; letter-spacing: -0.04em; color: var(--light); text-decoration: none; line-height: 1.28; display: block; opacity: 0; transform: translateY(14px); transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1), color 0.2s; }
.cs3-panel.active a { opacity: 1; transform: translateY(0); }
.cs3-panel.active a:nth-child(1) { transition-delay: 0s; }
.cs3-panel.active a:nth-child(2) { transition-delay: 0.06s; }
.cs3-panel.active a:nth-child(3) { transition-delay: 0.12s; }
.cs3-panel.active a:nth-child(4) { transition-delay: 0.18s; }
.cs3-panel.active a:nth-child(5) { transition-delay: 0.24s; }
.cs3-panel a:hover { color: var(--black); }

/* RIGHT */
.cs3-right { padding: 28px 52px; display: flex; flex-direction: column; gap: 36px; }
.cs3-right-label { font-family: var(--sans); font-size: clamp(2.16rem, 2.5vw, 2.88rem); font-weight: 600; letter-spacing: -0.01em; line-height: 1; color: var(--black); display: flex; gap: 8px; }
.cs3-right-label span { color: var(--black); }
.cs3-info { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cs3-info li { display: flex; gap: 14px; align-items: flex-start; font-size: 1rem; color: var(--dark); line-height: 1.65; font-weight: 400; }
.cs3-info b { font-weight: 800; color: var(--black); font-size: 0.78rem; letter-spacing: 0.1em; flex-shrink: 0; width: 14px; margin-top: 3px; }
.cs3-info a { color: var(--dark); text-decoration: none; border-bottom: 1px solid var(--light); transition: border-color 0.2s; }
.cs3-info a:hover { border-color: var(--black); }

/* Dark contact variant (index.html) */
.cs3--dark { background: linear-gradient(to bottom, var(--black) 60%, #0a0a09 100%); border-top: none; }
.cs3--dark .cs3-cols { grid-template-columns: 1fr 1.3fr; min-height: 460px; }
.cs3--dark .cs3-right { padding: 80px 52px; gap: 28px; }
#contact-map { width: 100%; height: 100%; min-height: 460px; background: var(--black); position: relative; z-index: 0; }
/* Leaflet dark overrides */
.leaflet-container { background: #111110 !important; font-family: var(--sans); }
#contact-map .leaflet-tile-pane { filter: brightness(1.5); }
.leaflet-control-zoom a { background: #1c1c1a !important; color: rgba(255,255,255,0.7) !important; border-color: #2a2a28 !important; }
.leaflet-control-zoom a:hover { background: #2a2a28 !important; color: #fff !important; }
.leaflet-control-attribution { background: rgba(0,0,0,0.45) !important; color: rgba(255,255,255,0.25) !important; font-size: 0.52rem !important; }
.leaflet-control-attribution a { color: rgba(255,255,255,0.35) !important; }
.map-pin { width: 14px !important; height: 14px !important; background: #fff !important; border: none !important; border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,255,255,0.18), 0 0 0 11px rgba(255,255,255,0.07); cursor: pointer; }
.cs3--dark .cs3-right-label { font-size: clamp(1.8rem, 3.375vw, 3.9rem); font-weight: 400; letter-spacing: -0.04em; color: var(--white); line-height: 1.08; }
.cs3--dark .cs3-info li { color: rgba(255,255,255,0.5); }
.cs3--dark .cs3-info b { color: rgba(255,255,255,0.28); }
.cs3--dark .cs3-info a { color: rgba(255,255,255,0.5); border-bottom-color: rgba(255,255,255,0.15); }
.cs3--dark .cs3-info a:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════
   LOGO BAND
═══════════════════════════════ */
.logo-band { background: var(--white); border-top: 1px solid var(--light); padding: 0 30px; overflow: hidden; display: flex; align-items: center; }
.logo-band-mark { font-family: 'Asgalt', sans-serif; font-weight: 400; font-size: 17vw; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); text-decoration: none; display: block; width: 33.33vw; transform: scaleX(1.25) translateY(20px); transform-origin: left center; -webkit-text-stroke: 2.5px var(--black); line-height: 0.8; white-space: nowrap; }
.logo-band-mark span { color: var(--terra); }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer { background: #0a0a09; padding: 36px 52px 28px; border-top: 1px solid #161614; }
.f-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #1c1c1a; }
.f-logo { font-family: 'Asgalt'; font-weight: 400; font-size: 1.76rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--white); transform: scaleX(1.25) translateY(6px); -webkit-text-stroke: 0.10px var(--white); display: inline-block; }
.f-logo span { color: var(--terra); }
.f-top-right { display: flex; align-items: center; gap: 20px; }
.f-socials { display: flex; gap: 8px; }
.f-social-btn { width: 36px; height: 36px; border-radius: 50%; background: #1e1e1c; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); text-decoration: none; transition: background 0.2s, color 0.2s; flex-shrink: 0; }
.f-social-btn:hover { background: #2e2e2c; color: #fff; }
.f-social-btn svg { width: 15px; height: 15px; fill: currentColor; display: block; }
.f-back-top { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 0.68rem; letter-spacing: 0.1em; cursor: pointer; font-family: var(--sans); padding: 0; transition: color 0.2s; white-space: nowrap; }
.f-back-top:hover { color: #fff; }
.f-bottom { display: flex; align-items: center; justify-content: space-between; }
.f-links { display: flex; gap: 28px; list-style: none; }
.f-links a { font-size: 0.88rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.f-links a:hover { color: rgba(255,255,255,0.8); }
.f-copy { font-size: 0.62rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.25); }

/* ═══════════════════════════════
   PROJECTS
═══════════════════════════════ */
.proj-sec { background: var(--white); padding: 48px 52px 96px; }
.proj-hd { display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--light); margin-bottom: 52px; }
.proj-tag { font-size: 0.54rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--mid); display: block; margin-bottom: 10px; }
.proj-cnt { font-size: 0.54rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); }
/* Row grids — spec: large-left / large-right / equal, all 24px gap */
.proj-r1 { display: grid; grid-template-columns: 1.65fr 1fr; gap: 24px; }
.proj-r2 { display: grid; grid-template-columns: 1fr 1.65fr; gap: 24px; margin-top: 80px; }
.proj-r3 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 80px; }
.proj-footer { display: flex; justify-content: center; padding-top: 64px; line-height: 1.2; letter-spacing: -0.5em; }
.proj-all-btn { font-family: var(--sans); font-size: 1.4rem; font-weight: 700; letter-spacing: -0.03em; color: var(--black); text-decoration: none; position: relative; padding-bottom: 2px; }
.proj-all-btn::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--black); transition: width 0.3s ease; }
.proj-all-btn:hover::after { width: 100%; }

.proj-sec article { padding: 0; cursor: pointer; }
.wc-img { position: relative; overflow: hidden; }
.wc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.wc:hover .wc-img img { transform: scale(1.04); }

/* Aspect ratios */
.wide   { aspect-ratio: 16/10; }
.tall   { aspect-ratio: 3/4; }
.square { aspect-ratio: 4/3; }

/* Hover overlay — gradient fades in, text slides up from below */
.overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,9,0.82) 0%, rgba(10,10,9,0.15) 55%, transparent 100%);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 32px;
  pointer-events: none;
}
.wc:hover .overlay { opacity: 1; }
.overlay-content { transform: translateY(12px); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); width: 100%; }
.wc:hover .overlay-content { transform: translateY(0); }

/* Text inside overlay */
.wc-name { font-family: var(--sans); font-size: 1rem; font-weight: var(--w-heading); letter-spacing: -0.02em; color: var(--white); line-height: 1.2; display: block; }
.wc-name em { font-style: normal; text-transform: uppercase; }
.wc-desc { font-size: 0.58rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); margin-bottom: 4px; display: block; }
/* Below-image caption: number · name · year — slides up and fades out on hover */
.wc-caption { display: flex; align-items: baseline; padding: 11px 0 0; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease; }
.wc:hover .wc-caption { transform: translateY(-10px); opacity: 0; }
.wc-cap-num { font-size: 0.6rem; letter-spacing: 0.18em; color: var(--mid); margin-right: 14px; flex-shrink: 0; }
.wc-cap-name { font-family: var(--sans); font-size: 0.94rem; font-weight: var(--w-heading); letter-spacing: -0.01em; color: var(--black); flex: 1; line-height: 1.2; }
.wc-cap-name em { font-style: normal; text-transform: uppercase; }
.wc-cap-year { font-size: 0.6rem; letter-spacing: 0.12em; color: var(--mid); margin-left: auto; padding-left: 14px; flex-shrink: 0; }

/* ═══════════════════════════════
   SCROLL REVEAL
═══════════════════════════════ */
.rv { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.rv.on { opacity: 1; transform: none; }
.rv-scale { opacity: 0; transform: translateY(24px) scale(0.97); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.rv-scale.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }
/* Per-card reveal — used in projects grid */
.reveal { opacity: 0; transform: translateY(56px); transition: opacity 1.1s cubic-bezier(0.16,1,0.3,1), transform 1.1s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.14s; }
.wc.reveal { transform: none; }
.wc.reveal.visible { transform: none; }

/* ═══════════════════════════════
   PROJECT DETAIL PAGE
═══════════════════════════════ */
.pp-hero { position: relative; width: 100%; height: calc(100vh + 400px); min-height: 500px; overflow: hidden; }
.pp-hero-img { position: absolute; inset: 0; overflow: hidden; }
.pp-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.8); will-change: transform, filter; }

.pp-back--hero {
  position: absolute; bottom: calc(240px + 48px); right: 52px; z-index: 5;
  color: rgba(255,255,255,0.6);
}
.pp-back--hero:hover { color: #fff; }

.pp-hero-title {
  position: absolute; bottom: 420px; left: 52px; right: 52px; z-index: 2;
}
.pp-hero-title .pp-title { font-size: clamp(2.88rem, 5.4vw, 6.24rem); color: #fff; }

.pp-hero-details {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  padding: 48px 52px 100px;
}
.pp-hero-col { display: flex; flex-direction: column; justify-content: flex-start; gap: 16px; }
.pp-hero-col:nth-child(1) { grid-column: 3; grid-row: 1; }
.pp-hero-col:nth-child(2) { grid-column: 4; grid-row: 1; }
.pp-hero-details .pp-meta-label { font-size: 0.6rem; color: rgba(255,255,255,0.5); }
.pp-hero-details .pp-meta-val { font-size: 1.08rem; color: #fff; }
.pp-hero-details .pp-desc { font-size: 0.96rem; color: rgba(255,255,255,0.65); line-height: 1.75; padding-top: 0; }

.pp-header {
  background: var(--off); padding: 64px 52px;
  display: flex; align-items: flex-start; justify-content: space-between;
  border-bottom: 1px solid var(--light);
}
.pp-header-left { display: flex; flex-direction: column; max-width: 58%; }
.pp-back {
  background: none; border: none; cursor: pointer; font-family: var(--sans);
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: var(--mid); padding: 0; margin-bottom: 28px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.pp-back:hover { color: var(--dark); }
.pp-num { font-size: 0.52rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--mid); display: block; margin-bottom: 14px; }
.pp-title {
  font-family: var(--sans); font-size: clamp(2.4rem, 4.5vw, 5.2rem);
  font-weight: var(--w-title); letter-spacing: -0.04em; color: var(--black); line-height: 1.04;
}
.pp-title em { font-style: normal; text-transform: uppercase; color: var(--terra); }

.pp-header-right { display: flex; flex-direction: column; gap: 28px; min-width: 220px; padding-top: 8px; }
.pp-meta { display: flex; flex-direction: column; gap: 5px; }
.pp-meta-label { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); }
.pp-meta-val { font-size: 0.9rem; font-weight: var(--w-heading); color: var(--black); letter-spacing: -0.01em; }

.pp-desc-wrap {
  background: var(--off); display: grid; grid-template-columns: 1fr 2fr 1fr;
  padding: 0 52px 80px;
}
.pp-desc {
  grid-column: 2; padding-top: 48px;
  font-size: 1.0rem; font-weight: 400; line-height: 1.85; color: #6e6c68;
}

.pp-intro {
  position: relative; z-index: 1;
  background: var(--black);
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 80px 52px;
}
.pp-intro .pp-desc {
  grid-column: 2;
  font-size: 1.35rem; font-weight: 400; line-height: 1.2;
  letter-spacing: -0.03em; color: var(--white); padding-top: 0;
}

.pp-gallery { background: var(--black); display: flex; flex-direction: column; gap: 3px; padding: 3px 156px; }
.pp-full { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.pp-full img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.pp-split-img { overflow: hidden; aspect-ratio: 4/3; }
.pp-split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pp-single { width: 68%; margin: 0 auto; overflow: hidden; }
.pp-single img { width: 100%; display: block; }
.pp-portrait { width: 50%; margin: 0 auto; overflow: hidden; aspect-ratio: 2/3; }
.pp-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pp-split-img--portrait { aspect-ratio: 2/3; }
.pp-mixed { display: grid; grid-template-columns: 3fr 2fr; gap: 3px; }
.pp-mixed-land { overflow: hidden; position: relative; }
.pp-mixed-land img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.pp-mixed-port { overflow: hidden; }
.pp-mixed-port img { width: 100%; display: block; }
.pp-next {
  background: #080807; padding: 80px 52px;
  border-top: 1px solid #1a1a18; display: flex; justify-content: flex-end; align-items: flex-end;
}
.pp-next-btn {
  background: none; border: none; cursor: pointer; text-align: right; text-decoration: none;
  font-family: var(--sans); display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.pp-next-btn--back { text-align: left; align-items: flex-start; }
.pp-next-btn--back .pp-next-name {
  font-size: clamp(1.2rem, 2.2vw, 2.2rem); font-weight: 400; color: #b0b0ae;
}
.pp-next-btn--back:hover .pp-next-name { color: var(--white); }
.pp-next-label { font-size: 0.52rem; letter-spacing: 0.18em; text-transform: uppercase; color: #5a5a58; }
.pp-next-name {
  font-family: var(--sans); font-size: clamp(1.8rem, 3.5vw, 3.6rem);
  font-weight: var(--w-title); letter-spacing: -0.03em; color: var(--white);
  line-height: 1; transition: color 0.3s;
}
.pp-next-name em { font-style: normal; text-transform: uppercase; }
.pp-next-btn:hover .pp-next-name { color: var(--terra); }

/* ═══════════════════════════════
   ABOUT PAGE
═══════════════════════════════ */
.pp-hero--about { height: 100vh; }
.pp-hero--about .pp-hero-img img { filter: brightness(0.35); }
.about-hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: flex-end; justify-content: center;
}
.about-hero-wordmark {
  font-family: 'Asgalt', sans-serif;
  font-size: clamp(7rem, 38vw, 52rem);
  font-weight: 400; letter-spacing: 0.05em; line-height: 1;
  color: var(--white); margin: 0; white-space: nowrap;
  transform: scaleX(1.25); transform-origin: center;
  -webkit-text-stroke: 1px var(--white);
}
.about-hero-tag {
  position: absolute; bottom: 48px; right: 52px; z-index: 3;
  display: flex; flex-direction: column; gap: 6px; text-align: right;
}
.about-hero-tag span {
  font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); font-family: var(--sans);
}

.about-stats {
  background: var(--off); display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--light);
}
.about-stat { padding: 40px 52px; border-right: 1px solid var(--light); }
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-family: var(--sans); font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: var(--w-title); letter-spacing: -0.05em;
  color: var(--black); line-height: 1; margin-bottom: 8px;
}
.about-stat-label {
  font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--mid);
}

.about-proc { background: var(--white); padding: 96px 0 0; }
.about-proc-head { padding: 0 52px 48px; }
.about-proc-rows { display: flex; flex-direction: column; gap: 3px; }
.about-pg-r2 { display: grid; grid-template-columns: 1.65fr 1fr; gap: 3px; }
.about-pg-r2.rev { grid-template-columns: 1fr 1.65fr; }
.about-pg-r3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.about-pg-img { overflow: hidden; position: relative; }
.about-pg-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.about-pg-img:hover img { transform: scale(1.04); }
.about-pg-img.wide { aspect-ratio: 16/10; }
.about-pg-img.sq { aspect-ratio: 4/3; }
.about-pg-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); opacity: 0; transition: opacity 0.4s;
}
.about-pg-img:hover .about-pg-caption { opacity: 1; }

.about-vals { background: var(--black); padding: 96px 52px; }
.about-vals-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; margin-top: 56px;
}
.about-val { padding: 48px 36px 52px; background: #101010; transition: background 0.35s; }
.about-val:hover { background: #161614; }
.about-val-num {
  display: block; font-size: 0.54rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: #3a3a38; margin-bottom: 36px;
}
.about-val-title {
  font-size: clamp(1.5rem, 2.4vw, 2.4rem); font-weight: 400;
  color: var(--white); letter-spacing: -0.04em; line-height: 1.08; margin-bottom: 18px;
}
.about-val-title em { font-weight: var(--w-heading); font-style: normal; }
.about-val-body { font-size: 1.35rem; line-height: 1.2; letter-spacing: -0.03em; color: rgba(255,255,255,0.38); }

/* ── About — offer (what partners get) ── */
.about-offer { background: var(--black); padding: 96px 52px; border-top: 1px solid #1e1e1c; }
.about-offer-inner { display: grid; grid-template-columns: 5fr 7fr; gap: 96px; align-items: start; }
.about-offer-left { position: sticky; top: 100px; }
.about-offer-eyebrow {
  font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #3c3c3a; margin-bottom: 32px; font-family: var(--sans);
}
.about-offer-title {
  font-size: clamp(2.2rem, 3.8vw, 4.4rem); font-weight: 400;
  letter-spacing: -0.04em; color: var(--white); line-height: 1.05; margin-bottom: 32px;
}
.about-offer-title em { font-weight: var(--w-heading); font-style: normal; }
.about-offer-desc {
  font-size: 0.8rem; line-height: 1.85; color: rgba(255,255,255,0.28);
  font-weight: 400; max-width: 300px;
}
.about-offer-item {
  display: grid; grid-template-columns: 44px 1fr; gap: 24px;
  padding: 28px 0; border-top: 1px solid #1a1a18; align-items: start;
}
.about-offer-item:last-child { border-bottom: 1px solid #1a1a18; }
.about-offer-num {
  font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #3a3a38; padding-top: 3px; font-family: var(--sans);
}
.about-offer-item-title {
  font-size: 1.05rem; font-weight: var(--w-heading);
  letter-spacing: -0.02em; color: var(--white); margin-bottom: 8px; line-height: 1.2;
}
.about-offer-item-body {
  font-size: 0.78rem; line-height: 1.8; color: rgba(255,255,255,0.3); font-weight: 400;
}

/* ═══════════════════════════════
   GALLERY PAGE
═══════════════════════════════ */
.gallery-pg-hero {
  padding: 140px 52px 56px; background: var(--black);
  border-bottom: 1px solid #1a1a18;
}
.gallery-pg-eyebrow {
  display: block; font-size: 0.58rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 20px;
}
.gallery-pg-title {
  font-size: clamp(3.2rem, 6vw, 7.2rem); font-weight: 400;
  letter-spacing: -0.04em; line-height: 1.08; color: var(--white);
}
.gallery-pg-title em { font-weight: var(--w-heading); font-style: normal; }
.gallery-pg-sub {
  font-size: 1.35rem; line-height: 1.2; letter-spacing: -0.03em;
  color: var(--mid); margin-top: 20px; max-width: 480px;
}

.gallery-filter {
  display: flex; align-items: stretch;
  padding: 0 52px; background: var(--black); border-bottom: 1px solid #1a1a18;
}
.gallery-filter-btn {
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 400; background: none; border: none;
  border-bottom: 2px solid transparent; color: rgba(255,255,255,0.35);
  padding: 18px 24px; cursor: pointer; transition: color 0.25s, border-color 0.25s;
}
.gallery-filter-btn:hover { color: rgba(255,255,255,0.7); }
.gallery-filter-btn.active { color: var(--white); border-bottom-color: var(--white); }

.gallery-grid {
  display: flex; flex-direction: row; align-items: stretch;
  height: 72vh; min-height: 480px;
  overflow-x: auto; overflow-y: hidden;
  gap: 3px; padding: 3px; background: var(--black);
  cursor: grab; scrollbar-width: none; -ms-overflow-style: none;
}
.gallery-grid::-webkit-scrollbar { display: none; }
.gallery-grid.dragging { cursor: grabbing; user-select: none; }
.gallery-item {
  flex: 0 0 auto; height: 100%;
  position: relative; overflow: hidden;
}
.gallery-item img {
  height: 100%; width: auto; display: block; filter: brightness(0.88);
  transition: transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(0.5); }
.gallery-item-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.38s;
}
.gallery-item:hover .gallery-item-info { opacity: 1; }
.gallery-item-cat {
  display: block; font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 5px;
}
.gallery-item-label {
  display: block; font-size: 1.25rem; font-weight: 400;
  letter-spacing: -0.02em; color: var(--white); line-height: 1.2;
}
.gallery-item.hidden { display: none; }

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 900; background: rgba(0,0,0,0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lb.open { opacity: 1; pointer-events: all; }
.lb-img { max-height: 84vh; max-width: 88vw; object-fit: contain; display: block; }
.lb-caption {
  margin-top: 14px; font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); text-align: center;
}
.lb-close {
  position: fixed; top: 24px; right: 32px; font-size: 1.5rem;
  color: rgba(255,255,255,0.45); background: none; border: none;
  cursor: pointer; line-height: 1; transition: color 0.2s; z-index: 901; padding: 8px;
}
.lb-close:hover { color: var(--white); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.35);
  font-size: 2rem; cursor: pointer; padding: 24px 20px;
  transition: color 0.2s; z-index: 901;
}
.lb-prev { left: 8px; }
.lb-next { right: 8px; }
.lb-prev:hover, .lb-next:hover { color: var(--white); }
.lb-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 0.54rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 860px) {
  nav, nav.scrolled { padding: 7px 20px; }
  .nav-logo { font-size: 2.6rem; transform: scaleX(1.25) translateY(5px); }
  .nav-links { display: none; }
  .burger { display: flex; height: 12px; width: 24px; }
  .hero-content { padding: 0 24px 36px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-right-ui { align-items: flex-start; max-width: 100%; }
  .hero-right-ui .line-wrap { align-self: flex-start; }
  .hero-label { text-align: left; }
  .hero-title { text-align: left; white-space: normal; }
  .hero-slide-nav { align-items: flex-start; }
  .hero-scroll-wrap { left: auto; right: 24px; bottom: 36px; transform: none; align-items: flex-end; }
  .intro { padding: 48px 24px 40px; }
  .process-sec { padding: 64px 24px 72px; }
  .process-cards { grid-template-columns: 1fr; gap: 12px; }
  .intro-top { margin-bottom: 36px; }
  .display-h { font-size: clamp(2.86rem, 13vw, 4.42rem); }
  .display-h em { font-size: inherit; font-weight: 600; }
  .intro-body-wrap { grid-template-columns: 1fr; }
  .intro-body-inner { grid-column: 1; }
  .intro-body { font-size: 1rem; }
  .design-hero-inner { grid-template-columns: 1fr; }
  .design-hero-text { padding: 64px 24px; border-right: none; border-bottom: 1px solid var(--light); }
  .design-hero-visual { min-height: 260px; }
  .disc, .team-section, .styles-section, .process-section { padding: 72px 24px; }
  .g2, .g3v { grid-template-columns: 1fr; }
  .g2 .p, .g3v .p { aspect-ratio: 4/3; }
  .team-grid, .styles-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .cs3-cols { grid-template-columns: 1fr; min-height: unset; }
  .cs3-left { border-right: none; border-bottom: 1px solid var(--light); padding: 36px 24px; }
  .cs3-item { padding: 14px 0; }
  .cs3-t-name { font-size: clamp(0.9rem, 3vw, 1.1rem); }
  .cs3-subnav { display: flex; flex-direction: column; margin-top: 10px; padding-left: 28px; }
  .cs3-subnav a { font-size: 0.82rem; font-weight: 300; color: var(--mid); text-decoration: none; line-height: 2.2; transition: color 0.18s; }
  .cs3-subnav a:hover { color: var(--dark); }
  .cs3-mid { display: none; }
  .cs3-info li { font-size: 0.82rem; }
  .cs3-right { padding: 36px 24px; }
  .cs3--dark .cs3-cols { grid-template-columns: 1fr; min-height: unset; }
  .cs3--dark .cs3-right { padding: 48px 24px; }
  #contact-map { min-height: 280px; }
  .logo-band { padding: 0; justify-content: center; align-items: center; }
  .logo-band-mark { font-size: 28vw; width: auto; transform: scaleX(1.25) translateY(13px); transform-origin: center center; -webkit-text-stroke: 1.7px var(--black); line-height: 0.8; text-align: center; }
  footer { padding: 28px 24px 22px; }
  .f-top { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 18px; padding-bottom: 18px; }
  .f-top-right { width: 100%; justify-content: space-between; }
  .f-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .f-links { flex-wrap: wrap; gap: 12px 20px; }
  .ds-teaser { padding: 64px 24px; }
  .ds-teaser-grid { grid-template-columns: 1fr; }
  .partners-sec { padding: 48px 24px 56px; }
  .partners-logos { gap: 20px; }
  .partner-logo { flex: 1 1 100px; max-width: 140px; }
  .proj-sec { padding: 64px 24px 72px; }
  .proj-r1, .proj-r2, .proj-r3 { grid-template-columns: 1fr; gap: 16px; }
  .proj-r2, .proj-r3 { margin-top: 40px; }
  .tall { aspect-ratio: 4/3; }
  /* Mobile: overlay always on, caption hidden */
  .overlay { opacity: 1; }
  .overlay-content { transform: translateY(0); }
  .wc-caption { display: none; }

  /* Project detail — mobile */
  .pp-back--hero { bottom: 24px; right: 24px; }
  .pp-hero-col:nth-child(2) { grid-column: 1; grid-row: auto; }
  .pp-desc-wrap { grid-template-columns: 1fr; padding: 0 24px 60px; }
  .pp-desc { grid-column: 1; }
  .pp-split { grid-template-columns: 1fr; }
  .pp-split-img { aspect-ratio: 4/3; }
  .pp-single { width: 100%; }
  .pp-portrait { width: 100%; }
  .pp-next { padding: 60px 24px; }

  /* Gallery page — mobile */
  .gallery-pg-hero { padding: 120px 24px 48px; }
  .gallery-filter { padding: 0 24px; overflow-x: auto; }
  .gallery-grid { height: 55vh; min-height: 320px; }
  .lb-prev, .lb-next { padding: 16px 12px; font-size: 1.4rem; }

  /* About page — mobile */
  .about-hero-content { bottom: 48px; left: 24px; right: 24px; }
  .about-hero-tag { right: 24px; bottom: 36px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stat { padding: 28px 24px; }
  .about-stat:nth-child(even) { border-right: none; }
  .about-stat:nth-child(n+3) { border-top: 1px solid var(--light); }
  .about-offer { padding: 72px 24px; }
  .about-offer-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-offer-left { position: static; }
  .about-offer-desc { max-width: 100%; }
  .about-offer-item { grid-template-columns: 36px 1fr; gap: 16px; padding: 22px 0; }
  .about-pg-r2, .about-pg-r2.rev { grid-template-columns: 1fr; }
  .about-pg-r3 { grid-template-columns: 1fr 1fr; }
  .about-vals { padding: 72px 24px; }
  .about-vals-grid { grid-template-columns: 1fr; }
  .about-proc-head { padding: 0 24px 36px; }

  /* ── Font size adjustments for mobile ── */

  /* Global paragraph: step down from 1.35rem desktop default */
  p { font-size: 1.1rem; }

  /* Hero statement: loosen the clamp min on narrow screens */
  .hero-statement-text { font-size: clamp(1.1rem, 4.5vw, 2.3rem); }

  /* Project cards: overlay always-on, so caption text must be readable */
  .wc-desc { font-size: 0.72rem; }
  .wc-name { font-size: 1.05rem; }

  /* Project next/back nav: side-by-side at narrow widths */
  .pp-next-name { font-size: 1.3rem; }
  .pp-next-label { font-size: 0.65rem; }

  /* Value cards: body text too large in single-col layout */
  .about-val-body { font-size: 1.05rem; }

  /* Gallery page: subtitle steps down relative to large title */
  .gallery-pg-sub { font-size: 1.1rem; }

  /* Gallery filter tabs: too small for mobile tap targets */
  .gallery-filter-btn { font-size: 0.72rem; }

  /* Expertise hero title: 4rem min = 64px is too dominant on phones */
  .exp-hero-title { font-size: clamp(2.6rem, 8vw, 9.6rem); }

  /* Intro button grid fix */
  .intro-about-btn { grid-column: 1; }

  /* Project detail hero — mobile */
  .pp-hero { height: 100vh; }
  .pp-hero-title { bottom: 360px; left: 24px; right: 24px; }
  .pp-hero-details { grid-template-columns: 1fr; gap: 16px; padding: 20px 24px 36px; }
  .pp-hero-col:nth-child(1) { grid-column: 1; grid-row: auto; }

  /* Project detail header — mobile */
  .pp-header { flex-direction: column; padding: 48px 24px; gap: 32px; }
  .pp-header-left { max-width: 100%; }
  .pp-header-right { min-width: unset; width: 100%; padding-top: 0; }

  /* Project gallery — remove wide side padding */
  .pp-gallery { padding: 3px 0; }

  /* Project intro (3-col grid) — mobile */
  .pp-intro { grid-template-columns: 1fr; padding: 60px 24px; }
  .pp-intro .pp-desc { grid-column: 1; font-size: 1.0rem; }

  /* Mixed image layout — mobile */
  .pp-mixed { grid-template-columns: 1fr; }
  .pp-mixed-land { aspect-ratio: 4/3; }
  .pp-mixed-land img { position: relative; top: auto; height: 100%; width: 100%; }

  /* Projects page — mobile */
  .page-projects { overflow: auto; }

  .projects-hscroll {
    flex-direction: column; align-items: stretch;
    height: auto; overflow: visible;
    gap: 0; cursor: default;
  }

  .proj-intro-panel {
    width: 100%; height: auto;
    flex-direction: column; justify-content: flex-start;
    padding: 96px 24px 32px;
    border-right: none; border-bottom: 1px solid #222220;
    gap: 20px;
  }

  .proj-filter-bar { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .proj-filter-btn { padding: 9px 18px; font-size: 0.62rem; }

  .proj-intro-title { font-size: 2.6rem; }

  .proj-divider {
    width: 100%; height: auto;
    flex-direction: row; align-items: center;
    padding: 14px 24px;
    border-right: none; border-bottom: 1px solid #222220;
    gap: 14px;
  }
  .proj-divider-num { margin-bottom: 0; }
  .proj-divider-name { writing-mode: horizontal-tb; transform: none; }

  .projects-hscroll .gallery-item { width: 100%; border-bottom: 1px solid #1a1a1a; }
  .projects-hscroll .gallery-item-img { height: 44vw; width: 100%; }
  .projects-hscroll .gallery-item-img img { width: 100%; height: 100%; object-fit: cover; }
  .projects-hscroll .gallery-item-info { padding: 14px 24px 28px; }
  .projects-hscroll .gallery-item-label { font-size: 1.05rem; }

  .projects-hscroll:has(.gallery-item:hover) .gallery-item { transform: none; opacity: 1; }
  .projects-hscroll .gallery-item:hover { transform: none !important; opacity: 1 !important; }
  .projects-hscroll .gallery-item:hover .gallery-item-img img { transform: none; filter: brightness(0.88); }
}

/* ═══════════════════════════════
   PROJECTS PAGE
═══════════════════════════════ */
.page-projects { overflow: hidden; }

.projects-hscroll {
  display: flex; flex-direction: row; align-items: center;
  height: 100vh; overflow-x: auto; overflow-y: hidden;
  background: var(--black); gap: 12px;
  cursor: grab; scrollbar-width: none; -ms-overflow-style: none;
}
.projects-hscroll::-webkit-scrollbar { display: none; }
.projects-hscroll.dragging { cursor: grabbing; user-select: none; }

.proj-intro-panel {
  flex: 0 0 auto; width: 260px; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  padding: 0 36px 48px; border-right: 1px solid #222220; gap: 22px;
}
.proj-filter-bar { display: flex; flex-direction: column; gap: 6px; }
.proj-filter-btn {
  background: none; border: 1px solid #333; color: #666;
  font-family: var(--sans); font-size: 0.56rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 14px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s; text-align: left;
}
.proj-filter-btn:hover { border-color: #888; color: #aaa; }
.proj-filter-btn.active { border-color: var(--white); color: var(--white); }

.proj-intro-title {
  font-family: var(--sans); font-size: 2rem; font-weight: 800;
  letter-spacing: -0.04em; color: var(--white); line-height: 1.1;
}
.proj-intro-title em { font-style: normal; text-transform: uppercase; }

.proj-divider {
  flex: 0 0 auto; width: 90px; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 16px 48px; border-right: 1px solid #222220;
}
.proj-divider-num {
  display: block; font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 10px;
}
.proj-divider-name {
  font-family: var(--sans); font-size: 0.91rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

@keyframes fadeZoom {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes wipeUp {
  from { clip-path: inset(60% 0 0 0); }
  to   { clip-path: inset(0% 0 0 0); }
}

.projects-hscroll .gallery-item {
  display: flex; flex-direction: column;
  height: auto; overflow: visible; cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.35s;
}
.projects-hscroll:has(.gallery-item:hover) .gallery-item {
  transform: scale(0.93) translateY(10px); opacity: 0.45;
}
.projects-hscroll .gallery-item:hover {
  transform: scale(1.05) translateY(-14px) !important; opacity: 1 !important;
}
.projects-hscroll .gallery-item-img {
  height: 52vh; flex: 0 0 auto; overflow: hidden; position: relative;
  animation: wipeUp 2.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.projects-hscroll .gallery-item:nth-child(4) .gallery-item-img  { animation-delay: 0.1s; }
.projects-hscroll .gallery-item:nth-child(5) .gallery-item-img  { animation-delay: 0.2s; }
.projects-hscroll .gallery-item:nth-child(6) .gallery-item-img  { animation-delay: 0.3s; }
.projects-hscroll .gallery-item:nth-child(8) .gallery-item-img  { animation-delay: 0.4s; }
.projects-hscroll .gallery-item:nth-child(9) .gallery-item-img  { animation-delay: 0.5s; }
.projects-hscroll .gallery-item:nth-child(10) .gallery-item-img { animation-delay: 0.6s; }
.projects-hscroll .gallery-item-img img {
  height: 100%; width: auto; display: block; filter: brightness(0.88);
  transition: transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
  pointer-events: none;
}
.projects-hscroll .gallery-item:hover .gallery-item-img img {
  transform: scale(1.06); filter: brightness(1);
}
.projects-hscroll .gallery-item-info { position: static; opacity: 1; padding: 10px 0 0; background: none; }
.projects-hscroll .gallery-item-label { font-size: 1.25rem; color: var(--white); }

/* ═══════════════════════════════
   EXPERTISE PAGE
═══════════════════════════════ */

/* Hero */
.exp-hero {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--black);
  padding: 168px 52px 80px;
  will-change: transform, opacity;
  transform-origin: center center;
  border-bottom: 1px solid #1a1a18;
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.exp-hero-eyebrow {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 22px;
}
.exp-hero-title {
  font-size: clamp(4rem, 8.5vw, 9.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  color: var(--white);
  line-height: 0.96;
  margin-bottom: 24px;
}
.exp-hero-title em { font-weight: 700; font-style: normal; }
.exp-hero-sub {
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.36);
  max-width: 460px;
  font-weight: 300;
}

/* Quick-jump nav */
.exp-hero-nav {
  display: flex;
  border-top: 1px solid #1a1a18;
  margin-top: 8px;
}
.exp-hero-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 20px 0 20px 20px;
  text-decoration: none;
  border-right: 1px solid #1a1a18;
  transition: background 0.25s;
}
.exp-hero-nav-item:last-child { border-right: none; }
.exp-hero-nav-item:hover { background: #0d0d0b; }
.exp-hero-nav-num {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2a2a28;
}
.exp-hero-nav-name {
  font-size: 0.912rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  transition: color 0.25s;
}
.exp-hero-nav-item:hover .exp-hero-nav-name { color: var(--white); }

/* Service sections */
.exp-svc {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 3fr;
  border-bottom: 1px solid #1a1a18;
  align-items: start;
  background: var(--black);
}
.exp-svc--rev .exp-svc-text { order: 2; }
.exp-svc--rev .exp-svc-imgs { order: 1; }
#exp-interior { grid-template-columns: 3fr 2fr; }

.exp-svc-text {
  position: sticky;
  top: 80px;
  padding: 80px 52px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--black);
  border-right: 1px solid #1a1a18;
}
.exp-svc--rev .exp-svc-text { border-right: none; border-left: 1px solid #1a1a18; }

.exp-svc-text .rv { transition-delay: 0.3s; }
.exp-svc-text .rv.d1 { transition-delay: 0.4s; }
.exp-svc-text .rv.d2 { transition-delay: 0.5s; }
.exp-svc-text .rv.d3 { transition-delay: 0.6s; }

.exp-svc-tag {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.exp-svc-num {
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #252523;
}
.exp-svc-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}
.exp-svc-head {
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1.04;
}
.exp-svc-head em { font-weight: 700; font-style: normal; }
.exp-svc-desc {
  font-size: 0.98rem;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.38);
  max-width: 400px;
  font-weight: 300;
}
.exp-capabilities {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #1a1a18;
  padding-top: 22px;
}
.exp-cap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid #161614;
  font-size: 0.8rem;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.42);
  font-weight: 300;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.exp-capabilities.on .exp-cap { opacity: 1; transform: none; }
.exp-capabilities.on .exp-cap:nth-child(1) { transition-delay: 0.60s; }
.exp-capabilities.on .exp-cap:nth-child(2) { transition-delay: 0.68s; }
.exp-capabilities.on .exp-cap:nth-child(3) { transition-delay: 0.76s; }
.exp-capabilities.on .exp-cap:nth-child(4) { transition-delay: 0.84s; }
.exp-capabilities.on .exp-cap:nth-child(5) { transition-delay: 0.92s; }
.exp-capabilities.on .exp-cap:nth-child(6) { transition-delay: 1.00s; }
.exp-cap::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: #2a2a28;
  border-radius: 50%;
  flex-shrink: 0;
}
.exp-svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
}
.exp-proj-count {
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #282826;
}
.exp-proj-link {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}
.exp-proj-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.38);
  transition: width 0.3s ease;
}
.exp-proj-link:hover { color: var(--white); }
.exp-proj-link:hover::after { width: 100%; }

/* Image panel — vertical editorial */
.exp-svc-imgs {
  display: flex;
  flex-direction: column;
}
.exp-svc-img--hero {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.exp-svc-imgs-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 20px clamp(12px, 3%, 20px) 100px;
}
.exp-svc-imgs-flow .exp-svc-img {
  overflow: hidden;
}
.exp-svc-imgs-flow .exp-svc-img:nth-child(1) { aspect-ratio: 3/4; margin-top: 32px; }
.exp-svc-imgs-flow .exp-svc-img:nth-child(2) { aspect-ratio: 5/6; width: 70%; margin-left: auto; align-self: start; }
.exp-svc-imgs-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 20px 0;
  margin-top: -40px;
}
.exp-svc-imgs-pair .exp-svc-img { overflow: hidden; }
.exp-svc-imgs-pair .exp-svc-img:nth-child(1) { aspect-ratio: 16/9; width: 86%; justify-self: start; align-self: center; margin-left: 6%; }
.exp-svc-imgs-pair .exp-svc-img:nth-child(2) { aspect-ratio: 4/3; width: 92%; justify-self: end; }
.exp-svc-img--wide { width: 70%; aspect-ratio: 16/9; overflow: hidden; margin: 80px auto 52px; }

/* Interior — flow overrides (landscape-leaning, opposite rhythm to construction) */
#exp-interior .exp-svc-imgs-flow { padding: 20px 20px 40px; margin-top: 20px; }
#exp-interior .exp-svc-imgs-flow .exp-svc-img:nth-child(1) { aspect-ratio: 4/3; width: 82%; margin-left: 70px; margin-top: 20px; }
#exp-interior .exp-svc-imgs-flow .exp-svc-img:nth-child(2) { aspect-ratio: 4/5; width: 85%; margin-left: auto; margin-right: 20px; align-self: end; }

/* Interior — accent: single portrait offset left */
.exp-svc-img--accent { width: 56%; aspect-ratio: 4/3; overflow: hidden; margin: 20px auto 20px; }

/* Interior — duo: asymmetric 3:2 columns */
.exp-svc-imgs-duo { display: grid; grid-template-columns: 3fr 2fr; gap: 16px; padding: 20px 20px 0; margin-top: 20px; }
.exp-svc-imgs-duo .exp-svc-img { overflow: hidden; }
.exp-svc-imgs-duo .exp-svc-img:nth-child(1) { aspect-ratio: 16/10; align-self: end; }
.exp-svc-imgs-duo .exp-svc-img:nth-child(2) { aspect-ratio: 3/4; align-self: start; }

/* Interior — wide bottom */
.exp-svc-img--wide2 { width: 64%; aspect-ratio: 16/9; overflow: hidden; margin: 24px auto 52px; }

/* ── Light theme (expertise page) ── */
.exp-page { background: var(--white); }
.exp-page nav:not(.scrolled) { background: rgba(17,17,16,0.9); backdrop-filter: blur(15px); border-bottom-color: rgba(255,255,255,0.08); }
.exp-page .exp-hero { background: var(--white); border-bottom-color: #e5e4e1; }
.exp-page .exp-hero-eyebrow { color: #9a9790; }
.exp-page .exp-hero-title { color: var(--black); }
.exp-page .exp-hero-sub { color: rgba(0,0,0,0.45); }
.exp-page .exp-svc { background: var(--white); border-bottom-color: #e5e4e1; }
.exp-page .exp-svc-text { background: var(--white); border-right-color: #e5e4e1; }
.exp-page .exp-svc--rev .exp-svc-text { border-left-color: #e5e4e1; }
.exp-page .exp-svc-num { color: #c8c7c4; }
.exp-page .exp-svc-label { color: #9a9790; }
.exp-page .exp-svc-head { color: var(--black); }
.exp-page .exp-svc-desc { color: rgba(0,0,0,0.5); }
.exp-page .exp-capabilities { border-top-color: #e5e4e1; }
.exp-page .exp-cap { border-bottom-color: #eeecea; color: rgba(0,0,0,0.55); }
.exp-page .exp-cap::before { background: #ccc; }
.exp-page .exp-proj-link { color: rgba(0,0,0,0.35); }
.exp-page .exp-proj-link::after { background: rgba(0,0,0,0.4); }
.exp-page .exp-proj-link:hover { color: var(--black); }
.exp-page .exp-cta { background: var(--off); border-top-color: #e5e4e1; }
.exp-page .exp-svc-img img { filter: brightness(1); }
.exp-page footer { background: var(--white); border-top: 1px solid #e5e4e1; }

.exp-svc-img img {
  width: 100%;
  height: 115%;
  top: -7.5%;
  position: relative;
  object-fit: cover;
  display: block;
  filter: brightness(0.78);
  transition: filter 0.5s;
  will-change: transform;
}

/* Scroll progress bar */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: rgba(255,255,255,0.5);
  z-index: 300;
  pointer-events: none;
}

/* CTA */
.exp-cta {
  background: var(--off);
  padding: 96px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border-top: 2px solid var(--black);
}
.exp-cta-eyebrow {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 14px;
}
.exp-cta-heading {
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1.08;
}
.exp-cta-heading em { font-weight: 700; font-style: normal; }
.exp-cta-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  background: var(--black);
  padding: 18px 36px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.3s;
}
.exp-cta-btn:hover { background: #2a2a28; }

/* Expertise responsive */
@media (max-width: 860px) {
  .exp-hero { padding: 120px 24px 56px; gap: 36px; }
  .exp-hero-nav { display: none; }

  .exp-svc { grid-template-columns: 1fr; min-height: unset; }
  .exp-svc-text { order: 1; padding: 52px 24px; border-right: none; border-left: none; gap: 22px; }
  .exp-svc-imgs { order: 2; position: sticky; top: 0; z-index: 0; }
  .exp-svc-text { position: static; }
  .exp-svc-imgs-flow { gap: 12px; padding: 12px; grid-template-columns: 1fr; }
  .exp-svc-imgs-flow .exp-svc-img:nth-child(1) { margin-top: 0; }
  .exp-svc-imgs-flow .exp-svc-img:nth-child(2) { position: static; width: 100%; margin-left: 0; align-self: auto; }

  /* Interior section id override (higher specificity than .exp-svc) */
  #exp-interior { grid-template-columns: 1fr; }
  #exp-interior .exp-svc-imgs-flow { padding: 12px; margin-top: 0; }
  #exp-interior .exp-svc-imgs-flow .exp-svc-img:nth-child(1) { width: 100%; margin-left: 0; margin-top: 0; aspect-ratio: 4/3; }
  #exp-interior .exp-svc-imgs-flow .exp-svc-img:nth-child(2) { width: 100%; margin-left: 0; margin-right: 0; align-self: auto; aspect-ratio: 4/3; }

  /* Paired image panels — mobile */
  .exp-svc-imgs-pair { grid-template-columns: 1fr; gap: 12px; padding: 12px; margin-top: 0; }
  .exp-svc-imgs-pair .exp-svc-img:nth-child(1) { width: 100%; margin-left: 0; aspect-ratio: 4/3; }
  .exp-svc-imgs-pair .exp-svc-img:nth-child(2) { width: 100%; aspect-ratio: 4/3; }

  /* Interior duo layout — mobile */
  .exp-svc-imgs-duo { grid-template-columns: 1fr; gap: 12px; padding: 12px; margin-top: 0; }
  .exp-svc-imgs-duo .exp-svc-img:nth-child(1),
  .exp-svc-imgs-duo .exp-svc-img:nth-child(2) { aspect-ratio: 4/3; }

  /* Accent / wide accent images — full width on mobile */
  .exp-svc-img--wide, .exp-svc-img--accent, .exp-svc-img--wide2 { width: 100%; margin: 0; }

  .exp-cta { padding: 64px 24px; flex-direction: column; align-items: flex-start; gap: 32px; }
}

