@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ---------- INTRO OVERLAY (techy) ---------- */
.intro-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: #000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none;
  overflow: hidden;
  animation: introExit 1s 3.7s cubic-bezier(0.86, 0, 0.07, 1) forwards;
}
.intro-overlay.skip,
html.intro-skip .intro-overlay { display: none !important; }
/* Scan lines / monitor texture */
.intro-overlay::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg,
    transparent 0, transparent 2px,
    rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 3px);
  pointer-events: none;
  opacity: 0;
  animation: introScanIn 0.5s 0.15s ease forwards;
  z-index: 1;
}
/* Subtle vignette / glow at center */
.intro-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 30% at 50% 50%, rgba(255,235,200,0.06), transparent 70%);
  pointer-events: none;
  opacity: 0;
  animation: introGlowIn 0.8s 0.4s ease forwards;
  z-index: 1;
}
@keyframes introScanIn { to { opacity: 1; } }
@keyframes introGlowIn { to { opacity: 1; } }

.intro-brand {
  position: relative;
  font-family: 'Inter Tight', -apple-system, system-ui, sans-serif;
  font-size: clamp(18px, 2.6vw, 28px);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
  display: flex; gap: 0.55em;
  white-space: nowrap;
  z-index: 2;
  isolation: isolate;
}
.intro-word { display: inline-flex; }
.intro-letter {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(6px);
  text-shadow: -3px 0 rgba(255, 30, 90, 0), 3px 0 rgba(0, 200, 255, 0);
  animation: introLetter 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes introLetter {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(6px);
    text-shadow: -3px 0 rgba(255, 30, 90, 0.75), 3px 0 rgba(0, 200, 255, 0.75);
  }
  40% {
    opacity: 1;
    filter: blur(2px);
    text-shadow: -2px 0 rgba(255, 30, 90, 0.5), 2px 0 rgba(0, 200, 255, 0.5);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    text-shadow: 0 0 0 transparent, 0 0 0 transparent;
  }
}

/* Diagonal glare sweep across the brand mark */
.intro-glare {
  position: absolute;
  top: -40%; left: 0;
  width: 22%; height: 180%;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255,255,255,0.08) 35%,
    rgba(255,240,210,0.55) 50%,
    rgba(255,255,255,0.08) 65%,
    transparent 100%);
  transform: translateX(-200%) skewX(-18deg);
  pointer-events: none;
  mix-blend-mode: screen;
  animation: introGlareSweep 1.05s 1.15s cubic-bezier(0.4, 0, 0.6, 1) forwards;
  z-index: 3;
  filter: blur(2px);
}
@keyframes introGlareSweep {
  to { transform: translateX(600%) skewX(-18deg); }
}

.intro-line {
  margin-top: 28px;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, #fff 20%, #fff 80%, transparent 100%);
  opacity: 0.8;
  animation: introLine 0.65s 1.55s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  z-index: 2;
  box-shadow: 0 0 8px rgba(255,255,255,0.3);
}
@keyframes introLine {
  to { width: 220px; }
}
@keyframes introExit {
  0% { transform: translateY(0); filter: blur(0); }
  20% { filter: blur(0); }
  100% { transform: translateY(-100%); filter: blur(2px); }
}
/* Active intro: sketched skyscraper + bold brand */
.intro-sketch {
  position: relative;
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 36px;
}
.intro-building {
  width: clamp(320px, 42vw, 560px);
  height: auto;
  display: block;
}
.intro-building .b-stroke {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawStroke 1.0s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  filter: drop-shadow(0 0 2px rgba(255,255,255,0.45));
}
@keyframes drawStroke {
  to { stroke-dashoffset: 0; }
}
.intro-building .scan-line {
  fill: rgba(255,255,255,0.85);
  filter: blur(1.2px) drop-shadow(0 0 6px rgba(255,255,255,0.6));
  opacity: 0;
  animation: scanLineSweep 2.0s 0.85s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}
@keyframes scanLineSweep {
  0% { transform: translateY(0); opacity: 0; }
  12% { opacity: 0.75; }
  88% { opacity: 0.75; }
  100% { transform: translateY(230px); opacity: 0; }
}
.intro-brand-text {
  font-family: 'Inter Tight', -apple-system, system-ui, sans-serif;
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  text-align: center;
  display: block;
  opacity: 0;
  transform: translateY(10px);
  animation: introTextIn 0.9s 2.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes introTextIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay, .intro-letter, .intro-line, .intro-glare,
  .intro-building .b-stroke, .intro-brand-text { animation: none !important; }
  .intro-overlay { display: none; }
}

:root {
  --bg: #000000;
  --bg-2: #0a0a0a;
  --bg-3: #121212;
  --text: #ffffff;
  --muted: #8a8a8a;
  --dim: #4a4a4a;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.15);
  --sans: 'Inter Tight', -apple-system, system-ui, 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
img, video { display: block; max-width: 100%; }
::selection { background: #fff; color: #000; }

/* ---------- NAV ---------- */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}
nav.top.scrolled {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  padding: 12px 32px;
}
nav.top ul { align-self: flex-start; margin-top: 34px; }
nav.top .brand { align-self: flex-start; transform: translateY(-12px); }
nav.top .brand {
  font-family: 'Inter Tight', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
nav.top .brand img {
  height: 200px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: height 0.3s ease;
}
nav.top.scrolled .brand img {
  height: 150px;
}
.footer-brand .mark {
  margin-bottom: 28px;
}
.footer-brand .mark img {
  height: 280px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-left: -8px;
}
nav.top ul {
  display: flex; gap: 36px; list-style: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
nav.top ul a {
  color: var(--text);
  transition: opacity 0.25s ease;
  opacity: 0.85;
  padding: 4px 0;
  position: relative;
}
nav.top ul a:hover { opacity: 1; }
nav.top ul a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--text);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-media {
  position: absolute; inset: 0;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  background-color: #0a0a0a;
  overflow: hidden;
  transform: translateZ(0);
}
.hero-media::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.5) 0%,
      rgba(0,0,0,0.12) 18%,
      rgba(0,0,0,0) 40%,
      rgba(0,0,0,0) 55%,
      rgba(0,0,0,0.6) 82%,
      rgba(0,0,0,0.92) 100%);
  pointer-events: none;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.08) 35%, transparent 60%);
  pointer-events: none;
}
.noise {
  position: absolute; inset: 0; opacity: 0.16; pointer-events: none; z-index: 3;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}
.hero-kicker {
  position: absolute; top: 92px; left: 32px; z-index: 4;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 14px;
  opacity: 0;
  animation: fadeIn 0.8s 0.4s ease forwards;
}
.hero-kicker::before { content: ''; width: 24px; height: 1px; background: var(--text); opacity: 0.4; }

.hero-content {
  position: relative; z-index: 4;
  padding: 0 32px 56px;
  display: flex; justify-content: flex-end; align-items: flex-end; gap: 32px;
}
.hero-headline {
  max-width: 880px;
  font-size: clamp(40px, 5.6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.hero-headline .line { display: block; overflow: hidden; padding-bottom: 0.15em; }
.hero-headline .line > span {
  display: inline-block;
  transform: translateY(125%);
  animation: lineUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}
.hero-headline .line:nth-child(2) > span { animation-delay: 0.32s; }
@keyframes lineUp { to { transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 0 6px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: gap 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
  opacity: 0;
  animation: fadeIn 0.8s 0.8s ease forwards;
}
.hero-cta:hover { gap: 18px; border-color: var(--text); }
.hero-cta .arrow { display: inline-block; transition: transform 0.3s ease; }
.hero-cta:hover .arrow { transform: translateX(4px); }

/* ---------- FULL-SCREEN FEATURE SECTIONS ---------- */
.feature {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  display: flex; align-items: flex-end;
  color: inherit;
  contain: layout paint;
}
a.feature { display: flex; cursor: pointer; }
.feature-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #050505;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Stand-in gradient backgrounds for sections without photography */
.visual-firm {
  background:
    radial-gradient(ellipse 60% 70% at 50% 60%, rgba(255,220,170,0.06), transparent 65%),
    radial-gradient(circle at 20% 20%, rgba(140,110,80,0.12), transparent 50%),
    linear-gradient(180deg, #14110d 0%, #050403 100%);
}
.visual-firm::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600'><defs><pattern id='gf' width='120' height='120' patternUnits='userSpaceOnUse'><circle cx='60' cy='60' r='50' fill='none' stroke='%23ffffff' stroke-opacity='0.04'/><circle cx='60' cy='60' r='30' fill='none' stroke='%23ffffff' stroke-opacity='0.025'/></pattern></defs><rect width='600' height='600' fill='url(%23gf)'/></svg>");
  opacity: 0.8;
}
.visual-firm.has-image {
  background: #0b1220;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
}
.visual-firm.has-image::before { display: none; }
.visual-real-estate {
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(255,210,150,0.08), transparent 60%),
    linear-gradient(180deg, #0e0c0a 0%, #050403 100%);
}
.visual-real-estate::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='800'><defs><pattern id='gre' width='60' height='180' patternUnits='userSpaceOnUse'><rect x='8' y='8' width='44' height='164' fill='none' stroke='%23ffffff' stroke-opacity='0.06'/><line x1='8' y1='44' x2='52' y2='44' stroke='%23ffffff' stroke-opacity='0.04'/><line x1='8' y1='88' x2='52' y2='88' stroke='%23ffffff' stroke-opacity='0.04'/><line x1='8' y1='132' x2='52' y2='132' stroke='%23ffffff' stroke-opacity='0.04'/></pattern></defs><rect width='600' height='800' fill='url(%23gre)'/></svg>");
}
.visual-real-estate.has-image {
  background: #0a0c18;
  background-image: url('real-estate.jpg');
  background-size: cover;
  background-position: center;
}
.visual-real-estate.has-image::before { display: none; }
.visual-global { background-color: #1a120a; }
.visual-global.has-image {
  background-image: url('global.jpg');
  background-size: cover;
  background-position: center;
}
.visual-tech {
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(140,200,240,0.08), transparent 60%),
    linear-gradient(180deg, #07090c 0%, #020304 100%);
}
.visual-tech::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><defs><pattern id='gt' width='40' height='40' patternUnits='userSpaceOnUse'><circle cx='20' cy='20' r='1' fill='%23ffffff' fill-opacity='0.22'/></pattern></defs><rect width='400' height='400' fill='url(%23gt)'/></svg>");
  opacity: 0.75;
}
.visual-tech.has-image {
  background: #050810;
  background-image: url('technology.jpg');
  background-size: cover;
  background-position: center;
}
.visual-tech.has-image::before { display: none; }
.visual-leadership {
  background:
    radial-gradient(ellipse 60% 70% at 50% 60%, rgba(220,200,170,0.06), transparent 65%),
    radial-gradient(circle at 25% 25%, rgba(180,140,100,0.08), transparent 55%),
    linear-gradient(180deg, #15110d 0%, #050403 100%);
}
.visual-leadership::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='800'><defs><pattern id='gl' width='180' height='220' patternUnits='userSpaceOnUse'><ellipse cx='90' cy='80' rx='40' ry='50' fill='none' stroke='%23ffffff' stroke-opacity='0.05'/><rect x='55' y='130' width='70' height='80' rx='10' fill='none' stroke='%23ffffff' stroke-opacity='0.04'/></pattern></defs><rect width='600' height='800' fill='url(%23gl)'/></svg>");
  opacity: 0.65;
}

.visual-contact {
  background:
    radial-gradient(ellipse 50% 60% at 50% 90%, rgba(255,255,255,0.04), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}
.visual-contact::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><defs><pattern id='gc' width='80' height='80' patternUnits='userSpaceOnUse'><line x1='40' y1='0' x2='40' y2='80' stroke='%23ffffff' stroke-opacity='0.04'/><line x1='0' y1='40' x2='80' y2='40' stroke='%23ffffff' stroke-opacity='0.04'/></pattern></defs><rect width='400' height='400' fill='url(%23gc)'/></svg>");
}
.visual-contact.has-image {
  background: #060810;
  background-image: url('contact.jpg');
  background-size: cover;
  background-position: center;
}
.visual-contact.has-image::before { display: none; }

.feature-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.12) 18%,
      rgba(0,0,0,0) 35%,
      rgba(0,0,0,0) 50%,
      rgba(0,0,0,0.55) 80%,
      rgba(0,0,0,0.9) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 35%, transparent 60%);
  pointer-events: none;
}
.feature-noise {
  position: absolute; inset: 0; opacity: 0.12; pointer-events: none; z-index: 3;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}
.feature-corner {
  position: absolute; top: 100px; left: 32px; z-index: 4;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 14px;
}
.feature-corner::before { content: ''; width: 24px; height: 1px; background: var(--text); opacity: 0.4; }

.feature-content {
  position: relative; z-index: 4;
  padding: 0 32px 64px;
  width: 100%;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
}
.feature-title {
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
}
.feature-title .line { display: block; overflow: hidden; padding-bottom: 0.15em; }
.feature-title .line > span {
  display: inline-block;
  transform: translateY(125%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature.in .feature-title .line > span { transform: translateY(0); }

.feature-explore {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 0 8px;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1), gap 0.3s ease, border-color 0.3s ease;
}
.feature.in .feature-explore { opacity: 1; transform: translateY(0); }
.feature-explore .arrow { display: inline-block; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
a.feature:hover .feature-explore { gap: 22px; border-color: var(--text); }
a.feature:hover .feature-explore .arrow { transform: translateX(8px); }

/* ---------- LEADERSHIP CAROUSEL ---------- */
.leadership-section {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background: var(--bg);
  overflow: hidden;
}
.leadership-stage {
  position: relative;
  height: 100%;
}
.leader {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0.75s;
}
.leader.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0s;
}
.leader-photo {
  position: relative;
  background-color: var(--bg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.leader-photo::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(255,255,255,0.03), transparent 60%);
  pointer-events: none;
}
.leader-photo.p1 { background-image: url('leader-01.jpg'); }
.leader-photo.p2 { background-image: url('leader-02.jpg'); }
.leader-photo.p3 { background-image: linear-gradient(180deg, #2c241a 0%, #181208 100%); }
.leader-photo.p4 { background-image: linear-gradient(180deg, #1d2329 0%, #0c1014 100%); }
.leader-photo.p5 { background-image: linear-gradient(180deg, #2a221a 0%, #14100c 100%); }
.leader-photo.p6 { background-image: linear-gradient(180deg, #1f252e 0%, #0d1118 100%); }

.leader-text {
  padding: 96px 64px 120px 80px;
  display: flex; flex-direction: column;
  justify-content: center;
  max-width: 740px;
}
.leader-kicker {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 28px;
}
.leader-name {
  font-family: 'Cormorant Garamond', Garamond, 'Times New Roman', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.02;
  margin: 0 0 18px;
}
.leader-title {
  font-family: 'Cormorant Garamond', Garamond, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 28px;
  color: var(--text);
}
.leader-bio p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin: 0 0 16px;
  max-width: 600px;
}
.leader-bio p:last-child { margin-bottom: 0; }

.leader-readmore {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 0 6px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  width: fit-content;
  margin-top: 36px;
  color: var(--text);
  transition: gap 0.3s ease, border-color 0.3s ease;
}
.leader-readmore:hover { gap: 18px; border-color: var(--text); }
.leader-readmore .arrow { transition: transform 0.3s ease; }
.leader-readmore:hover .arrow { transform: translateX(4px); }

/* ---------- LEADER DETAIL (stacked full bios on /leadership) ---------- */
.leader-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: stretch;
  scroll-margin-top: 0;
  border-bottom: 1px solid var(--line);
}
.leader-detail:last-of-type { border-bottom: none; }
.leader-detail-photo {
  position: relative;
  background-color: var(--bg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 60vh;
}
.leader-detail-photo.p1 { background-image: url('leader-01.jpg'); }
.leader-detail-photo.p2 { background-image: url('leader-02.jpg'); }
.leader-detail-content {
  padding: 120px 80px 120px 80px;
  display: flex; flex-direction: column;
  justify-content: center;
  max-width: 760px;
}
.leader-detail-content .leader-kicker {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 28px;
}
.leader-detail-content .leader-name {
  font-family: 'Cormorant Garamond', Garamond, 'Times New Roman', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.02;
  margin: 0 0 18px;
}
.leader-detail-content .leader-title {
  font-family: 'Cormorant Garamond', Garamond, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 32px;
  color: var(--text);
}
.leader-detail-content .leader-bio p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
  max-width: 620px;
}
.leader-detail-content .leader-bio p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .leader-detail { grid-template-columns: 1fr; min-height: auto; }
  .leader-detail-photo { min-height: 60vh; }
  .leader-detail-content { padding: 64px 24px 80px; }
}

.leadership-controls {
  position: absolute; bottom: 48px; right: 64px;
  display: flex; align-items: center; gap: 28px;
  z-index: 5;
}
.leadership-controls .counter {
  font-size: 12px; letter-spacing: 0.22em;
  color: var(--muted); min-width: 64px; text-align: right;
}
.leadership-controls .ctrl-buttons { display: flex; gap: 0; }
.leadership-controls button {
  width: 56px; height: 44px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--text);
  font-size: 14px;
  transition: background 0.25s ease, border-color 0.25s ease;
  display: flex; align-items: center; justify-content: center;
}
.leadership-controls button:first-child { border-right: none; }
.leadership-controls button:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--text);
}

@media (max-width: 900px) {
  .leadership-section { padding-top: 72px; }
  .leader { grid-template-columns: 1fr; }
  .leader-photo { min-height: 50vh; }
  .leader-text { padding: 56px 24px 96px; }
  .leadership-controls { right: 24px; bottom: 32px; }
}

/* ---------- DETAIL PAGE HERO ---------- */
.detail-hero {
  position: relative;
  height: 80vh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.detail-hero .feature-content {
  flex-direction: column; align-items: flex-start; gap: 16px;
  padding: 0 32px 72px;
}
.detail-hero .detail-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 8px;
}
.detail-hero h1 {
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
  max-width: 1100px;
}
.detail-hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.15em; }
.detail-hero h1 .line > span {
  display: inline-block;
  transform: translateY(125%);
  animation: lineUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}
.detail-hero h1 .line:nth-child(2) > span { animation-delay: 0.32s; }

/* ---------- DETAIL ARTICLE ---------- */
.detail-article {
  padding: 144px 32px 168px;
  background: var(--bg);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.detail-inner {
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}
.detail-article .article-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
}
.detail-article .article-kicker::before { content: ''; width: 28px; height: 1px; background: var(--text); opacity: 0.4; }
.detail-article .lead {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 96px;
  max-width: 820px;
}
.detail-article h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 112px;
  margin-bottom: 36px;
}
.detail-article h2:first-of-type { margin-top: 0; }
.detail-article p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 20px;
  max-width: 720px;
}
.detail-article p + p { margin-top: 4px; }

.capability-grid {
  list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  margin: 32px 0;
  border-top: 1px solid var(--line);
}
.capability-grid li {
  font-size: 18px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 18px;
  color: var(--text);
  position: relative;
}
.capability-grid li:nth-child(2n-1) { padding-right: 24px; border-right: 1px solid var(--line); }
.capability-grid li:nth-child(2n) { padding-left: 24px; }
.capability-grid li .num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--muted);
}

/* ---------- PROJECTS CAROUSEL ---------- */
.projects-section {
  margin-top: 112px;
  padding-top: 88px;
  padding-bottom: 24px;
  border-top: 1px solid var(--line);
}
.detail-inner > .projects-section:first-child {
  margin-top: 0;
  padding-top: 16px;
  border-top: none;
}
.projects-section + .article-kicker {
  margin-top: 112px;
  padding-top: 88px;
  border-top: 1px solid var(--line);
}
.projects-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 64px; flex-wrap: wrap;
}
.projects-head h2 { margin: 0; }
.projects-controls {
  display: flex; gap: 14px; align-items: center;
}
.projects-controls .counter {
  font-size: 11px; letter-spacing: 0.24em; color: var(--muted);
  min-width: 64px; text-align: center;
}
.projects-controls button {
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 14px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.projects-controls button:hover {
  border-color: var(--text);
  transform: scale(1.06);
}
.projects-track-wrap { overflow: hidden; }
.projects-track {
  display: flex; gap: 32px;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.project-card {
  flex: 0 0 calc((100% - 64px) / 3);
  position: relative;
  cursor: pointer;
}
.project-card .thumb {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  background: #0a0a0a;
}
.project-card .thumb-inner {
  position: absolute; inset: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card:hover .thumb-inner { transform: scale(1.05); }
.project-card .thumb::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.5));
}
.project-card .thumb-tag {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.project-card.s1 .thumb-inner {
  background-image: url('project-01.jpg');
  background-size: cover;
  background-position: center;
  background-color: #1a1410;
}
.project-card.s2 .thumb-inner {
  background-image: url('real-estate.jpg');
  background-size: cover;
  background-position: center;
  background-color: #14110d;
}
.project-card.s3 .thumb-inner {
  background-image: url('project-03.jpg');
  background-size: cover;
  background-position: center;
  background-color: #1a120c;
}
.project-card.s4 .thumb-inner {
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 26px, rgba(255,255,255,0.04) 26px, rgba(255,255,255,0.04) 27px),
    linear-gradient(135deg, #1d2329 0%, #0c1014 100%);
}
.project-card.s5 .thumb-inner {
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 26px, rgba(255,255,255,0.045) 26px, rgba(255,255,255,0.045) 27px),
    linear-gradient(155deg, #2a221a 0%, #14100c 100%);
}
.project-card.s6 .thumb-inner {
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 26px, rgba(255,255,255,0.04) 26px, rgba(255,255,255,0.04) 27px),
    linear-gradient(175deg, #1f252e 0%, #0d1118 100%);
}
.project-card .name {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--text);
}
.project-card .meta {
  font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.related-row {
  margin-top: 128px;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.related-row a {
  position: relative;
  display: block;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.related-row a:hover { border-color: var(--line-2); transform: translateY(-3px); }
.related-row .related-label {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.related-row h3 {
  font-size: 28px; font-weight: 400; letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.related-row .arrow {
  font-size: 12px; opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.related-row a:hover .arrow { transform: translateX(6px); opacity: 1; }

/* ---------- CONTACT FORM ---------- */
.contact-form {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 620px; margin-top: 32px;
}
.contact-form .row { display: flex; gap: 24px; }
.contact-form .field {
  flex: 1; display: flex; flex-direction: column;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 8px;
}
.contact-form label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.contact-form input, .contact-form textarea {
  background: transparent; border: none; outline: none;
  color: var(--text); font-family: inherit; font-size: 16px;
  padding: 6px 0;
  width: 100%; resize: none;
}
.contact-form textarea { min-height: 88px; }
.contact-form .submit {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 0 8px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  width: fit-content;
  transition: gap 0.3s ease, border-color 0.3s ease;
  margin-top: 8px;
  cursor: pointer;
}
.contact-form .submit:hover { gap: 18px; border-color: var(--text); }

.contact-direct {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  margin-top: 80px; padding-top: 48px;
  border-top: 1px solid var(--line);
}
.contact-direct .item .label {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.contact-direct .item .value {
  font-size: 18px; color: var(--text); font-weight: 400;
}
.contact-direct .item .value a {
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 1px;
  transition: border-color 0.3s ease;
}
.contact-direct .item .value a:hover { border-color: var(--text); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-2);
  padding: 96px 32px 32px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 100%, rgba(255,255,255,0.025), transparent 60%);
  pointer-events: none;
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  margin-bottom: 56px;
  position: relative;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .mark {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 28px;
}
.footer-contact {
  font-style: normal;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 360px;
}
.footer-contact a {
  color: var(--muted);
  transition: color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.footer-contact a:hover {
  color: var(--text);
  border-bottom-color: var(--line-2);
}
.footer-form {
  display: flex;
  border-bottom: 1px solid var(--line-2);
  max-width: 420px;
  align-items: center;
  padding-bottom: 4px;
}
.footer-form input {
  flex: 1; background: transparent; border: none; color: var(--text);
  padding: 12px 0; font-family: inherit; font-size: 14px;
  outline: none;
}
.footer-form input::placeholder { color: var(--muted); }
.footer-form button {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text); padding: 4px 0; font-weight: 500;
  transition: opacity 0.25s ease;
}
.footer-form button:hover { opacity: 0.7; }

.footer-links {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; font-size: 14px; }
.footer-col ul li a {
  color: var(--text); opacity: 0.85;
  transition: opacity 0.25s ease;
}
.footer-col ul li a:hover { opacity: 1; }

.footer-social {
  display: flex; gap: 16px;
  margin-top: 28px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover { border-color: var(--text); transform: translateY(-2px); }
.footer-social svg { width: 14px; height: 14px; fill: var(--text); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}
.footer-bottom .legal { display: flex; gap: 28px; }
.footer-bottom .legal a { transition: color 0.25s ease; }
.footer-bottom .legal a:hover { color: var(--text); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  nav.top { padding: 16px 20px; }
  nav.top ul { display: none; }
  .hero-kicker { left: 20px; top: 70px; }
  .hero-content { padding: 0 20px 40px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .feature { min-height: 600px; }
  .feature-corner { left: 20px; top: 70px; }
  .feature-content { padding: 0 20px 48px; flex-direction: column; align-items: flex-start; gap: 28px; }
  .detail-hero { min-height: 520px; height: 70vh; }
  .detail-hero .feature-content { padding: 0 20px 48px; }
  .detail-article { padding: 80px 20px 100px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid li:nth-child(2n-1) { padding-right: 0; border-right: none; }
  .capability-grid li:nth-child(2n) { padding-left: 0; }
  .related-row { grid-template-columns: 1fr; }
  .project-card { flex: 0 0 calc((100% - 32px) / 2); }
  .projects-section { margin-top: 64px; padding-top: 56px; }
  .projects-head { margin-bottom: 36px; }
}
@media (max-width: 640px) {
  .project-card { flex: 0 0 100%; }
  .contact-form .row { flex-direction: column; gap: 24px; }
  .contact-direct { grid-template-columns: 1fr; gap: 24px; }
  footer { padding: 56px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; padding-bottom: 40px; margin-bottom: 40px; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}
