/* =============================================================
   VOKAL VENTURES
   Palette derived from the logo: deep navy, off-white, ivory
   ============================================================= */

:root {
  --navy: #0a1f44;          /* logo color */
  --navy-deep: #061536;
  --navy-mid: #15306b;
  --ivory: #f5f3ed;         /* warm off-white for body bg */
  --ivory-dim: #ebe8df;
  --paper: #ffffff;
  --ink: #0a1f44;
  --ink-soft: #2c3e6b;
  --steel: #6b7892;
  --line: rgba(10, 31, 68, 0.12);
  --line-strong: rgba(10, 31, 68, 0.4);
  --accent: #c9a961;        /* warm brass accent — ties to architectural lighting */

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--navy); color: var(--ivory); }

/* =============== NAV =============== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(245, 243, 237, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding: 14px 48px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--navy);
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--navy);
  padding: 10px 18px;
  border-radius: 100px;
  text-decoration: none;
  color: var(--navy);
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--navy); color: var(--ivory); }

/* =============== HERO =============== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 48px 80px;
  background: var(--navy);
  color: var(--ivory);
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg,
      rgba(245, 243, 237, 0.05) 0px,
      rgba(245, 243, 237, 0.05) 1px,
      transparent 1px,
      transparent 18px);
  opacity: 0.9;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 243, 237, 0.3), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1480px;
  margin: 0 auto;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 243, 237, 0.6);
  margin-bottom: 64px;
}
.dot-live {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(201, 169, 97, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0); }
}
.hero-meta .sep { opacity: 0.4; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 10vw, 168px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 64px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: hero-rise 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-title .line:nth-child(1) span { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.22s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.34s; }
.hero-title .line:nth-child(4) span { animation-delay: 0.46s; }
@keyframes hero-rise {
  to { transform: translateY(0); }
}

.hero-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  border-top: 1px solid rgba(245, 243, 237, 0.18);
  padding-top: 32px;
  max-width: 1100px;
  opacity: 0;
  animation: fade-up 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-lede {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  max-width: 540px;
  color: rgba(245, 243, 237, 0.85);
  font-style: italic;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  padding: 16px 24px;
  border: 1px solid rgba(245, 243, 237, 0.4);
  border-radius: 100px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.hero-link:hover {
  background: var(--ivory);
  color: var(--navy);
  border-color: var(--ivory);
}
.hero-link svg { transition: transform 0.3s; }
.hero-link:hover svg { transform: translate(2px, -2px); }

/* =============== MARQUEE =============== */
.marquee {
  background: var(--navy-deep);
  border-top: 1px solid rgba(245, 243, 237, 0.1);
  border-bottom: 1px solid rgba(245, 243, 237, 0.1);
  padding: 26px 0;
  overflow: hidden;
  color: var(--ivory);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  align-items: center;
}
.marquee-track .diamond {
  font-style: normal;
  color: var(--accent);
  font-size: 14px;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* =============== SECTION =============== */
.section {
  padding: 140px 48px;
  max-width: 1480px;
  margin: 0 auto;
}
.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 80px;
}
.section-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 1100px;
}
.section-title em {
  font-style: italic;
  color: var(--navy);
  position: relative;
}

/* =============== PRACTICE =============== */
.practice-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 60px;
}
.practice-spacer {}
.practice-text p {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 28px;
  color: var(--ink-soft);
}
.practice-text p.lead {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.4;
}
.practice-text p.lead::first-letter {
  font-style: italic;
  color: var(--navy);
}
.practice-text em {
  font-style: italic;
  color: var(--navy);
}

.practice-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 14px;
}
.stats-attribution {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.6;
  padding-bottom: 4px;
}
.stat-row {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--navy);
}
.stat-num em {
  font-style: italic;
  color: var(--accent);
}
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* =============== FEATURED =============== */
.featured {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}
.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.featured:hover .featured-img { transform: scale(1.04); }

.featured-overlay {
  position: absolute;
  inset: 0;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ivory);
  background: linear-gradient(180deg,
    rgba(10, 31, 68, 0.4) 0%,
    transparent 25%,
    transparent 50%,
    rgba(6, 21, 54, 0.85) 100%);
}

.featured-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(10, 31, 68, 0.2);
}
.featured-coords {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: right;
  line-height: 1.7;
}

.featured-bottom {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
}
.featured-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 88px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.featured-info p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.featured-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 16px;
}
.featured-specs > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.featured-specs dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.featured-specs dd {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

/* =============== PORTFOLIO =============== */
.portfolio {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px 32px;
}
.proj {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.proj-img {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--navy);
}
.proj-img svg {
  width: 100%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.proj:hover .proj-img svg { transform: scale(1.04); }

.proj-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--line-strong);
  padding-top: 14px;
  transition: padding-left 0.4s ease;
}
.proj:hover .proj-meta { padding-left: 8px; }
.proj-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-style: italic;
}
.proj-type {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 6px;
}
.proj-year {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

.proj--lg { grid-column: span 6; }
.proj--md { grid-column: span 5; }
.proj--sm { grid-column: span 4; }

.proj:nth-child(1) { grid-column: 1 / span 5; }
.proj:nth-child(2) { grid-column: 7 / span 6; margin-top: 100px; }
.proj:nth-child(3) { grid-column: 1 / span 4; margin-top: 40px; }
.proj:nth-child(4) { grid-column: 6 / span 4; margin-top: 80px; }
.proj:nth-child(5) { grid-column: 1 / span 5; margin-top: 60px; }
.proj:nth-child(6) { grid-column: 8 / span 5; margin-top: 20px; }

/* =============== LEADERSHIP =============== */
.leaders {
  display: flex;
  flex-direction: column;
}
.leader {
  display: grid;
  grid-template-columns: 1.3fr 2fr 1fr;
  gap: 60px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: padding-left 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}
.leader:last-child { border-bottom: 1px solid var(--line); }
.leader::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.leader:hover { padding-left: 32px; }
.leader:hover::before { width: 16px; }

.leader-name {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--navy);
}
.leader-name em {
  font-style: italic;
  color: var(--accent);
}
.leader-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 12px;
}
.leader-body p {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-soft);
}
.leader-creds {
  list-style: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.leader-creds li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.leader-creds li span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel);
  font-size: 10px;
}
.leader-creds li span:last-child {
  color: var(--ink);
  text-align: right;
}

/* =============== PHILOSOPHY =============== */
.philosophy {
  background: var(--navy);
  color: var(--ivory);
  padding: 160px 48px;
  position: relative;
  overflow: hidden;
}
.philosophy-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg,
      rgba(245, 243, 237, 0.04) 0px,
      rgba(245, 243, 237, 0.04) 1px,
      transparent 1px,
      transparent 18px);
}
.philosophy-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.philosophy-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 243, 237, 0.55);
  margin-bottom: 48px;
}
.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(36px, 5.4vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.philosophy-quote em {
  font-style: italic;
  color: var(--accent);
}
.philosophy-quote .qm {
  font-style: italic;
  color: var(--accent);
  opacity: 0.8;
}
.philosophy-attribution {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 243, 237, 0.7);
}
.philosophy-attribution .rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* =============== CONTACT =============== */
.contact {
  padding: 160px 48px;
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.contact-left .section-num { margin-bottom: 32px; }
.contact-title {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 144px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--navy);
}
.contact-title em {
  font-style: italic;
  color: var(--accent);
}
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-block {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.contact-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.contact-value {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-style: italic;
}
.contact-value a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.contact-value a:hover {
  border-color: var(--accent);
  color: var(--navy);
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 18px 28px;
  background: var(--navy);
  color: var(--ivory);
  text-decoration: none;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.contact-cta:hover::before { transform: translateX(0); }
.contact-cta:hover { color: var(--navy); }
.contact-cta span, .contact-cta svg { position: relative; z-index: 1; }
.contact-cta svg { transition: transform 0.3s; }
.contact-cta:hover svg { transform: translate(2px, -2px); }

/* =============== FOOTER =============== */
.footer {
  background: var(--navy-deep);
  color: var(--ivory);
  padding: 64px 48px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ivory);
  padding: 4px;
  object-fit: contain;
}
.footer-name {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.footer-tagline {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 6px;
  color: rgba(245, 243, 237, 0.55);
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--accent);
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 13px;
  padding: 5px 0;
  color: rgba(245, 243, 237, 0.75);
}
.footer-col a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(245, 243, 237, 0.12);
  margin-top: 24px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 243, 237, 0.5);
}

/* =============== SCROLL-IN ANIMS =============== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============== RESPONSIVE =============== */
@media (max-width: 1100px) {
  .practice-grid { grid-template-columns: 1fr; }
  .leader { grid-template-columns: 1fr 1.5fr; }
  .leader-creds { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }
  .brand-text { display: none; }

  .hero { padding: 130px 20px 60px; }
  .hero-meta { flex-wrap: wrap; gap: 10px; font-size: 10px; margin-bottom: 40px; }
  .hero-foot { grid-template-columns: 1fr; gap: 24px; }
  .hero-link { align-self: start; }

  .marquee-track { font-size: 22px; gap: 32px; }

  .section { padding: 80px 20px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; padding-bottom: 40px; margin-bottom: 40px; }
  .section-num { padding-top: 0; }

  .practice-grid { gap: 40px; }
  .practice-text p { font-size: 18px; }
  .practice-text p.lead { font-size: 21px; }

  .featured { aspect-ratio: 4 / 5; }
  .featured-overlay { padding: 24px; }
  .featured-bottom { grid-template-columns: 1fr; gap: 24px; }
  .featured-coords { font-size: 9px; }

  .portfolio { grid-template-columns: 1fr; gap: 40px; }
  .proj:nth-child(n) { grid-column: 1 / -1; margin-top: 0; }

  .leader { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
  .leader:hover { padding-left: 0; }
  .leader-name { font-size: 36px; }

  .philosophy { padding: 80px 20px; }

  .contact { grid-template-columns: 1fr; padding: 80px 20px; gap: 40px; }

  .footer { grid-template-columns: 1fr 1fr; padding: 48px 20px 24px; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
