/* palette: bg=#161513 fg=#e8e4dd accent=#ff5722 */
/* fonts: display="Space Grotesk" body="Inter" mono="JetBrains Mono" */

:root {
  --bg: #161513;
  --bg-alt: #1d1b18;
  --bg-deep: #0e0d0c;
  --fg: #e8e4dd;
  --fg-soft: #c4beb3;
  --muted: #6b6660;
  --accent: #ff5722;
  --accent-deep: #d44318;
  --accent-glow: rgba(255, 87, 34, 0.16);
  --border: rgba(232, 228, 221, 0.10);
  --border-strong: rgba(232, 228, 221, 0.22);
  --serif: 'Space Grotesk', ui-sans-serif, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--bg-deep); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot { color: var(--accent); margin-right: 8px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.025em;
  color: var(--fg);
}

p { margin: 0; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(22, 21, 19, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  background: rgba(14, 13, 12, 0.88);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  display: inline-flex;
  align-items: baseline;
}
.brand sup { font-size: 9px; color: var(--accent); margin-left: 2px; font-family: var(--mono); }

.nav { display: none; gap: 36px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-soft);
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--bg-deep);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.header__cta:hover { background: var(--accent-deep); transform: translateY(-1px); }
.header__cta .arrow { width: 14px; height: 14px; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--bg-deep);
  padding: 40px 24px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu[data-open="true"] { transform: none; opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: var(--serif); font-size: 28px; letter-spacing: -0.02em; }
.mobile-menu a:hover { color: var(--accent); }
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  animation: heroZoom 12s ease-out forwards;
  filter: grayscale(0.15) contrast(1.05);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--bg-deep) 92%),
              linear-gradient(180deg, rgba(14,13,12,0.6) 0%, transparent 30%, transparent 70%, rgba(14,13,12,0.85) 100%);
}
@keyframes heroZoom {
  from { transform: scale(1.10); }
  to { transform: scale(1); }
}

.hero__top {
  position: relative;
  z-index: 2;
  padding-top: clamp(40px, 8vw, 80px);
  padding-bottom: 24px;
}
.hero__topgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .hero__topgrid {
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
  }
}
.hero__intro p {
  font-size: 14px;
  color: var(--fg-soft);
  max-width: 38ch;
  line-height: 1.55;
}
.hero__tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-soft);
}
.hero__tags li {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.hero__tags li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.hero__center {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  place-items: center;
  padding: 40px 0;
}
.hero__title {
  font-size: clamp(2.8rem, 9vw, 7.5rem);
  line-height: 0.96;
  font-weight: 300;
  letter-spacing: -0.04em;
  text-align: center;
  max-width: 14ch;
}
.hero__title em { font-style: normal; color: var(--accent); }
.hero__title .thin { font-weight: 200; }

.hero__bottom {
  position: relative;
  z-index: 2;
  padding-bottom: 32px;
  padding-top: 24px;
}
.hero__bottomgrid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__brandmark {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
}
.hero__brandmark sup { font-size: 0.35em; color: var(--accent); margin-left: 2px; vertical-align: super; }
.hero__year {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__scroll::before { content: ''; width: 28px; height: 1px; background: var(--accent); }

/* Hero tag in corner */
.hero__corner-tag {
  position: absolute;
  z-index: 3;
  bottom: 50%;
  right: 24px;
  background: var(--fg);
  color: var(--bg-deep);
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 768px) { .hero__corner-tag { right: 40px; bottom: 35%; } }

/* ===== SECTION BASE ===== */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-deep); }

.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: clamp(48px, 8vw, 96px);
}
@media (min-width: 900px) {
  .section__head { grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: end; }
}
.section__title {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 300;
}
.section__title em { font-style: normal; color: var(--accent); }
.section__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-soft);
  max-width: 52ch;
}
.section__head-meta { display: flex; align-items: center; gap: 12px; }

/* ===== WORK / CASE STUDIES ===== */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 900px) {
  .work-grid { grid-template-columns: repeat(12, 1fr); gap: 80px 40px; }
  .work-card:nth-child(1) { grid-column: 1 / span 12; }
  .work-card:nth-child(2) { grid-column: 1 / span 7; }
  .work-card:nth-child(3) { grid-column: 8 / span 5; margin-top: 60px; }
  .work-card:nth-child(4) { grid-column: 2 / span 6; }
  .work-card:nth-child(5) { grid-column: 8 / span 5; margin-top: 80px; }
}

.work-card {
  display: block;
  group: card;
}
.work-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-deep);
  margin-bottom: 24px;
}
.work-card--portrait .work-card__media { aspect-ratio: 4 / 5; }
.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.85) contrast(1.05);
}
.work-card:hover .work-card__media img { transform: scale(1.04); filter: brightness(1) contrast(1.05); }
.work-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--fg);
  color: var(--bg-deep);
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.work-card__index {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--fg);
  background: rgba(14,13,12,0.6);
  padding: 5px 10px;
  backdrop-filter: blur(8px);
}
.work-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.work-card__client {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.work-card__year { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.work-card__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  font-weight: 400;
}
.work-card__desc {
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 52ch;
}
.work-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.work-card__chips span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--fg-soft);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 300;
  color: var(--fg);
}
.manifesto__quote em { font-style: normal; color: var(--accent); }
.manifesto__sig {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.manifesto__sig::before { content: ''; width: 40px; height: 1px; background: var(--accent); }

/* ===== DISCIPLINES / SERVICES ===== */
.disciplines {
  border-top: 1px solid var(--border);
}
.discipline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}
.discipline:hover { background: rgba(255,87,34,0.02); }
@media (min-width: 900px) {
  .discipline {
    grid-template-columns: 80px 1fr 1.5fr 200px;
    gap: 48px;
    align-items: start;
    padding: 56px 0;
  }
}
.discipline__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.discipline__title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.discipline__desc {
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.65;
}
.discipline__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.discipline__list li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-soft);
  padding-left: 14px;
  position: relative;
}
.discipline__list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ===== STATS ===== */
.stats {
  background: var(--bg-deep);
  padding: clamp(60px, 9vw, 100px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat__num span { color: var(--accent); }
.stat__label {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat__sub {
  margin-top: 8px;
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.5;
  max-width: 28ch;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.process-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.process-card__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 24px;
}
.process-card__title {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.process-card__desc {
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.65;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.testimonial {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial__mark {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.5;
  color: var(--accent);
  height: 24px;
}
.testimonial__quote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  font-weight: 400;
}
.testimonial__by {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.avatar--mono {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bg-deep);
  background: var(--accent);
  flex-shrink: 0;
}
.testimonial__name { font-size: 14px; font-weight: 500; color: var(--fg); }
.testimonial__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; margin-top: 2px; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--accent);
  color: var(--bg-deep);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band__title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 300;
  color: var(--bg-deep);
  max-width: 18ch;
  margin-bottom: 40px;
}
.cta-band__sub { font-size: 16px; max-width: 50ch; line-height: 1.6; color: rgba(14,13,12,0.78); margin-bottom: 32px; }
.cta-band__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--bg-deep);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.cta-band__btn:hover { background: var(--bg); transform: translateY(-2px); }
.cta-band__btn svg { width: 14px; height: 14px; }

.cta-band__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(14,13,12,0.18);
}
.cta-band__meta-item { display: flex; flex-direction: column; gap: 4px; }
.cta-band__meta-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(14,13,12,0.6); }
.cta-band__meta-val { font-size: 15px; color: var(--bg-deep); font-weight: 500; }

/* ===== FORM ===== */
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form__row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  padding: 12px 0;
  font-size: 16px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.form-submit {
  margin-top: 8px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  justify-self: start;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.form-submit:hover { background: var(--accent-deep); transform: translateY(-1px); }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-soft);
  line-height: 1.5;
}
.consent input { margin-top: 4px; accent-color: var(--accent); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-deep);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; } }
.footer__brand {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 20px;
}
.footer__brand sup { font-size: 0.3em; color: var(--accent); }
.footer__tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.6;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col li { font-size: 14px; color: var(--fg-soft); transition: color 0.2s var(--ease); line-height: 1.55; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  padding: 28px 28px 24px;
  max-width: 460px;
  width: 100%;
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cookie-popup__card h3 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--fg);
}
.cookie-popup__card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-soft);
}
.cookie-popup__actions { display: flex; gap: 10px; margin-top: 22px; }
.cookie-popup__actions button {
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--border-strong);
  color: var(--fg);
  transition: all 0.2s var(--ease);
}
.cookie-popup__actions button:hover { border-color: var(--accent); color: var(--accent); }
.cookie-popup__actions button:last-child { background: var(--accent); color: var(--bg-deep); border-color: var(--accent); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--bg-deep); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero__bg img, .work-card__media img { animation: none !important; transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  padding: clamp(120px, 18vw, 220px) 0 clamp(64px, 10vw, 120px);
  border-bottom: 1px solid var(--border);
  position: relative;
  background: var(--bg);
}
.page-hero__inner { display: grid; gap: 32px; }
@media (min-width: 900px) { .page-hero__inner { grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: end; } }
.page-hero__eyebrow { margin-bottom: 24px; }
.page-hero__title {
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.page-hero__title em { font-style: normal; color: var(--accent); }
.page-hero__lede { font-size: 18px; color: var(--fg-soft); line-height: 1.6; max-width: 48ch; }

/* ===== ABOUT BLOCKS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1.4fr; gap: 80px; } }
.about-grid__col h3 { font-size: 1.8rem; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 20px; }
.about-grid__col p { color: var(--fg-soft); margin-bottom: 16px; line-height: 1.7; }

.principle {
  padding: 36px 32px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.principle:hover { border-color: var(--accent); }
.principle__num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--accent); margin-bottom: 20px; }
.principle__title { font-size: 1.3rem; font-weight: 400; margin-bottom: 12px; letter-spacing: -0.015em; }
.principle__desc { font-size: 14px; color: var(--fg-soft); line-height: 1.65; }
.principles-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) { .principles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .principles-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== TEAM (text only, no faces) ===== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  padding: 28px 24px;
  border-top: 2px solid var(--accent);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.team-card__mono {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 8px;
}
.team-card__name { font-size: 1.05rem; font-weight: 500; }
.team-card__role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.team-card__bio { font-size: 14px; color: var(--fg-soft); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; } }
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-info__block h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.contact-info__block p { font-size: 16px; color: var(--fg); line-height: 1.6; }
.contact-info__block a { color: var(--fg); border-bottom: 1px solid var(--border-strong); transition: border-color 0.2s; }
.contact-info__block a:hover { border-color: var(--accent); color: var(--accent); }

/* ===== FAQ ===== */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 768px) { .faq-item { grid-template-columns: 60px 1fr; gap: 32px; } }
.faq-item__num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--accent); }
.faq-item__q { font-size: 1.15rem; font-weight: 500; margin-bottom: 12px; letter-spacing: -0.01em; }
.faq-item__a { font-size: 15px; color: var(--fg-soft); line-height: 1.7; }

/* ===== LEGAL ===== */
.legal {
  padding: clamp(120px, 16vw, 200px) 0 80px;
  max-width: 800px;
  margin: 0 auto;
}
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 300; letter-spacing: -0.03em; margin-bottom: 16px; }
.legal h2 { font-size: 1.4rem; font-weight: 500; margin: 40px 0 12px; letter-spacing: -0.015em; }
.legal p, .legal li { color: var(--fg-soft); line-height: 1.75; margin-bottom: 14px; font-size: 16px; }
.legal ul { padding-left: 24px; }
.legal .meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 32px; }
