/* =============================================
   VARIABLES & RESET
============================================= */
:root {
  --white:      #ffffff;
  --off-white:  #f8f6f2;
  --light-gray: #f1eeea;
  --border:     #e2ddd8;
  --text:       #1a1a1a;
  --text-mid:   #555550;
  --text-light: #8a857e;
  --red:       #8B1A1A;
  --red-dark:  #8B1A1A;
  --red:        #8B1A1A;
  --black:      #111111;
  --font-serif: 'Sora', Georgia, serif;
  --font-body:  'Inter', Georgia, sans-serif;
  --font-sans:  'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  overflow-x: hidden;
  width: 100%;
}
img, video { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* =============================================
   NAVBAR
============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s, border-color 0.4s, box-shadow 0.4s, height 0.3s;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  height: 68px;
}
#navbar:not(.scrolled) .nav-logo-main { color: #fff; }
#navbar:not(.scrolled) .nav-logo-sub  { color: var(--red); }
#navbar:not(.scrolled) .nav-links a   { color: rgba(255,255,255,0.8); }
#navbar:not(.scrolled) .nav-links a:hover { color: #fff; }
#navbar:not(.scrolled) .nav-cta { border-color: rgba(255,255,255,0.5); color: #fff; }
#navbar:not(.scrolled) .hamburger span { background: #fff; }

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1;
}

.nav-logo-main {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--text);
}

.nav-logo-sub {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.5rem;
    letter-spacing: 0.5em;
    color: var(--red);
    margin-top: 2px;
}

.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-links a {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid);
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--red); transition: width 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 10px 26px; border: 1px solid var(--text); color: var(--text); transition: all 0.3s;
}
.nav-cta:hover { background: var(--text); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; }

/* MOBILE NAV */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--white); z-index: 1001;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-serif); font-size: 2rem; color: var(--text); transition: color 0.3s; }
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-close { position: absolute; top: 24px; right: 32px; font-size: 1.4rem; color: var(--text-light); cursor: pointer; }

/* =============================================
   HERO
============================================= */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: #0d0d0d;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0; transition: opacity 1.4s ease; pointer-events: none;
}
.hero-video.loaded { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%), rgba(0,0,0,0.48);
}
.hero-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px; z-index: 3;
  background: linear-gradient(to right, transparent, var(--red) 30%, var(--red) 70%, transparent);
  opacity: 0; animation: fadeIn 1s 1.6s forwards;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 24px; }
.hero-tag {
  display: inline-block; font-family: var(--font-sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.5em; text-transform: uppercase; color: var(--red); margin-bottom: 28px;
  border: 1px solid rgba(182,157,116,0.45); padding: 6px 18px;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 5rem); line-height: 1.1; color: #fff; margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
}
.hero-title em { font-style: italic; color: var(--red); }
.hero-subtitle {
  font-size: clamp(0.85rem, 1.5vw, 1rem); color: rgba(255,255,255,0.65);
  max-width: 520px; margin: 0 auto 40px; line-height: 1.8;
  opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 1s forwards;
}
.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 15px 36px; background: var(--red); color: #fff; transition: background 0.3s, transform 0.3s;
}
.hero-btn-primary:hover { background: #c9aa83; transform: translateY(-2px); }
.hero-btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 15px 36px; border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.85);
  transition: all 0.3s;
}
.hero-btn-secondary:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.58rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  opacity: 0; animation: fadeIn 1s 1.4s forwards;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s 1.6s ease-in-out infinite;
}
.hero-mute {
  position: absolute; bottom: 36px; right: 40px; z-index: 3;
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3); color: rgba(255,255,255,0.6); font-size: 0.85rem;
  transition: all 0.3s; opacity: 0; animation: fadeIn 1s 1.6s forwards;
}
.hero-mute:hover { border-color: var(--red); color: var(--red); }

/* =============================================
   LABEL (reusable)
============================================= */
.label {
  font-family: var(--font-sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--red-dark); margin-bottom: 14px;
  display: block;
}

/* =============================================
   INTRO
============================================= */
#intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  padding: 100px 60px; background: var(--white); border-bottom: 1px solid var(--border);
}
.intro-left h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.2; color: var(--text);
}
.intro-left h2 em { font-style: italic; color: var(--red-dark); }
.intro-right p { font-size: 1rem; line-height: 1.85; color: var(--text-mid); }
.intro-right p + p { margin-top: 20px; }
.link-more {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 32px;
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text); transition: gap 0.3s;
}
.link-more::after { content: ''; display: inline-block; width: 36px; height: 1px; background: var(--text); transition: width 0.3s; }
.link-more:hover { gap: 18px; }
.link-more:hover::after { width: 52px; }

/* =============================================
   PRACTICE AREAS
============================================= */
#practice { padding: 100px 60px; background: var(--off-white); border-bottom: 1px solid var(--border); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; }
.section-header-left h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--text); line-height: 1.2;
}
.section-header-left h2 em { font-style: italic; }

.tiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.tile { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; }
.tile-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.7s ease; filter: brightness(0.55);
}
.tile:hover .tile-img { transform: scale(1.06); }
.tile-body {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 28px 24px;
}
.tile-num { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.3em; color: var(--red); margin-bottom: 8px; }
.tile h3 { font-family: var(--font-serif); font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 400; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.tile-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); transition: color 0.3s, gap 0.3s;
}
.tile-link::after { content: ''; display: inline-block; width: 24px; height: 1px; background: currentColor; transition: width 0.3s; }
.tile:hover .tile-link { color: var(--red); gap: 14px; }
.tile:hover .tile-link::after { width: 36px; }

/* =============================================
   STATS BAR
============================================= */
#stats-bar {
  background: var(--black); display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item {
  padding: 48px 32px; border-right: 1px solid rgba(255,255,255,0.08); text-align: center;
  position: relative; overflow: hidden; transition: background 0.4s;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--red); transform: scaleX(0); transition: transform 0.4s;
}
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-item:hover::before { transform: scaleX(1); }
.stat-number { font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 400; color: var(--red); line-height: 1; display: block; margin-bottom: 10px; }
.stat-label { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* =============================================
   STAND FOR
============================================= */
#stand-for { background: var(--off-white); border-bottom: 1px solid var(--border); }
.stand-header {
  padding: 80px 60px 60px; display: flex; align-items: flex-end;
  justify-content: space-between; border-bottom: 1px solid var(--border); gap: 40px;
}
.stand-header-left h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem); color: var(--text); line-height: 1.15;
}
.stand-header-left h2 em { font-style: italic; color: var(--red-dark); }
.stand-header-right { max-width: 380px; font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; text-align: right; }

.stand-panels { display: grid; grid-template-columns: repeat(3, 1fr); }
.stand-panel { position: relative; overflow: hidden; border-right: 1px solid var(--border); display: flex; flex-direction: column; }
.stand-panel:last-child { border-right: none; }
.stand-panel-photo { position: relative; height: 320px; overflow: hidden; flex-shrink: 0; }
.stand-panel-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); transition: transform 0.7s, filter 0.5s; }
.stand-panel:hover .stand-panel-photo img { transform: scale(1.05); filter: grayscale(0%); }
.stand-panel-photo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px; background: linear-gradient(to top, var(--off-white), transparent);
}
.stand-panel-num {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-sans); font-size: 0.7rem; color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.3); backdrop-filter: blur(6px); padding: 5px 12px;
}
.stand-panel-body { padding: 32px 36px 40px; flex: 1; background: var(--off-white); border-top: 3px solid transparent; transition: border-color 0.4s; display: flex; flex-direction: column; }
.stand-panel:hover .stand-panel-body { border-top-color: var(--red); }
.stand-panel-tag { font-family: var(--font-sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--red-dark); margin-bottom: 12px; }
.stand-panel-title { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.6rem, 2.5vw, 2.2rem); line-height: 1.15; color: var(--text); margin-bottom: 16px; }
.stand-panel-title em { font-style: italic; color: var(--red-dark); display: block; }
.stand-panel-desc { font-size: 0.93rem; color: var(--text-mid); line-height: 1.8; flex: 1; }
.stand-panel-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 24px;
  font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); transition: color 0.3s, gap 0.3s; align-self: flex-start;
}
.stand-panel-link::after { content: ''; display: inline-block; width: 28px; height: 1px; background: currentColor; transition: width 0.3s; }
.stand-panel:hover .stand-panel-link { color: var(--red-dark); gap: 14px; }
.stand-panel:hover .stand-panel-link::after { width: 44px; }

/* =============================================
   PHILOSOPHY
============================================= */
#philosophy { background: var(--black); border-bottom: 1px solid rgba(255,255,255,0.06); }
.phil-headline {
  padding: 90px 60px 72px; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: baseline; gap: 60px;
}
.phil-eyebrow { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; color: var(--off-white); flex-shrink: 0; }
.phil-main-title { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.8rem, 3.5vw, 3.2rem); color: #fff; line-height: 1.2; }
.phil-split { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,0.08); }
.phil-left { padding: 64px 60px; border-right: 1px solid rgba(255,255,255,0.08); }
.phil-big-text { font-family: var(--font-serif); font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 400; color: rgba(255,255,255,0.88); line-height: 1.55; margin-bottom: 28px; }
.phil-small-text { font-size: 0.95rem; color: rgba(255,255,255,0.4); line-height: 1.85; }
.phil-right { padding: 64px 60px; display: flex; flex-direction: column; }
.phil-point { display: flex; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.phil-point:first-child { padding-top: 0; }
.phil-point:last-child { border-bottom: none; padding-bottom: 0; }
.phil-point-num { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; color: var(--off-white); flex-shrink: 0; padding-top: 4px; opacity: 0.7; }
.phil-point-body h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.phil-point-body p { font-size: 0.9rem; color: rgba(255,255,255,0.4); line-height: 1.75; }
.phil-footer { display: flex; align-items: center; gap: 20px; padding: 36px 60px 56px; }
.phil-footer-line { display: inline-block; width: 36px; height: 1px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.phil-footer-text { font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.3); text-transform: uppercase; flex: 1; }
.phil-footer-cta { font-family: var(--font-sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; color: var(--red); transition: opacity 0.3s; }
.phil-footer-cta:hover { opacity: 0.7; }

/* =============================================
   SECTORS MARQUEE
============================================= */
#sectors { padding: 52px 0; background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.sectors-label { text-align: center; font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--text-light); margin-bottom: 28px; }
.marquee-wrap { overflow: hidden; }
.marquee-track { display: flex; gap: 56px; white-space: nowrap; animation: marquee 26s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 14px; font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); }
.marquee-sep { color: var(--red); }

/* =============================================
   CAPABILITIES
============================================= */
#capabilities { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.cap-topbar { display: grid; grid-template-columns: 1fr auto; align-items: end; padding: 80px 60px 56px; border-bottom: 1px solid var(--border); gap: 40px; }
.cap-topbar-left h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.1; color: var(--text); }
.cap-topbar-left h2 em { font-style: italic; }
.cap-topbar-right { font-family: var(--font-serif); font-size: clamp(3rem, 5vw, 5rem); font-weight: 400; color: var(--border); line-height: 1; }
.cap-nav { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--border); }
.cap-nav-btn {
  padding: 22px 28px; font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); text-align: left;
  cursor: pointer; border-right: 1px solid var(--border); border-bottom: 3px solid transparent; transition: all 0.3s;
}
.cap-nav-btn:last-child { border-right: none; }
.cap-nav-btn:hover { color: var(--text); background: var(--off-white); }
.cap-nav-btn.active { color: var(--text); border-bottom-color: var(--red); background: var(--off-white); }
.cap-body { display: grid; grid-template-columns: 300px 1fr; min-height: 480px; }
.cap-context { padding: 48px 44px; border-right: 1px solid var(--border); background: var(--off-white); display: flex; flex-direction: column; gap: 20px; }
.cap-context-label { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red-dark); }
.cap-context-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--text); line-height: 1.25; }
.cap-context-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }
.cap-context-count { margin-top: auto; font-family: var(--font-serif); font-size: 4rem; font-weight: 400; color: var(--border); line-height: 1; }
.cap-accordion { display: flex; flex-direction: column; }
.cap-acc-item { border-bottom: 1px solid var(--border); overflow: hidden; opacity: 0; animation: fadeUp 0.4s forwards; }
.cap-acc-header { display: grid; grid-template-columns: 48px 1fr 28px; align-items: center; gap: 16px; padding: 22px 36px; cursor: pointer; transition: background 0.25s; }
.cap-acc-header:hover { background: var(--off-white); }
.cap-acc-num { font-family: var(--font-sans); font-size: 0.6rem; font-weight: 600; color: var(--red); letter-spacing: 0.15em; opacity: 0.7; }
.cap-acc-text { font-family: var(--font-body); font-size: 0.98rem; color: var(--text); line-height: 1.55; }
.cap-acc-icon { font-size: 0.85rem; color: var(--text-light); transition: transform 0.3s; text-align: right; }
.cap-acc-item.open .cap-acc-icon { transform: rotate(45deg); color: var(--red-dark); }
.cap-acc-item.open .cap-acc-header { background: var(--off-white); }
.cap-acc-detail { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 36px 0 100px; }
.cap-acc-item.open .cap-acc-detail { max-height: 200px; padding: 0 36px 22px 100px; }
.cap-acc-detail p { font-size: 0.88rem; color: var(--text-light); line-height: 1.8; border-left: 2px solid var(--red); padding-left: 16px; }

/* =============================================
   TEAM
============================================= */
#team { padding: 100px 60px; background: var(--off-white); border-bottom: 1px solid var(--border); }
.team-intro { text-align: center; max-width: 560px; margin: 0 auto 60px; }
.team-intro h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--text); line-height: 1.2; }
.team-intro p { font-size: 1rem; color: var(--text-mid); margin-top: 14px; line-height: 1.8; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); }
.team-card { background: var(--white); position: relative; overflow: hidden; }
.team-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--light-gray); position: relative; }
.team-photo-fallback {
  position: absolute; inset: 0; display: none;
  align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 3rem; font-weight: 400; color: var(--red);
  background: var(--light-gray); letter-spacing: 0.05em;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: grayscale(20%); transition: transform 0.6s, filter 0.5s; }
.team-card:hover .team-photo img { transform: scale(1.04); filter: grayscale(0%); }
.team-info { padding: 22px 22px 26px; border-top: 3px solid transparent; transition: border-color 0.3s; }
.team-card:hover .team-info { border-top-color: var(--red); }
.team-role { font-family: var(--font-sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red-dark); margin-bottom: 5px; }
.team-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: var(--text); margin-bottom: 10px; line-height: 1.2; }
.team-areas { display: flex; flex-wrap: wrap; gap: 5px; }
.area-tag { font-family: var(--font-sans); font-size: 0.58rem; letter-spacing: 0.08em; padding: 3px 8px; border: 1px solid var(--border); color: var(--text-light); }
.team-overlay {
  position: absolute; inset: 0; background: rgba(255,255,255,0.97);
  padding: 28px 24px; display: flex; flex-direction: column; justify-content: center;
  opacity: 0; transform: translateY(16px); transition: opacity 0.4s, transform 0.4s; pointer-events: none;
}
.team-card:hover .team-overlay { opacity: 1; transform: translateY(0); pointer-events: all; }
.team-overlay-role { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red-dark); margin-bottom: 5px; }
.team-overlay-name { font-family: var(--font-serif); font-size: 1.4rem; color: var(--text); margin-bottom: 14px; line-height: 1.15; }
.team-overlay-bio { font-size: 0.85rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.team-overlay-divider { width: 32px; height: 1px; background: var(--red); margin-bottom: 14px; }
.team-overlay-areas { display: flex; flex-wrap: wrap; gap: 5px; }

/* =============================================
   CTA
============================================= */
#cta { padding: 100px 60px; background: var(--black); text-align: center; }
#cta .label { color: var(--red); margin-bottom: 20px; }
#cta h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.8rem, 4vw, 3.2rem); color: #fff; line-height: 1.2; max-width: 720px; margin: 0 auto 36px; }
#cta h2 em { font-style: italic; color: var(--red); }
.cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 18px 44px; background: var(--red); color: var(--black); transition: background 0.3s, transform 0.3s;
}
.cta-btn:hover { background: #c9b08e; transform: translateY(-2px); }

/* =============================================
   CONTACT
============================================= */
#contact { padding: 100px 60px; background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-left h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--text); line-height: 1.2; margin-bottom: 20px; }
.contact-left h2 em { font-style: italic; color: var(--red-dark); }
.contact-left > p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 44px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.contact-detail:last-child { border-bottom: none; }
.detail-icon { flex-shrink: 0; width: 36px; height: 36px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--red-dark); }
.detail-label { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; display: block; }
.detail-value { font-size: 0.95rem; color: var(--text); line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); }
.form-field input, .form-field textarea, .form-field select {
  background: var(--off-white); border: 1px solid var(--border); color: var(--text);
  font-family: var(--font-body); font-size: 0.95rem; padding: 12px 16px; outline: none;
  transition: border-color 0.3s; appearance: none; -webkit-appearance: none;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--red); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-light); opacity: 0.6; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 15px 34px; background: var(--text); color: var(--white); transition: background 0.3s, transform 0.3s; align-self: flex-start;
}
.form-submit:hover { background: var(--red-dark); transform: translateY(-2px); }

/* =============================================
   FOOTER
============================================= */
footer { background: var(--text); color: rgba(255,255,255,0.6); padding: 70px 60px 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px; }
.footer-brand .nav-logo-main { color: #fff; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.45); margin-top: 16px; }
.footer-col h5 { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--off-white); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: var(--font-sans); font-size: 0.7rem; color: rgba(255,255,255,0.3); }
.footer-copy span { color: var(--red); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-family: var(--font-sans); font-size: 0.68rem; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer-links a:hover { color: #fff; }

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    text-align: center;
}

.footer-logo-main {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--white);
}

.footer-logo-sub {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.5rem;
    letter-spacing: 0.5em;
    color: var(--red);
    margin-top: 2px;
}

/* =============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 44px; }
  50%       { opacity: 0.3; height: 28px; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE — 1280px
============================================= */
@media (max-width: 1280px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .cap-body  { grid-template-columns: 240px 1fr; }
}

/* =============================================
   RESPONSIVE — 1060px
============================================= */
@media (max-width: 1060px) {
  .tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid  { grid-template-columns: repeat(2, 1fr); }
  .stand-panels { grid-template-columns: repeat(2, 1fr); }
  .stand-panel:nth-child(2) { border-right: none; }
  .stand-panel:nth-child(3) { grid-column: 1 / -1; border-right: none; border-top: 1px solid var(--border); }
  .stand-panel:nth-child(3) .stand-panel-photo { height: 240px; }
  #stats-bar { grid-template-columns: repeat(4, 1fr); }
  .cap-body { grid-template-columns: 200px 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* =============================================
   RESPONSIVE — 900px (tablet)
============================================= */
@media (max-width: 900px) {
  /* Navbar */
  #navbar { padding: 0 20px; height: 60px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-subtitle { font-size: 0.875rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .hero-btn-primary, .hero-btn-secondary { width: 100%; max-width: 260px; justify-content: center; }
  .hero-scroll { display: none; }
  .hero-mute { right: 16px; bottom: 16px; }

  /* Intro */
  #intro { grid-template-columns: 1fr; gap: 28px; padding: 64px 24px; }

  /* Practice */
  #practice { padding: 64px 24px; }
  .tiles-grid { grid-template-columns: 1fr 1fr; }
  .tile { aspect-ratio: 4/5; }
  .section-header { flex-direction: column; gap: 16px; margin-bottom: 32px; }

  /* Stats */
  #stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(4) { border-right: none; }

  /* Stand for */
  .stand-header { flex-direction: column; gap: 16px; padding: 52px 24px 40px; text-align: left; }
  .stand-header-right { text-align: left; max-width: 100%; }
  .stand-panels { grid-template-columns: 1fr; }
  .stand-panel { border-right: none; border-bottom: 1px solid var(--border); }
  .stand-panel:nth-child(2) { border-right: none; }
  .stand-panel:nth-child(3) { grid-column: auto; border-top: none; }
  .stand-panel:last-child { border-bottom: none; }
  .stand-panel-photo { height: 220px; }
  .stand-panel-body { padding: 24px 24px 32px; }

  /* Philosophy */
  .phil-headline { flex-direction: column; gap: 12px; padding: 56px 24px 48px; }
  .phil-split { grid-template-columns: 1fr; }
  .phil-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 40px 24px; }
  .phil-right { padding: 40px 24px; }
  .phil-footer { padding: 28px 24px 48px; flex-wrap: wrap; gap: 12px; }

  /* Capabilities */
  .cap-topbar { grid-template-columns: 1fr; padding: 56px 24px 40px; }
  .cap-topbar-right { display: none; }
  .cap-nav { grid-template-columns: repeat(2, 1fr); }
  .cap-nav-btn { font-size: 0.6rem; padding: 14px 14px; border-bottom: 1px solid var(--border); }
  .cap-nav-btn:nth-child(2) { border-right: none; }
  .cap-body { grid-template-columns: 1fr; }
  .cap-context { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
  .cap-context-count { display: none; }
  .cap-acc-header { grid-template-columns: 32px 1fr 20px; gap: 12px; padding: 16px 24px; }
  .cap-acc-detail { padding: 0 24px 0 68px; }
  .cap-acc-item.open .cap-acc-detail { padding: 0 24px 18px 68px; }

  /* Team */
  #team { padding: 64px 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  #cta { padding: 72px 24px; }
  #cta h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }

  /* Contact */
  #contact { grid-template-columns: 1fr; gap: 40px; padding: 64px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  footer { padding: 52px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-links { flex-direction: column; align-items: center; gap: 8px; }
}

/* =============================================
   RESPONSIVE — 600px (mobile)
============================================= */
@media (max-width: 600px) {
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .hero-tag { font-size: 0.55rem; letter-spacing: 0.28em; padding: 5px 12px; }

  .tiles-grid { grid-template-columns: 1fr; }
  .tile { aspect-ratio: 16/9; }

  #stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 32px 16px; }
  .stat-number { font-size: 2.2rem; }

  .stand-panel-photo { height: 190px; }

  .team-grid { grid-template-columns: 1fr; }
  .team-overlay { display: none; }

  .cap-acc-header { grid-template-columns: 1fr 20px; gap: 8px; }
  .cap-acc-num { display: none; }
  .cap-acc-detail { padding: 0 20px 0 20px; }
  .cap-acc-item.open .cap-acc-detail { padding: 0 20px 16px 20px; }

  .cta-btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* =============================================
   RESPONSIVE — 400px (small phones)
============================================= */
@media (max-width: 400px) {
  .hero-title { font-size: 1.55rem; }
  .hero-btn-primary, .hero-btn-secondary { max-width: 100%; padding: 13px 20px; }
  .stat-item { padding: 24px 12px; }
  .stat-number { font-size: 1.9rem; }
  .cap-nav-btn { font-size: 0.56rem; padding: 12px 8px; letter-spacing: 0.08em; }
}