/* palette: bg=#E8E6DA fg=#0F0F0D accent=#FE4B1A */
/* fonts: display="Bricolage Grotesque" body="Inter" mono="Space Mono" */

:root {
  --bg: #E8E6DA;
  --bg-alt: #DCD9CB;
  --bg-deep: #14201D;
  --fg: #0F0F0D;
  --fg-soft: #2A2A26;
  --muted: #6E6E63;
  --accent: #FE4B1A;
  --accent-deep: #C8391A;
  --accent-2: #D8E058;
  --paper: #F2F0E5;
  --border: rgba(15, 15, 13, 0.16);
  --border-soft: rgba(15, 15, 13, 0.08);
  --serif: "Bricolage Grotesque", ui-sans-serif, sans-serif;
  --sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, "Courier New", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::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;
  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; }

/* ---------- Utility band ---------- */
.utility-band {
  background: var(--bg-deep);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.utility-band__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.utility-band__inner span,
.utility-band__inner a { opacity: 0.84; }
.utility-band__inner .pulse {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.7); }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(232, 230, 218, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border-soft);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,0.18);
}
.header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.brand__mark {
  width: 32px; height: 32px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 13px;
  transform: rotate(-6deg);
  border: 2px solid var(--fg);
}
.brand__name { transform: translateY(1px); }
.brand__name em {
  font-style: normal;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.65em;
  vertical-align: super;
  margin-left: 2px;
}
.nav { display: none; }
@media (min-width: 980px) {
  .nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    font-size: 14px;
    letter-spacing: -0.005em;
  }
  .nav a {
    position: relative;
    padding: 6px 0;
    color: var(--fg-soft);
    transition: color 0.2s var(--ease);
  }
  .nav a:hover { color: var(--accent); }
  .nav a[aria-current="page"] {
    color: var(--fg);
    border-bottom: 2px solid var(--accent);
  }
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header__cta .btn { display: none; }
@media (min-width: 760px) {
  .header__cta .btn { display: inline-flex; }
}
.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--fg);
  background: var(--paper);
}
.menu-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--fg);
  transition: transform 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 980px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 0;
  top: 73px;
  background: var(--bg);
  z-index: 99;
  padding: 48px 32px;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu[data-open="true"] { transform: translateY(0); }
.mobile-menu a {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a em { color: var(--accent); font-style: normal; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--fg);
  color: var(--paper);
  border: 2px solid var(--fg);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--fg);
}
.btn--accent {
  background: var(--accent);
  border-color: var(--fg);
  color: var(--paper);
}
.btn--accent:hover {
  background: var(--fg);
  border-color: var(--fg);
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
}
.btn--ghost:hover {
  background: var(--fg);
  color: var(--paper);
}
.btn .arrow { font-family: var(--serif); font-size: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__top-strip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 24px 32px 0;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__top-strip span { display: flex; align-items: center; gap: 8px; }
.hero__top-strip span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  display: inline-block;
}

.hero__main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 32px 32px;
  width: 100%;
  align-items: end;
}
@media (min-width: 980px) {
  .hero__main {
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    padding: 80px 32px 48px;
  }
}
.hero__text {
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--fg);
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 500;
}
.hero__title .small {
  display: block;
  font-size: 0.42em;
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-top: 14px;
  color: var(--fg-soft);
  text-transform: none;
  line-height: 1.3;
}
.hero__lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 460px;
  color: var(--fg-soft);
  margin: 0 0 36px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__metric {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 14px;
  border-left: 2px solid var(--accent);
}

.hero__image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-deep);
  overflow: hidden;
  border: 3px solid var(--fg);
  transform: rotate(-1.5deg);
  margin-top: 32px;
}
@media (min-width: 980px) {
  .hero__image { margin-top: 0; }
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 8s ease-out forwards;
}
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,13,0.55), transparent 50%);
}
.hero__image-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  right: 20px;
  z-index: 2;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero__sidebar-num {
  position: absolute;
  top: 56px;
  right: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  display: none;
}
@media (min-width: 1100px) { .hero__sidebar-num { display: block; } }

/* ---------- Capability strip (echoes garage-basics trust badges) ---------- */
.cap-strip {
  background: var(--bg-deep);
  color: var(--paper);
  padding: 0;
  border-top: 3px solid var(--fg);
  border-bottom: 3px solid var(--fg);
}
.cap-strip__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .cap-strip__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .cap-strip__inner { grid-template-columns: repeat(4, 1fr); }
}
.cap {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.cap:last-child { border-right: 0; }
.cap__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent-2);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.cap__icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid var(--accent-2);
  margin-bottom: 18px;
  color: var(--accent-2);
}
.cap__icon svg { width: 22px; height: 22px; }
.cap__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--paper);
}
.cap__title em { font-style: normal; color: var(--accent); }
.cap__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(242,240,229,0.7);
  margin: 0;
}

/* ---------- Section base ---------- */
section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
  align-items: end;
}
@media (min-width: 880px) {
  .section-head { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
}
.eyebrow::before { content: "—"; }
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--fg);
}
.section-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.section-deck {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-soft);
  margin: 0;
  max-width: 480px;
}

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

/* ---------- Work grid ---------- */
.work {
  background: var(--bg);
  position: relative;
}
.work::before {
  content: "[ SELECIONADOS ]";
  position: absolute;
  top: 40px; right: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 700px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (min-width: 1080px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.work-card {
  display: block;
  background: var(--paper);
  border: 2px solid var(--fg);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.work-card:nth-child(3n+1) { transform: rotate(-0.6deg); }
.work-card:nth-child(3n+2) { transform: rotate(0.4deg); }
.work-card:nth-child(3n+3) { transform: rotate(-0.2deg); }
.work-card:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow: 8px 8px 0 var(--fg);
}
.work-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-deep);
  position: relative;
  border-bottom: 2px solid var(--fg);
}
.work-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.work-card:hover .work-card__media img { transform: scale(1.05); }
.work-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  text-transform: uppercase;
  border: 2px solid var(--fg);
}
.work-card__body { padding: 24px 24px 28px; }
.work-card__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.work-card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--fg);
}
.work-card__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-soft);
  margin: 0 0 16px;
}
.work-card__link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.work-card__link::after { content: "→"; transition: transform 0.25s var(--ease); }
.work-card:hover .work-card__link::after { transform: translateX(6px); }

/* ---------- Featured case ---------- */
.featured {
  background: var(--bg-alt);
  border-top: 3px solid var(--fg);
  border-bottom: 3px solid var(--fg);
}
.featured__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) {
  .featured__inner { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}
.featured__image {
  aspect-ratio: 5/4;
  background: var(--bg-deep);
  overflow: hidden;
  border: 3px solid var(--fg);
  position: relative;
  transform: rotate(-0.8deg);
}
.featured__image img { width: 100%; height: 100%; object-fit: cover; }
.featured__image-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--accent-2);
  color: var(--fg);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--fg);
}
.featured__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.featured__title em { font-style: italic; color: var(--accent); font-weight: 500; }
.featured__text {
  font-size: 17px;
  line-height: 1.72;
  color: var(--fg-soft);
  margin: 0 0 28px;
  max-width: 480px;
}
.featured__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
@media (min-width: 600px) { .featured__stats { grid-template-columns: repeat(3, 1fr); } }
.stat__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin: 0 0 6px;
}
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* ---------- Manifesto ---------- */
.manifesto {
  background: var(--bg-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: "//";
  position: absolute;
  top: 60px; left: 40px;
  font-family: var(--mono);
  font-size: 96px;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}
.manifesto__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
}
.manifesto__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 32px;
  display: inline-block;
}
.manifesto__text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  color: var(--paper);
}
.manifesto__text em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.manifesto__attr {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,240,229,0.6);
}

/* ---------- Process ---------- */
.process { background: var(--bg); }
.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 2px solid var(--fg);
}
.process-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 2px solid var(--fg);
  align-items: start;
  transition: background 0.3s var(--ease);
}
@media (min-width: 880px) {
  .process-row { grid-template-columns: 120px 1fr 2fr 1fr; gap: 48px; padding: 48px 0; }
}
.process-row:hover { background: var(--bg-alt); }
.process-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding-top: 6px;
}
.process-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  grid-column: 1 / -1;
}
@media (min-width: 880px) { .process-title { grid-column: auto; } }
.process-title em { font-style: italic; color: var(--accent); font-weight: 500; }
.process-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-soft);
  margin: 0;
  grid-column: 1 / -1;
}
@media (min-width: 880px) { .process-text { grid-column: auto; } }
.process-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  grid-column: 1 / -1;
}
@media (min-width: 880px) { .process-meta { grid-column: auto; text-align: right; padding-top: 6px; } }

/* ---------- Studio principles ---------- */
.principles { background: var(--bg-alt); }
.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .principles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .principles-grid { grid-template-columns: repeat(3, 1fr); } }
.principle {
  background: var(--bg);
  padding: 32px 28px;
  border: 2px solid var(--fg);
  position: relative;
}
.principle:nth-child(2) { transform: translateY(-12px); }
.principle:nth-child(5) { transform: translateY(-12px); }
.principle__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 18px;
}
.principle__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.principle__title em { font-style: italic; color: var(--accent); }
.principle__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-soft);
  margin: 0;
}

/* ---------- Team (text-only, monogram avatars) ---------- */
.team { background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.member {
  border-top: 2px solid var(--fg);
  padding-top: 24px;
}
.avatar {
  width: 72px; height: 72px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--paper);
  border: 2px solid var(--fg);
  margin-bottom: 20px;
}
.member:nth-child(4n+1) .avatar { background: var(--accent); transform: rotate(-3deg); }
.member:nth-child(4n+2) .avatar { background: var(--bg-deep); transform: rotate(2deg); }
.member:nth-child(4n+3) .avatar { background: var(--accent-2); color: var(--fg); transform: rotate(-1deg); }
.member:nth-child(4n+4) .avatar { background: var(--accent-deep); transform: rotate(3deg); }
.member__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.member__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.member__bio {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-soft);
  margin: 0;
}

/* ---------- Services list ---------- */
.services { background: var(--bg); }
.svc-list { border-top: 2px solid var(--fg); }
.svc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 40px 0;
  border-bottom: 2px solid var(--fg);
  align-items: start;
}
@media (min-width: 880px) {
  .svc-row { grid-template-columns: 100px 1.4fr 2fr auto; gap: 40px; padding: 48px 0; align-items: center; }
}
.svc-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.svc-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.svc-title em { font-style: italic; color: var(--accent); font-weight: 500; }
.svc-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-soft);
  margin: 0;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 6px 10px;
  border: 1px solid var(--fg);
  background: var(--paper);
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg-alt); }
.faq-list { max-width: 920px; }
.faq-item {
  border-top: 2px solid var(--fg);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 2px solid var(--fg); }
.faq-q {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  display: flex;
  gap: 16px;
}
.faq-q::before {
  content: "?";
  font-family: var(--mono);
  font-size: 14px;
  color: var(--accent);
  font-weight: 400;
  padding-top: 6px;
}
.faq-a {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-soft);
  margin: 0;
  padding-left: 30px;
}

/* ---------- Contact ---------- */
.contact-hero { background: var(--bg); padding: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 3px solid var(--fg);
  border-bottom: 3px solid var(--fg);
}
@media (min-width: 980px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info {
  padding: clamp(48px, 8vw, 96px) 32px;
  background: var(--bg-deep);
  color: var(--paper);
  border-right: 3px solid var(--fg);
}
.contact-info__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}
.contact-info__title em { font-style: italic; color: var(--accent); font-weight: 500; }
.contact-info__lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(242,240,229,0.72);
  margin: 0 0 48px;
  max-width: 440px;
}
.contact-block { margin-bottom: 32px; }
.contact-block__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 8px;
}
.contact-block__value {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--paper);
}
.contact-block__value a:hover { color: var(--accent); }

.contact-form-wrap {
  padding: clamp(48px, 8vw, 96px) 32px;
  background: var(--paper);
}
.contact-form {
  display: grid;
  gap: 24px;
}
.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(--fg-soft);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 16px;
  background: var(--bg);
  border: 2px solid var(--fg);
  color: var(--fg);
  transition: border-color 0.2s var(--ease);
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 140px; }
.field--row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .field--row { grid-template-columns: 1fr 1fr; } }
.form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.form-foot small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Closing CTA ---------- */
.closing {
  background: var(--accent);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--fg);
  border-bottom: 3px solid var(--fg);
}
.closing__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) 32px;
  text-align: center;
}
.closing__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg-deep);
  margin: 0 0 24px;
}
.closing__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  color: var(--paper);
}
.closing__title em { font-style: italic; color: var(--bg-deep); font-weight: 500; }
.closing__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.closing .btn {
  background: var(--bg-deep);
  color: var(--paper);
  border-color: var(--bg-deep);
}
.closing .btn:hover {
  background: var(--paper);
  color: var(--bg-deep);
  border-color: var(--paper);
  box-shadow: 4px 4px 0 var(--bg-deep);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-deep);
  color: var(--paper);
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(242,240,229,0.16);
}
@media (min-width: 880px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
}
.footer__brand h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.footer__brand h3 em { font-style: italic; color: var(--accent); }
.footer__brand p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(242,240,229,0.65);
  margin: 0 0 24px;
  max-width: 360px;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 20px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; font-size: 14px; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,240,229,0.5);
}
.footer__bottom a:hover { color: var(--accent); }

/* ---------- 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(15, 15, 13, 0.4);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--paper);
  padding: 32px 36px;
  max-width: 480px;
  width: 100%;
  border: 3px solid var(--fg);
  box-shadow: 8px 8px 0 var(--fg);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.cookie-popup h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.cookie-popup p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-soft);
  margin: 0;
}
.cookie-popup__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.cookie-popup__actions button {
  padding: 12px 22px;
  border: 2px solid var(--fg);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--paper);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.cookie-popup__actions button:hover { background: var(--bg-alt); }
.cookie-popup__actions button:last-child {
  background: var(--fg);
  color: var(--paper);
}
.cookie-popup__actions button:last-child:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ---------- Legal pages ---------- */
.legal-page {
  padding: 80px 0 120px;
  background: var(--bg);
}
.legal-page .container { max-width: 880px; }
.legal-page h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.legal-page h1 em { font-style: italic; color: var(--accent); font-weight: 500; }
.legal-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 56px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--fg);
}
.legal-page h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 56px 0 16px;
}
.legal-page p, .legal-page li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-soft);
}
.legal-page ul { padding-left: 22px; }
.legal-page li { margin-bottom: 8px; }

/* ---------- Thanks page ---------- */
.thanks-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--bg);
  padding: 80px 32px;
}
.thanks-screen__inner { max-width: 640px; }
.thanks-screen .thanks-icon {
  width: 80px; height: 80px;
  margin: 0 auto 32px;
  background: var(--accent);
  border: 3px solid var(--fg);
  transform: rotate(-6deg);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  color: var(--paper);
  font-size: 36px;
}
.thanks-screen h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.thanks-screen h1 em { font-style: italic; color: var(--accent); font-weight: 500; }
.thanks-screen p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-soft);
  margin: 0 0 32px;
}

/* ---------- About page hero ---------- */
.page-hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
  background: var(--bg);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}
@media (min-width: 880px) {
  .page-hero__grid { grid-template-columns: 1.4fr 1fr; gap: 80px; }
}
.page-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0;
}
.page-hero__title em { font-style: italic; color: var(--accent); font-weight: 500; }
.page-hero__text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-soft);
  margin: 0;
}

/* ---------- Misc ---------- */
.divider {
  height: 2px;
  background: var(--fg);
  margin: 0;
}
