/* palette: bg=#0E2A23 fg=#F4ECDC accent=#C8A55B */
/* fonts: display="Bodoni Moda" body="Lato" mono="IBM Plex Mono" */
:root {
  --bg: #0E2A23;
  --bg-alt: #143830;
  --bg-deep: #081C17;
  --fg: #F4ECDC;
  --fg-soft: #D9CFB8;
  --muted: #8FA39B;
  --accent: #C8A55B;
  --accent-deep: #A6863F;
  --accent-soft: #E6C97F;
  --border: rgba(244, 236, 220, 0.14);
  --border-strong: rgba(244, 236, 220, 0.28);
  --serif: 'Bodoni Moda', ui-serif, Georgia, serif;
  --sans: 'Lato', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex 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.78;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 400;
}
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; }
::selection { background: var(--accent); color: var(--bg-deep); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 767px) { .container { padding: 0 22px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  color: var(--fg);
  font-style: normal;
}
h1 em, h2 em { color: var(--accent); font-style: italic; font-weight: 400; }

p { margin: 0; }

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 42, 35, 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), box-shadow 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px -16px rgba(0,0,0,0.5);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 18px;
  border-radius: 50%;
}
.nav { display: none; }
@media (min-width: 1024px) {
  .nav {
    display: flex;
    gap: 44px;
    align-items: center;
  }
  .nav a {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fg-soft);
    transition: color 0.2s var(--ease);
    position: relative;
  }
  .nav a:hover { color: var(--accent); }
  .nav a[aria-current="page"] { color: var(--accent); }
  .nav a[aria-current="page"]::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
  }
}
.nav-cta {
  display: none;
}
@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 9999px;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
  }
  .nav-cta:hover { background: var(--accent); color: var(--bg-deep); }
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  width: 22px;
  height: 1px;
  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(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 84px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 60px 32px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  overflow-y: auto;
}
.mobile-menu[data-open="true"] {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 28px; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.mobile-menu a em { color: var(--accent); font-style: italic; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: -84px;
  padding-top: 84px;
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 9s var(--ease) forwards;
  filter: brightness(0.55) saturate(0.9);
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,28,23,0.75) 0%, rgba(8,28,23,0.35) 35%, rgba(8,28,23,0.85) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(200,165,91,0.15), transparent 60%);
}
@keyframes heroZoom {
  0% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(60px, 10vw, 120px);
}
.hero__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.4fr 0.9fr; align-items: end; gap: 80px; }
}
.hero h1 {
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 300;
  margin-top: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
.hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--fg-soft);
  max-width: 460px;
  line-height: 1.7;
  border-left: 1px solid var(--border-strong);
  padding-left: 24px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__meta-item { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.hero__meta-item strong { display: block; color: var(--fg); font-family: var(--serif); font-size: 28px; letter-spacing: -0.02em; text-transform: none; font-weight: 400; margin-bottom: 4px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg-deep);
}
.btn--primary:hover { background: var(--accent-soft); transform: translateY(-2px); }
.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--fg);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.btn-arrow::after { content: '→'; transition: transform 0.3s var(--ease); }
.btn-arrow:hover::after { transform: translateX(6px); }

/* ---------- SECTIONS ---------- */
section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section-head {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  margin-bottom: clamp(48px, 6vw, 80px);
  align-items: end;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1fr 0.5fr; gap: 60px; }
}
.section-head h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 400;
  max-width: 16ch;
}
.section-head h2 em { color: var(--accent); font-style: italic; }
.section-head p { color: var(--fg-soft); max-width: 38ch; }

/* ---------- SERVICES ---------- */
.services { background: var(--bg); }
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (min-width: 768px) { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .services__grid { grid-template-columns: repeat(4, 1fr); } }
.service {
  background: var(--bg);
  padding: 48px 36px 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.4s var(--ease);
  position: relative;
}
.service:hover { background: var(--bg-alt); }
.service__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.service__icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  margin-top: auto;
}
.service h3 {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 400;
  font-family: var(--serif);
  max-width: 14ch;
}
.service h3 em { color: var(--accent); font-style: italic; }
.service p { color: var(--fg-soft); font-size: 15.5px; line-height: 1.72; }

/* ---------- WORK ---------- */
.work { background: var(--bg-alt); }
.work__grid { display: grid; gap: 56px; }
@media (min-width: 1024px) { .work__grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.work-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.work-card:nth-child(2) { transform: translateY(0); }
@media (min-width: 1024px) {
  .work-card:nth-child(2) { transform: translateY(80px); }
  .work-card:nth-child(3) { transform: translateY(-40px); }
}
.work-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-deep);
}
.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
  filter: saturate(0.85);
}
.work-card:hover .work-card__media img { transform: scale(1.05); }
.work-card__index {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(8,28,23,0.7);
  padding: 8px 14px;
  border: 1px solid var(--border-strong);
}
.work-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.work-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.work-card h3 em { color: var(--accent); font-style: italic; }
.work-card p { color: var(--fg-soft); max-width: 44ch; }

/* ---------- MANIFESTO ---------- */
.manifesto {
  background: var(--fg);
  color: var(--bg-deep);
  text-align: center;
  padding: clamp(100px, 14vw, 180px) 0;
}
.manifesto h2 {
  color: var(--bg-deep);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 28px auto 0;
}
.manifesto h2 em { color: var(--accent-deep); font-style: italic; font-weight: 400; }
.manifesto .eyebrow { color: var(--accent-deep); }
.manifesto .eyebrow::before { background: var(--accent-deep); }
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.6;
  color: var(--accent);
  font-style: italic;
  display: block;
  margin: 0 auto -20px;
  user-select: none;
}
.manifesto__attribution {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 48px;
  display: inline-block;
}

/* ---------- PROCESS ---------- */
.process { background: var(--bg-deep); }
.process__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}
.process-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.4s var(--ease);
}
.process-step:hover { background: rgba(200,165,91,0.04); }
@media (min-width: 900px) {
  .process-step { grid-template-columns: 110px 0.45fr 1fr; gap: 60px; align-items: start; }
}
.process-step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 4.4rem);
  color: var(--accent);
  line-height: 1;
  font-weight: 400;
}
.process-step h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.process-step h3 em { color: var(--accent); font-style: italic; }
.process-step p { color: var(--fg-soft); max-width: 50ch; }

/* ---------- TEAM ---------- */
.team { background: var(--bg); }
.team__grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .team__grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.member { display: flex; flex-direction: column; }
.member__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-deep);
  margin-bottom: 22px;
  position: relative;
}
.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) saturate(0.9);
  transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
}
.member:hover .member__photo img {
  filter: grayscale(0) saturate(1);
  transform: scale(1.04);
}
.member__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,28,23,0.5));
  pointer-events: none;
}
.member h3 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.member__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}
.member__bio { color: var(--fg-soft); margin-top: 14px; font-size: 15.5px; }

/* ---------- CTA / CONTACT ---------- */
.cta { background: var(--bg-alt); border-top: 1px solid var(--border); }
.cta__grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) { .cta__grid { grid-template-columns: 0.9fr 1.1fr; gap: 100px; } }
.cta h2 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.cta h2 em { color: var(--accent); font-style: italic; }
.cta__lead { color: var(--fg-soft); margin-top: 28px; max-width: 38ch; }
.cta__detail {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 18px;
}
.cta__detail-item { display: flex; flex-direction: column; gap: 4px; }
.cta__detail-item span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.cta__detail-item strong { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--fg); }

.form { display: grid; gap: 22px; }
.form__row { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .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.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  padding: 14px 0;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--fg);
  width: 100%;
  transition: border-color 0.3s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; font-family: var(--sans); font-size: 16px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 0.7; }
.form__submit {
  margin-top: 12px;
  justify-self: start;
}
.form__legal { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--muted); line-height: 1.6; }
.form__legal a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* ---------- 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: 60px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer__brand h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 12px;
  max-width: 12ch;
  font-weight: 400;
}
.footer__brand h3 em { color: var(--accent); font-style: italic; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: var(--fg-soft); font-size: 15px; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (min-width: 700px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer__bottom a { color: var(--muted); margin-left: 18px; }
.footer__bottom a:hover { color: var(--accent); }

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

/* ---------- COOKIE POPUP ---------- */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  background: rgba(8, 28, 23, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg);
  padding: 36px 38px;
  max-width: 460px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cookie-popup h3 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 12px;
}
.cookie-popup p {
  color: var(--fg-soft);
  font-size: 14.5px;
  line-height: 1.65;
}
.cookie-popup__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.cookie-popup__actions button {
  padding: 12px 22px;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--fg);
  transition: all 0.3s var(--ease);
  border-radius: 9999px;
}
.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-soft); }

/* ---------- LEGAL / SUB PAGES ---------- */
.subhero {
  padding: clamp(140px, 18vw, 220px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-deep), var(--bg));
}
.subhero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 300;
  max-width: 18ch;
  margin-top: 24px;
}
.subhero h1 em { color: var(--accent); font-style: italic; }
.subhero p { color: var(--fg-soft); margin-top: 28px; max-width: 50ch; font-size: 19px; line-height: 1.7; }

.prose { padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 140px); }
.prose__inner { max-width: 760px; margin: 0 auto; }
.prose h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 64px 0 18px;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.prose h2 em { color: var(--accent); font-style: italic; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--fg-soft); margin-bottom: 18px; line-height: 1.78; font-size: 17px; }
.prose ul { color: var(--fg-soft); padding-left: 22px; margin-bottom: 22px; }
.prose ul li { margin-bottom: 10px; }
.prose strong { color: var(--fg); }
.prose a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* About-page specific */
.about-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.about-grid__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-deep);
}
.about-grid__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.about-grid h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.about-grid h2 em { color: var(--accent); font-style: italic; }
.about-grid p { color: var(--fg-soft); margin-top: 24px; }
.values {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}
@media (min-width: 768px) { .values { grid-template-columns: 1fr 1fr 1fr; } }
.value { background: var(--bg); padding: 36px 28px; }
.value__num { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: 0.16em; }
.value h3 { font-size: 22px; margin-top: 16px; font-weight: 400; letter-spacing: -0.01em; }
.value h3 em { color: var(--accent); font-style: italic; }
.value p { color: var(--fg-soft); margin-top: 12px; font-size: 15.5px; }

/* Services page */
.svc-list { display: grid; gap: 0; border-top: 1px solid var(--border); }
.svc-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 900px) {
  .svc-item { grid-template-columns: 0.4fr 1fr; gap: 80px; align-items: start; }
}
.svc-item__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc-item h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 6px;
}
.svc-item h2 em { color: var(--accent); font-style: italic; }
.svc-item p { color: var(--fg-soft); margin-top: 24px; max-width: 60ch; }
.svc-item ul { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.svc-item ul li {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-soft);
  padding-left: 24px;
  position: relative;
}
.svc-item ul li::before { content: '◇'; position: absolute; left: 0; color: var(--accent); }

/* Contact page */
.contact-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 100px; } }
.contact-info { display: grid; gap: 36px; }
.contact-info__item { padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.contact-info__item span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.contact-info__item strong {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--fg);
  font-weight: 400;
  display: block;
}
.contact-info__item p {
  color: var(--fg-soft);
  margin-top: 4px;
  font-size: 15.5px;
}

/* Stats strip */
.stats {
  background: var(--bg-deep);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: left; }
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.stat span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01s !important; transition-duration: 0.01s !important; }
  .reveal { opacity: 1; transform: none; }
}
